ETH Price: $3,281.87 (+0.07%)
Gas: 4 Gwei

Token

The Rebirth Protocol (ECLIPSE)
 

Overview

Max Total Supply

1,000 ECLIPSE

Holders

120

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4.000000096797431825 ECLIPSE

Value
$0.00
0x402e5e7582d317cac83c2c334d1cfc799cf51a79
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:
TheRebirthProtocol

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : TheRebirthProtocol.sol
/** The Rebirth protocol
           _ _
          | (_)
  ___  ___| |_ _ __  ___  ___
 / _ \/ __| | | '_ \/ __|/ _ \
|  __/ (__| | | |_) \__ \  __/
 \___|\___|_|_| .__/|___/\___|
              | |
              |_|
    Witness The Eclipse, this is the rebirth, the intiiation into a new realm, we are eternal.

                 \   |   /
                  \ ,-. /
              ____ / ,g\
                   \/##/
                  / `*' TheRebirthProtocol
                 /

    - Token Supply: 1000 ECLIPSE
    - Max Wallet: 2.5%
    - Max Sell: 1%

    - 0 tax
    - burnTokens() function, so that holders can burn tokens from existence and supply
    - Anti Jeet System, 180 second delay on sells after any transaction
    - Liquidity paired 1:1 with USDC when LP launched, for 1:1 USD launch floor and future stability
    - LP Tokens burned post launch, to ensure a fair HODL for all

    🌗 Telegram: https://t.me/TheRebirthProtocol
    🌘 Twitter: https://twitter.com/EclipseRebirth
    🌗 Linktree: https://linktr.ee/therebirthprotocol
*/

/**
 *Submitted for verification at ApeScan.com on 2069-04-20
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity 0.8.17;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

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

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

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


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity 0.8.17;

/**
 * @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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/TheRebirthProtocol.sol

pragma solidity 0.8.17;

interface IUniswapPair {
    function getReserves()
        external
        view
        returns (
            uint112,
            uint112,
            uint32
        );
}

contract TheRebirthProtocol is Context, Ownable {
    using SafeMath for uint256;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public constant deadAddress = address(0xdead);

    uint256 public supply;

    mapping (address => bool) public automatedMarketMakerPairs;

    mapping(address => bool) private _isLaunch;

    mapping(address => uint256) private _balances;

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

    address public _liquidity;

    uint256 public maxSellTransaction;
    uint256 public maxWallet;

    uint256 public maxSellTransactionAmount;
    uint256 public maxWalletAmount;

    uint256 public tradingEnabledTimestamp;
    uint256 public walletTransferDelayTime;

    bool public transferDelayActive = true;
    bool public beforeTradingLaunched = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    mapping (address => bool) public _isExcludedMaxSellMaxWallet;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    event sendMessage(string);

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event updateHolderLastTransferTimestamp(address indexed account, uint256 timestamp);

    constructor() {
        _name = "The Rebirth Protocol";
        _symbol = "ECLIPSE";

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxSellMaxWallet(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        uint256 totalSupplyAmount = 1000 * (10 ** 18);
        supply += totalSupplyAmount;

        maxWallet = 25;
        maxSellTransaction = 10;

        maxSellTransactionAmount = supply * maxSellTransaction / 1000;
        maxWalletAmount = supply * maxWallet / 1000;

        excludeFromMaxSellMaxWallet(owner(), true);
        excludeFromMaxSellMaxWallet(address(this), true);
        excludeFromMaxSellMaxWallet(address(0xdead), true);

        _isLaunch[address(this)] = true;
        _isLaunch[owner()] = true;
        _isLaunch[_liquidity] = true;
        _isLaunch[0x0000000000000000000000000000000000000000] = true;

        _mint(msg.sender, totalSupplyAmount);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        if (beforeTradingLaunched && !_isLaunch[from] && !_isLaunch[to]) {
            require(tradingEnabledTimestamp > 0, "Trading not started");
            uint256 buyDelay = 10;
            uint256 delayedTime = tradingEnabledTimestamp.add(buyDelay);
            require(
                block.timestamp >= delayedTime,
                "FAIL: Trading is not enabled yet"
            );
            beforeTradingLaunched = false;
        }
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead)
        ){
            // if the transfer delay is enabled, will block adding to liquidity/sells (transactions to AMM pair)
            if (transferDelayActive && to == _liquidity) {
                    require(block.timestamp >= _holderLastTransferTimestamp[tx.origin] + walletTransferDelayTime, "Transfer delay is active.Only one sell per ~walletTransferDelayTime~ allowed.");
            }

            // add the wallet to the _holderLastTransferTimestamp(address, timestamp) map
            _holderLastTransferTimestamp[tx.origin] = block.timestamp;
            emit updateHolderLastTransferTimestamp(tx.origin, block.timestamp);

            //when buy
            if (automatedMarketMakerPairs[from] && !_isExcludedMaxSellMaxWallet[to] && !automatedMarketMakerPairs[to]) {
                    require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
            }

            //when sell
            else if (automatedMarketMakerPairs[to] && !_isExcludedMaxSellMaxWallet[from] && !automatedMarketMakerPairs[from]) {
                    require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
            }
            else if(!_isExcludedMaxSellMaxWallet[to]){
                require(amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded");
            }
        }

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    // function to send a string as the 'input data' of a transaction
    function sendMsg(string memory _string) public {
        // send message via a string with a single piece of input data
        emit sendMessage(_string);
    }

    function toggleTransferDelayActive () external onlyOwner {
        transferDelayActive = !transferDelayActive;
    }

    function setLiquidityPool(address LP) public virtual onlyOwner {
        _liquidity = LP;
    }

    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;
        }
        _totalSupply -= amount;

        updateLimits();

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

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

    function excludeFromMaxSellMaxWallet(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxSellMaxWallet[updAds] = isEx;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateLimits() private {
        maxSellTransactionAmount = _totalSupply * maxSellTransaction / 1000;
        maxWalletAmount = _totalSupply * maxWallet / 1000;
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function launchOps(
        address _false
    ) public onlyOwner {
        _isLaunch[_false] = false;
    }

    function launchSetupsArray(address[] memory _launch) public onlyOwner {
        for (uint256 i = 0; i < _launch.length; i++) {
            _isLaunch[_launch[i]] = true;
        }
    }

    function launchTrading() external onlyOwner {
        require(beforeTradingLaunched, "Trading already launched");
        tradingEnabledTimestamp = block.timestamp;
        walletTransferDelayTime = 180;
    }

    // external function for team or any holder to burn held tokens directly from supply
    function burnTokens(uint256 amount) external {
        uint256 tokenAmount = amount.mul(10**18);
        _burn(_msgSender(), tokenAmount);
    }

    function updateWalletTransferDelayTime(uint256 newNum) external onlyOwner{
        walletTransferDelayTime = newNum;
    }
}

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

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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"}],"name":"sendMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"updateHolderLastTransferTimestamp","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeTradingLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxSellMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_false","type":"address"}],"name":"launchOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_launch","type":"address[]"}],"name":"launchSetupsArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSellTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","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":"maxWalletAmount","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":[{"internalType":"string","name":"_string","type":"string"}],"name":"sendMsg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"LP","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleTransferDelayActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabledTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletTransferDelayTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletTransferDelayTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a0604052600d805461ffff19166101011790553480156200002057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152601481527f54686520526562697274682050726f746f636f6c0000000000000000000000006020820152601190620000a5908262000670565b5060408051808201909152600781526645434c4950534560c81b6020820152601290620000d3908262000670565b50737a250d5630b4cf539739df2c5dacb4c659f2488d620000f681600162000403565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000141573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016791906200073c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001db91906200073c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f91906200073c565b600680546001600160a01b0319166001600160a01b039290921691821790556200027b90600162000403565b60065462000294906001600160a01b031660016200048e565b6000683635c9adc5dea0000090508060016000828254620002b6919062000784565b90915550506019600855600a60078190556001546103e891620002d991620007a0565b620002e59190620007ba565b6009556008546001546103e891620002fd91620007a0565b620003099190620007ba565b600a556200032b620003236000546001600160a01b031690565b600162000403565b6200033830600162000403565b6200034761dead600162000403565b3060009081526003602081905260408220805460ff19166001908117909155916200037a6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790556006549091168152600390925281208054831660019081179091559080527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff8054909216179055620003fb3382620004e2565b5050620007dd565b6000546001600160a01b03163314620004635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260026020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0382166200053a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200045a565b80601060008282546200054e919062000784565b90915550506001600160a01b038216600090815260046020526040812080548392906200057d90849062000784565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005f757607f821691505b6020821081036200061857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005c757600081815260208120601f850160051c81016020861015620006475750805b601f850160051c820191505b81811015620006685782815560010162000653565b505050505050565b81516001600160401b038111156200068c576200068c620005cc565b620006a4816200069d8454620005e2565b846200061e565b602080601f831160018114620006dc5760008415620006c35750858301515b600019600386901b1c1916600185901b17855562000668565b600085815260208120601f198616915b828110156200070d57888601518255948401946001909101908401620006ec565b50858210156200072c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200074f57600080fd5b81516001600160a01b03811681146200076757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156200079a576200079a6200076e565b92915050565b80820281158282048414176200079a576200079a6200076e565b600082620007d857634e487b7160e01b600052601260045260246000fd5b500490565b608051611b2e620007f960003960006102d10152611b2e6000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c8063715018a611610130578063ae907c9c116100b8578063c3ec2a251161007c578063c3ec2a25146104b0578063dd62ed3e146104c2578063ddf19480146104fb578063f2fde38b14610508578063f8b45b051461051b57600080fd5b8063ae907c9c14610456578063b430d3a41461045f578063b62496f514610472578063bb647f6514610495578063bf4c19021461049d57600080fd5b80639a7a23d6116100ff5780639a7a23d6146104015780639e02482014610414578063a457c2d714610427578063a9059cbb1461043a578063aa4bde281461044d57600080fd5b8063715018a6146103cd5780637d3f84da146103d55780638da5cb5b146103e857806395d89b41146103f957600080fd5b806325b61703116101be578063491d0a5611610182578063491d0a561461036357806360c09a76146103765780636d1b229d146103895780636fc61a091461039c57806370a08231146103a457600080fd5b806325b617031461032657806327c8f8351461032f578063313ce5671461033857806339509351146103475780633b13cc161461035a57600080fd5b806306fdde031161020557806306fdde03146102a4578063095ea7b3146102b95780631694505e146102cc57806318160ddd1461030b57806323b872dd1461031357600080fd5b8063018770201461023757806302259e9e1461024c57806302f6002414610268578063047fc9aa1461029b575b600080fd5b61024a610245366004611705565b610524565b005b61025560095481565b6040519081526020015b60405180910390f35b61028b610276366004611705565b600f6020526000908152604090205460ff1681565b604051901515815260200161025f565b61025560015481565b6102ac610579565b60405161025f9190611720565b61028b6102c736600461176e565b61060b565b6102f37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161025f565b601054610255565b61028b610321366004611798565b610622565b610255600b5481565b6102f361dead81565b6040516012815260200161025f565b61028b61035536600461176e565b6106cc565b61025560075481565b6006546102f3906001600160a01b031681565b61024a6103843660046117d4565b610708565b61024a610397366004611810565b61075d565b61024a610781565b6102556103b2366004611705565b6001600160a01b031660009081526004602052604090205490565b61024a61080d565b61024a6103e3366004611810565b610881565b6000546001600160a01b03166102f3565b6102ac6108b0565b61024a61040f3660046117d4565b6108bf565b61024a610422366004611870565b610977565b61028b61043536600461176e565b6109b1565b61028b61044836600461176e565b610a4a565b610255600a5481565b610255600c5481565b61024a61046d366004611705565b610a57565b61028b610480366004611705565b60026020526000908152604090205460ff1681565b61024a610aa2565b61024a6104ab366004611905565b610ae0565b600d5461028b90610100900460ff1681565b6102556104d03660046119b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b600d5461028b9060ff1681565b61024a610516366004611705565b610b72565b61025560085481565b6000546001600160a01b031633146105575760405162461bcd60e51b815260040161054e906119e5565b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606011805461058890611a1a565b80601f01602080910402602001604051908101604052809291908181526020018280546105b490611a1a565b80156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b5050505050905090565b6000610618338484610c5c565b5060015b92915050565b600061062f848484610d81565b6001600160a01b0384166000908152600560209081526040808320338452909152902054828110156106b45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161054e565b6106c18533858403610c5c565b506001949350505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610618918590610703908690611a6a565b610c5c565b6000546001600160a01b031633146107325760405162461bcd60e51b815260040161054e906119e5565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600061077182670de0b6b3a764000061141c565b905061077d33826114a5565b5050565b6000546001600160a01b031633146107ab5760405162461bcd60e51b815260040161054e906119e5565b600d54610100900460ff166108025760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c7265616479206c61756e636865640000000000000000604482015260640161054e565b42600b5560b4600c55565b6000546001600160a01b031633146108375760405162461bcd60e51b815260040161054e906119e5565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108ab5760405162461bcd60e51b815260040161054e906119e5565b600c55565b60606012805461058890611a1a565b6000546001600160a01b031633146108e95760405162461bcd60e51b815260040161054e906119e5565b6006546001600160a01b039081169083160361096d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161054e565b61077d82826115f4565b7f469c8110e66a813a00933de02b0c8860dd514416a0163d9ee059eed9528d4c3f816040516109a69190611720565b60405180910390a150565b3360009081526005602090815260408083206001600160a01b038616845290915281205482811015610a335760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161054e565b610a403385858403610c5c565b5060019392505050565b6000610618338484610d81565b6000546001600160a01b03163314610a815760405162461bcd60e51b815260040161054e906119e5565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6000546001600160a01b03163314610acc5760405162461bcd60e51b815260040161054e906119e5565b600d805460ff19811660ff90911615179055565b6000546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161054e906119e5565b60005b815181101561077d57600160036000848481518110610b2e57610b2e611a7d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b6a81611a93565b915050610b0d565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b815260040161054e906119e5565b6001600160a01b038116610c015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610cbe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161054e565b6001600160a01b038216610d1f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161054e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610de55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161054e565b6001600160a01b038216610e475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161054e565b600d54610100900460ff168015610e7757506001600160a01b03831660009081526003602052604090205460ff16155b8015610e9c57506001600160a01b03821660009081526003602052604090205460ff16155b15610f5c576000600b5411610ee95760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd081cdd185c9d1959606a1b604482015260640161054e565b600b54600a90600090610efc9083611648565b905080421015610f4e5760405162461bcd60e51b815260206004820181905260248201527f4641494c3a2054726164696e67206973206e6f7420656e61626c656420796574604482015260640161054e565b5050600d805461ff00191690555b6000546001600160a01b03848116911614801590610f8857506000546001600160a01b03838116911614155b8015610f9c57506001600160a01b03821615155b8015610fb357506001600160a01b03821661dead14155b1561131357600d5460ff168015610fd757506006546001600160a01b038381169116145b1561108457600c54326000908152600e6020526040902054610ff99190611a6a565b4210156110845760405162461bcd60e51b815260206004820152604d60248201527f5472616e736665722064656c6179206973206163746976652e4f6e6c79206f6e60448201527f652073656c6c20706572207e77616c6c65745472616e7366657244656c61795460648201526c34b6b2bf1030b63637bbb2b21760991b608482015260a40161054e565b326000818152600e6020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b03831660009081526002602052604090205460ff16801561110d57506001600160a01b0382166000908152600f602052604090205460ff16155b801561113257506001600160a01b03821660009081526002602052604090205460ff16155b156111a657600a546001600160a01b03831660009081526004602052604090205461115d9083611a6a565b11156111a15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161054e565b611313565b6001600160a01b03821660009081526002602052604090205460ff1680156111e757506001600160a01b0383166000908152600f602052604090205460ff16155b801561120c57506001600160a01b03831660009081526002602052604090205460ff16155b15611289576009548111156111a15760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e000000000000606482015260840161054e565b6001600160a01b0382166000908152600f602052604090205460ff1661131357600a546001600160a01b0383166000908152600460205260409020546112cf9083611a6a565b11156113135760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161054e565b6001600160a01b0383166000908152600460205260409020548181101561138b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161054e565b6001600160a01b038085166000908152600460205260408082208585039055918516815290812080548492906113c2908490611a6a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140e91815260200190565b60405180910390a350505050565b60008260000361142e5750600061061c565b600061143a8385611aac565b9050826114478583611ac3565b1461149e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161054e565b9392505050565b6001600160a01b0382166115055760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161054e565b6001600160a01b038216600090815260046020526040902054818110156115795760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161054e565b6001600160a01b03831660009081526004602052604081208383039055601080548492906115a8908490611ae5565b909155506115b690506116a7565b6040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d74565b6001600160a01b038216600081815260026020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000806116558385611a6a565b90508381101561149e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161054e565b6103e86007546010546116ba9190611aac565b6116c49190611ac3565b6009556008546010546103e8916116da91611aac565b6116e49190611ac3565b600a55565b80356001600160a01b038116811461170057600080fd5b919050565b60006020828403121561171757600080fd5b61149e826116e9565b600060208083528351808285015260005b8181101561174d57858101830151858201604001528201611731565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561178157600080fd5b61178a836116e9565b946020939093013593505050565b6000806000606084860312156117ad57600080fd5b6117b6846116e9565b92506117c4602085016116e9565b9150604084013590509250925092565b600080604083850312156117e757600080fd5b6117f0836116e9565b91506020830135801515811461180557600080fd5b809150509250929050565b60006020828403121561182257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561186857611868611829565b604052919050565b6000602080838503121561188357600080fd5b823567ffffffffffffffff8082111561189b57600080fd5b818501915085601f8301126118af57600080fd5b8135818111156118c1576118c1611829565b6118d3601f8201601f1916850161183f565b915080825286848285010111156118e957600080fd5b8084840185840137600090820190930192909252509392505050565b6000602080838503121561191857600080fd5b823567ffffffffffffffff8082111561193057600080fd5b818501915085601f83011261194457600080fd5b81358181111561195657611956611829565b8060051b915061196784830161183f565b818152918301840191848101908884111561198157600080fd5b938501935b838510156119a657611997856116e9565b82529385019390850190611986565b98975050505050505050565b600080604083850312156119c557600080fd5b6119ce836116e9565b91506119dc602084016116e9565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a2e57607f821691505b602082108103611a4e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561061c5761061c611a54565b634e487b7160e01b600052603260045260246000fd5b600060018201611aa557611aa5611a54565b5060010190565b808202811582820484141761061c5761061c611a54565b600082611ae057634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561061c5761061c611a5456fea26469706673582212201f4846dca0c94ad2dbacb0fb41f67bedc9f2713450902377f59294e71bf013ee64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c8063715018a611610130578063ae907c9c116100b8578063c3ec2a251161007c578063c3ec2a25146104b0578063dd62ed3e146104c2578063ddf19480146104fb578063f2fde38b14610508578063f8b45b051461051b57600080fd5b8063ae907c9c14610456578063b430d3a41461045f578063b62496f514610472578063bb647f6514610495578063bf4c19021461049d57600080fd5b80639a7a23d6116100ff5780639a7a23d6146104015780639e02482014610414578063a457c2d714610427578063a9059cbb1461043a578063aa4bde281461044d57600080fd5b8063715018a6146103cd5780637d3f84da146103d55780638da5cb5b146103e857806395d89b41146103f957600080fd5b806325b61703116101be578063491d0a5611610182578063491d0a561461036357806360c09a76146103765780636d1b229d146103895780636fc61a091461039c57806370a08231146103a457600080fd5b806325b617031461032657806327c8f8351461032f578063313ce5671461033857806339509351146103475780633b13cc161461035a57600080fd5b806306fdde031161020557806306fdde03146102a4578063095ea7b3146102b95780631694505e146102cc57806318160ddd1461030b57806323b872dd1461031357600080fd5b8063018770201461023757806302259e9e1461024c57806302f6002414610268578063047fc9aa1461029b575b600080fd5b61024a610245366004611705565b610524565b005b61025560095481565b6040519081526020015b60405180910390f35b61028b610276366004611705565b600f6020526000908152604090205460ff1681565b604051901515815260200161025f565b61025560015481565b6102ac610579565b60405161025f9190611720565b61028b6102c736600461176e565b61060b565b6102f37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161025f565b601054610255565b61028b610321366004611798565b610622565b610255600b5481565b6102f361dead81565b6040516012815260200161025f565b61028b61035536600461176e565b6106cc565b61025560075481565b6006546102f3906001600160a01b031681565b61024a6103843660046117d4565b610708565b61024a610397366004611810565b61075d565b61024a610781565b6102556103b2366004611705565b6001600160a01b031660009081526004602052604090205490565b61024a61080d565b61024a6103e3366004611810565b610881565b6000546001600160a01b03166102f3565b6102ac6108b0565b61024a61040f3660046117d4565b6108bf565b61024a610422366004611870565b610977565b61028b61043536600461176e565b6109b1565b61028b61044836600461176e565b610a4a565b610255600a5481565b610255600c5481565b61024a61046d366004611705565b610a57565b61028b610480366004611705565b60026020526000908152604090205460ff1681565b61024a610aa2565b61024a6104ab366004611905565b610ae0565b600d5461028b90610100900460ff1681565b6102556104d03660046119b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b600d5461028b9060ff1681565b61024a610516366004611705565b610b72565b61025560085481565b6000546001600160a01b031633146105575760405162461bcd60e51b815260040161054e906119e5565b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60606011805461058890611a1a565b80601f01602080910402602001604051908101604052809291908181526020018280546105b490611a1a565b80156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b5050505050905090565b6000610618338484610c5c565b5060015b92915050565b600061062f848484610d81565b6001600160a01b0384166000908152600560209081526040808320338452909152902054828110156106b45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161054e565b6106c18533858403610c5c565b506001949350505050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610618918590610703908690611a6a565b610c5c565b6000546001600160a01b031633146107325760405162461bcd60e51b815260040161054e906119e5565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b600061077182670de0b6b3a764000061141c565b905061077d33826114a5565b5050565b6000546001600160a01b031633146107ab5760405162461bcd60e51b815260040161054e906119e5565b600d54610100900460ff166108025760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c7265616479206c61756e636865640000000000000000604482015260640161054e565b42600b5560b4600c55565b6000546001600160a01b031633146108375760405162461bcd60e51b815260040161054e906119e5565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108ab5760405162461bcd60e51b815260040161054e906119e5565b600c55565b60606012805461058890611a1a565b6000546001600160a01b031633146108e95760405162461bcd60e51b815260040161054e906119e5565b6006546001600160a01b039081169083160361096d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161054e565b61077d82826115f4565b7f469c8110e66a813a00933de02b0c8860dd514416a0163d9ee059eed9528d4c3f816040516109a69190611720565b60405180910390a150565b3360009081526005602090815260408083206001600160a01b038616845290915281205482811015610a335760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161054e565b610a403385858403610c5c565b5060019392505050565b6000610618338484610d81565b6000546001600160a01b03163314610a815760405162461bcd60e51b815260040161054e906119e5565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6000546001600160a01b03163314610acc5760405162461bcd60e51b815260040161054e906119e5565b600d805460ff19811660ff90911615179055565b6000546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161054e906119e5565b60005b815181101561077d57600160036000848481518110610b2e57610b2e611a7d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b6a81611a93565b915050610b0d565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b815260040161054e906119e5565b6001600160a01b038116610c015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610cbe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161054e565b6001600160a01b038216610d1f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161054e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610de55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161054e565b6001600160a01b038216610e475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161054e565b600d54610100900460ff168015610e7757506001600160a01b03831660009081526003602052604090205460ff16155b8015610e9c57506001600160a01b03821660009081526003602052604090205460ff16155b15610f5c576000600b5411610ee95760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd081cdd185c9d1959606a1b604482015260640161054e565b600b54600a90600090610efc9083611648565b905080421015610f4e5760405162461bcd60e51b815260206004820181905260248201527f4641494c3a2054726164696e67206973206e6f7420656e61626c656420796574604482015260640161054e565b5050600d805461ff00191690555b6000546001600160a01b03848116911614801590610f8857506000546001600160a01b03838116911614155b8015610f9c57506001600160a01b03821615155b8015610fb357506001600160a01b03821661dead14155b1561131357600d5460ff168015610fd757506006546001600160a01b038381169116145b1561108457600c54326000908152600e6020526040902054610ff99190611a6a565b4210156110845760405162461bcd60e51b815260206004820152604d60248201527f5472616e736665722064656c6179206973206163746976652e4f6e6c79206f6e60448201527f652073656c6c20706572207e77616c6c65745472616e7366657244656c61795460648201526c34b6b2bf1030b63637bbb2b21760991b608482015260a40161054e565b326000818152600e6020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b03831660009081526002602052604090205460ff16801561110d57506001600160a01b0382166000908152600f602052604090205460ff16155b801561113257506001600160a01b03821660009081526002602052604090205460ff16155b156111a657600a546001600160a01b03831660009081526004602052604090205461115d9083611a6a565b11156111a15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161054e565b611313565b6001600160a01b03821660009081526002602052604090205460ff1680156111e757506001600160a01b0383166000908152600f602052604090205460ff16155b801561120c57506001600160a01b03831660009081526002602052604090205460ff16155b15611289576009548111156111a15760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e000000000000606482015260840161054e565b6001600160a01b0382166000908152600f602052604090205460ff1661131357600a546001600160a01b0383166000908152600460205260409020546112cf9083611a6a565b11156113135760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161054e565b6001600160a01b0383166000908152600460205260409020548181101561138b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161054e565b6001600160a01b038085166000908152600460205260408082208585039055918516815290812080548492906113c2908490611a6a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140e91815260200190565b60405180910390a350505050565b60008260000361142e5750600061061c565b600061143a8385611aac565b9050826114478583611ac3565b1461149e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161054e565b9392505050565b6001600160a01b0382166115055760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161054e565b6001600160a01b038216600090815260046020526040902054818110156115795760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161054e565b6001600160a01b03831660009081526004602052604081208383039055601080548492906115a8908490611ae5565b909155506115b690506116a7565b6040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d74565b6001600160a01b038216600081815260026020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000806116558385611a6a565b90508381101561149e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161054e565b6103e86007546010546116ba9190611aac565b6116c49190611ac3565b6009556008546010546103e8916116da91611aac565b6116e49190611ac3565b600a55565b80356001600160a01b038116811461170057600080fd5b919050565b60006020828403121561171757600080fd5b61149e826116e9565b600060208083528351808285015260005b8181101561174d57858101830151858201604001528201611731565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561178157600080fd5b61178a836116e9565b946020939093013593505050565b6000806000606084860312156117ad57600080fd5b6117b6846116e9565b92506117c4602085016116e9565b9150604084013590509250925092565b600080604083850312156117e757600080fd5b6117f0836116e9565b91506020830135801515811461180557600080fd5b809150509250929050565b60006020828403121561182257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561186857611868611829565b604052919050565b6000602080838503121561188357600080fd5b823567ffffffffffffffff8082111561189b57600080fd5b818501915085601f8301126118af57600080fd5b8135818111156118c1576118c1611829565b6118d3601f8201601f1916850161183f565b915080825286848285010111156118e957600080fd5b8084840185840137600090820190930192909252509392505050565b6000602080838503121561191857600080fd5b823567ffffffffffffffff8082111561193057600080fd5b818501915085601f83011261194457600080fd5b81358181111561195657611956611829565b8060051b915061196784830161183f565b818152918301840191848101908884111561198157600080fd5b938501935b838510156119a657611997856116e9565b82529385019390850190611986565b98975050505050505050565b600080604083850312156119c557600080fd5b6119ce836116e9565b91506119dc602084016116e9565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a2e57607f821691505b602082108103611a4e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561061c5761061c611a54565b634e487b7160e01b600052603260045260246000fd5b600060018201611aa557611aa5611a54565b5060010190565b808202811582820484141761061c5761061c611a54565b600082611ae057634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561061c5761061c611a5456fea26469706673582212201f4846dca0c94ad2dbacb0fb41f67bedc9f2713450902377f59294e71bf013ee64736f6c63430008110033

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.