ETH Price: $1,985.72 (-4.72%)

Contract

0x02a1B249fdC1c8d3B9eFE1b64A09B4ffbf9F74F2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Manual Unclog241987872026-01-09 18:02:1156 days ago1767981731IN
0x02a1B249...fbf9F74F2
0 ETH0.000015120.08853422
Enable Trading241987072026-01-09 17:46:1156 days ago1767980771IN
0x02a1B249...fbf9F74F2
0 ETH0.0018748240.08853853
Disable Minting241987052026-01-09 17:45:4756 days ago1767980747IN
0x02a1B249...fbf9F74F2
0 ETH0.000002490.09288702
Disable Minting241985952026-01-09 17:23:4756 days ago1767979427IN
0x02a1B249...fbf9F74F2
0 ETH0.000004640.17298198
Disable Minting241983052026-01-09 16:25:3556 days ago1767975935IN
0x02a1B249...fbf9F74F2
0 ETH0.000003610.13460856
Disable Minting241978582026-01-09 14:55:5956 days ago1767970559IN
0x02a1B249...fbf9F74F2
0 ETH0.000006070.22626944
Disable Minting241973852026-01-09 13:20:3556 days ago1767964835IN
0x02a1B249...fbf9F74F2
0 ETH0.00000130.05249717
Set Pair241970422026-01-09 12:11:3556 days ago1767960695IN
0x02a1B249...fbf9F74F2
0 ETH0.000002570.05410371
Approve241970402026-01-09 12:11:1156 days ago1767960671IN
0x02a1B249...fbf9F74F2
0 ETH0.000002580.05610587

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TOKEN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion, MIT license
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract TOKEN is ERC20, Ownable {
    using SafeMath for uint256;

    uint8 public _decimals;
    uint256 private immutable _tTotal;
    address public mintAuthority;
    IUniswapV2Router02 public uniswapV2Router;
    address public pair;

    uint256 public currentTax;
    uint256 public immutable finalTax;
    address payable public taxWallet;

    bool private inSwap = false;
    uint256 private minTaxSwapThreshold;
    uint256 private preventTaxSwapBeforeBuys;
    uint256 public maxTaxSwap;
    uint256 private lastSellBlock = 0;

    uint256 private buyCount = 0;
    uint256 private sellCount = 0;
    uint256 private taxSwapLimitPerBlock = 0;
    uint256 private maxTx = 0;
    uint256 private walletLimit = 0;
    uint256 private limitDuration;

    bool public tradingEnabled = false;
    bool public limitsRemoved = false;

    event TradingEnabled();
    event PairSet(address pair);
    event LimitsRemoved();
    event MintingDisabled();
    event TaxWalletUpdated(address newTaxWallet);
    event ManualUnclog(uint256 amount);

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

    constructor(
        string memory name,
        string memory symbol,
        uint256 _totalSupply,
        uint256 _tokenDecimals,
        uint256 _initWalletLimit, // bps
        uint256 _initMaxTx,       // bps
        uint256 _limitDuration,
        address _uniswapV2Router,
        address _taxWallet,
        uint256 _launchTax,       // bps
        uint256 _finalTax,        // bps
        uint256 _taxSwapLimitPerBlock,
        uint256 _minTaxSwapThresholdBps,
        uint256 _preventTaxSwapBeforeBuys
    ) ERC20(name, symbol) {
        require(_launchTax > 0 && _launchTax <= 2500, "Invalid tax values");
        require(_finalTax > 0 && _finalTax <= 1000, "Invalid tax values");

        taxWallet = payable(_taxWallet);
        currentTax = _launchTax;
        finalTax = _finalTax;

        _decimals = uint8(_tokenDecimals);
        _tTotal = _totalSupply * 10 ** _tokenDecimals;
        mintAuthority = msg.sender;

        uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
        if (msg.sender != address(0)) _mint(msg.sender, _tTotal);

        walletLimit = (_tTotal * _initWalletLimit) / 10000;   // bps of max supply
        maxTx = (_tTotal * _initMaxTx) / 10000;               // bps of max supply
        taxSwapLimitPerBlock = _taxSwapLimitPerBlock;
        limitDuration = _limitDuration;  // Txns

        maxTaxSwap = _tTotal / 10000;  // 0.01%

        minTaxSwapThreshold = (_tTotal * _minTaxSwapThresholdBps) / 10000;
        preventTaxSwapBeforeBuys = _preventTaxSwapBeforeBuys;
    }

    modifier onlyMintAuthority() {
        require(msg.sender == mintAuthority, "Not the mint authority");
        _;
    }

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

    function mint(address to, uint256 amount) external onlyMintAuthority {
        require(totalSupply() + amount <= _tTotal, "Max supply exceeded");
        _mint(to, amount);
    }

    function disableMinting() external onlyOwner {
        mintAuthority = address(0);
        emit MintingDisabled();
    }

    function setPair(address _pair) external onlyOwner {
        require(pair == address(0), "Pair address already set");
        require(_pair != address(0), "Invalid pair address");
        pair = _pair;
        emit PairSet(_pair);
    }

    function _transfer(address from, address to, uint256 amount) internal virtual override {
        if (
            from == owner() || to == owner() 
            || from == mintAuthority || to == mintAuthority 
            || from == address(this) || to == taxWallet
        ) {
            super._transfer(from, to, amount);
            return;
        }

        require(pair != address(0), "Pair not set");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (!limitsRemoved && buyCount >= limitDuration && !(from == pair && to == address(uniswapV2Router))) _removeLimits();
        uint256 taxAmount = amount.mul(currentTax).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);

        if (!limitsRemoved && from != pair && to != pair && to != address(this) && to != address(uniswapV2Router)) {
            require(balanceOf(to).add(amountAfterTax) <= walletLimit, "Swap amount exceeds the wallet limit.");
        }

        if (!limitsRemoved && !(from == pair && to == address(uniswapV2Router)))
            require(amountAfterTax <= maxTx, "Transfer amount exceeds the maxTxAmount.");
        if (!(from == pair && to == address(uniswapV2Router))) 
            require(tradingEnabled, "Trading is not enabled yet");

        if (from == pair && to != address(uniswapV2Router)) { // Buy
            require(balanceOf(to).add(amountAfterTax) <= walletLimit, "Swap amount exceeds the wallet limit.");
            buyCount++;
        }
        else if (to == pair && from != address(this)) { // Sell            
            // Swap tax tokens to ETH
            uint256 contractTokenBalance = balanceOf(address(this));
            if (
                !inSwap 
                && contractTokenBalance > minTaxSwapThreshold 
                && buyCount > preventTaxSwapBeforeBuys
            ) {
                if (block.number > lastSellBlock) {
                    sellCount = 0;
                    lastSellBlock = block.number;
                }
                if (sellCount < taxSwapLimitPerBlock) {
                    swapTokensForEth(min(contractTokenBalance, maxTaxSwap));
                    uint256 contractETHBalance = address(this).balance;
                    if (contractETHBalance > 0) {
                        sendETHToFee(contractETHBalance);
                    }
                    sellCount++;
                }
            }
        }

        uint256 transferAmount = amount.sub(taxAmount);
        super._transfer(from, to, transferAmount);
        if (taxAmount > 0) super._transfer(from, address(this), taxAmount);
    }

    function min(uint256 a, uint256 b) private pure returns (uint256){
        return (a > b) ? b : a;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function manualUnclog() external onlyOwner {
        uint256 contractTokenBalance = balanceOf(address(this));
        if (contractTokenBalance > 0) {
            swapTokensForEth(contractTokenBalance);
        }
        uint256 contractETHBalance = address(this).balance;
        if (contractETHBalance > 0) {
            sendETHToFee(contractETHBalance);
            emit ManualUnclog(contractETHBalance);
        }
    }

    function sendETHToFee(uint256 amount) private {
        (bool success, ) = taxWallet.call{value: amount}("");
        require(success, "ETH Transfer failed");
    }

    function manualSend() external onlyOwner {
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function updateClogParams(uint256 newThreshold, uint256 newPreventBefore) external onlyOwner {
        require(newThreshold > 0 && newThreshold <= _tTotal / 100, "Invalid threshold");
        require(newPreventBefore >= 0, "Invalid prevent before");
        minTaxSwapThreshold = newThreshold;
        preventTaxSwapBeforeBuys = newPreventBefore;
    }

    function removeLimits() external onlyOwner { _removeLimits(); }
    function _removeLimits() internal {
        require(!limitsRemoved, "Limits already removed");
        walletLimit = _tTotal;
        maxTx = _tTotal;
        currentTax = finalTax;
        limitsRemoved = true;
        emit LimitsRemoved();
    }

    function updateMaxTaxSwap(uint256 newMaxTaxSwap) external onlyOwner {
        require(newMaxTaxSwap > 0 && newMaxTaxSwap <= _tTotal / 100, "Invalid max tax swap");
        maxTaxSwap = newMaxTaxSwap;
    }

    function updateTaxWallet(address payable newTaxWallet) external onlyOwner {
        require(newTaxWallet != address(0), "Invalid wallet");
        taxWallet = newTaxWallet;
        emit TaxWalletUpdated(newTaxWallet);
    }

    function enableTrading() external onlyOwner {
        tradingEnabled = true;
        emit TradingEnabled();
    }

    receive() external payable {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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;
        }
    }
}

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Settings
{
  "evmVersion": "shanghai",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": [
    "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.6/",
    "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.6/",
    "project/:@openzeppelin/contracts/=npm/@openzeppelin/contracts@4.9.6/",
    "project/:@uniswap/v2-periphery/=npm/@uniswap/v2-periphery@1.1.0-beta.0/"
  ],
  "viaIR": true
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_tokenDecimals","type":"uint256"},{"internalType":"uint256","name":"_initWalletLimit","type":"uint256"},{"internalType":"uint256","name":"_initMaxTx","type":"uint256"},{"internalType":"uint256","name":"_limitDuration","type":"uint256"},{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"uint256","name":"_launchTax","type":"uint256"},{"internalType":"uint256","name":"_finalTax","type":"uint256"},{"internalType":"uint256","name":"_taxSwapLimitPerBlock","type":"uint256"},{"internalType":"uint256","name":"_minTaxSwapThresholdBps","type":"uint256"},{"internalType":"uint256","name":"_preventTaxSwapBeforeBuys","type":"uint256"}],"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":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualUnclog","type":"event"},{"anonymous":false,"inputs":[],"name":"MintingDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"}],"name":"PairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"TaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalTax","outputs":[{"internalType":"uint256","name":"","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":"limitsRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualUnclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintAuthority","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"},{"internalType":"uint256","name":"newPreventBefore","type":"uint256"}],"name":"updateClogParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTaxSwap","type":"uint256"}],"name":"updateMaxTaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newTaxWallet","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

604060c081523462000662576200240d90813803806200001f8162000666565b93843982016101c083820312620006625782516001600160401b0381116200066257816200004f9185016200068c565b602084015190916001600160401b0382116200066257620000729185016200068c565b92828101519060608101516080958683015160a08401519460c0850151936200009e60e08701620006fc565b90620000ae6101008801620006fc565b92610120880151936101408901516101608a0151976101a06101808c01519b01519c80519060018060401b0382116200053b5760035490600182811c9216801562000657575b60208310146200051c5781601f849311620005e4575b50602090601f83116001146200055b575f926200054f575b50508160011b915f199060031b1c1916176003555b8051906001600160401b0382116200053b5760045490600182811c9216801562000530575b60208310146200051c5781601f849311620004a9575b50602090601f83116001146200041c575f9262000410575b50508160011b915f199060031b1c1916176004555b6005546001600160a01b03968793919291338585167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3600a54905f600e555f600f555f6010555f6011555f6012555f60135561ffff19601554166015558215158062000403575b620002149062000711565b83151580620003f6575b620002299062000711565b6001600160a81b0319918216951694909417600a5560095560a090815291163360ff60a01b1916179083901b60ff60a01b1617600555604d82116200039e576200027791600a0a9062000753565b91828b5260018060a01b03199133836006541617600655169060075416176007553315801562000329575b505090620002e8939291620002d0620002c496612710809881948d5162000753565b046013558a5162000753565b046012556011556014558551838104600d5562000753565b04600b55600c5551611ca5918262000768833951818181610368015281816109bb01528181610f300152611bb4015260a0518181816109300152611bdd0152f35b949392919094620003b2576002548581018091116200039e57620002c496620002e896620002d092600255335f525f6020528a5f208181540190558a519081525f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a39650819293949550620002a2565b634e487b7160e01b5f52601160045260245ffd5b875162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b506103e88411156200021e565b506109c483111562000209565b015190505f806200018a565b60045f90815293507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b91905b601f19841685106200048d576001945083601f1981161062000474575b505050811b016004556200019f565b01515f1960f88460031b161c191690555f808062000465565b8181015183556020948501946001909301929091019062000448565b60045f529091507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c8101916020851062000511575b90601f859493920160051c01905b81811062000502575062000172565b5f8155849350600101620004f3565b9091508190620004e5565b634e487b7160e01b5f52602260045260245ffd5b91607f16916200015c565b634e487b7160e01b5f52604160045260245ffd5b015190505f8062000122565b60035f9081527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9350601f198516905b818110620005cb5750908460019594939210620005b2575b505050811b0160035562000137565b01515f1960f88460031b161c191690555f8080620005a3565b929360206001819287860151815501950193016200058b565b60035f529091507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c810191602085106200064c575b90601f859493920160051c01905b8181106200063d57506200010a565b5f81558493506001016200062e565b909150819062000620565b91607f1691620000f4565b5f80fd5b6040519190601f01601f191682016001600160401b038111838210176200053b57604052565b919080601f84011215620006625782516001600160401b0381116200053b57602090620006c2601f8201601f1916830162000666565b9281845282828701011162000662575f5b818110620006e85750825f9394955001015290565b8581018301518482018401528201620006d3565b51906001600160a01b03821682036200066257565b156200071957565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c6964207461782076616c75657360701b6044820152606490fd5b818102929181159184041417156200039e5756fe608060409080825260049182361015610022575b5050503615610020575f80fd5b005b5f92833560e01c92836306fdde0314610f8257508263095ea7b314610f5857826309df275e14610ebc5782631694505e14610e9357826318160ddd14610e745782631d6f965514610e4d57826323b872dd14610d855782632dc0562d14610d5c578263313ce56714610d3757826332424aa314610d3757826338347fa414610b375782633950935114610aea57826340c10f19146109775782634ada218b146109535782634dd7c8bf1461091857826362997f8c146108f957826364a3f2cf146108da57826370a08231146108a3578263715018a61461084657826374c9f60314610799578263751039fc146107785782637e5cd5c1146107285782638187f5161461062f5782638a8c523c146105e25782638da5cb5b146105b95782639340b21e1461059057826395d89b411461048d578263a457c2d7146103ea578263a8aa1b31146103c1578263a9059cbb14610390578263afbcf8a7146102f2578263dd62ed3e146102a1578263f2fde38b146101d057505063f4293890146101a9578080610013565b346101cd57806003193601126101cd576101c16110e9565b6101ca47611afc565b80f35b80fd5b9091503461029d57602036600319011261029d576101ec6110b9565b906101f56110e9565b6001600160a01b0391821692831561024b575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b8382346102ee57806003193601126102ee576020916102be6110b9565b826102c76110d3565b6001600160a01b03928316845260018652922091165f908152908352819020549051908152f35b5080fd5b9091503461029d578160031936011261029d578035916103106110e9565b82151580610363575b1561032c575050600b55602435600c5580f35b906020606492519162461bcd60e51b83528201526011602482015270125b9d985b1a59081d1a1c995cda1bdb19607a1b6044820152fd5b5060647f000000000000000000000000000000000000000000000000000000000000000004831115610319565b8382346102ee57806003193601126102ee576020906103ba6103b06110b9565b602435903361132e565b5160018152f35b8382346102ee57816003193601126102ee5760085490516001600160a01b039091168152602090f35b83346101cd57826003193601126101cd576104036110b9565b91836024359233815260016020522060018060a01b0384165f52602052835f20549082821061043c576020856103ba85850387336111c8565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b8382346102ee57816003193601126102ee57805191809380549160019083821c92828516948515610586575b60209586861081146105735785895290811561054f57506001146104f7575b6104f387876104e9828c0383611185565b5191829182611072565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061053c57505050826104f3946104e9928201019486806104d8565b805486850188015292860192810161051e565b60ff19168887015250505050151560051b83010192506104e9826104f386806104d8565b634e487b7160e01b845260228352602484fd5b93607f16936104b9565b8382346102ee57816003193601126102ee5760065490516001600160a01b039091168152602090f35b8382346102ee57816003193601126102ee5760055490516001600160a01b039091168152602090f35b83346101cd57806003193601126101cd576105fb6110e9565b600160ff1960155416176015557f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c78180a180f35b91503461029d57602036600319011261029d5761064a6110b9565b6106526110e9565b600854906001600160a01b03908183166106e557169283156106ab57506001600160a01b0319168217600855519081527fc4a4ea6abc08bd7f8df3db8a1c998f19b3e0c348176f93732cd54db1a4b5013690602090a180f35b606490602084519162461bcd60e51b83528201526014602482015273496e76616c69642070616972206164647265737360601b6044820152fd5b835162461bcd60e51b8152602081870152601860248201527f50616972206164647265737320616c72656164792073657400000000000000006044820152606490fd5b83346101cd57806003193601126101cd576107416110e9565b600680546001600160a01b03191690557faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb78180a180f35b83346101cd57806003193601126101cd576107916110e9565b6101ca611ba4565b91503461029d57602036600319011261029d5781356001600160a01b0381169290839003610842576107c96110e9565b821561080f5750600a80546001600160a01b03191683179055519081527f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c790602090a180f35b6020606492519162461bcd60e51b8352820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b6044820152fd5b8380fd5b83346101cd57806003193601126101cd5761085f6110e9565b600580546001600160a01b031981169091555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b8382346102ee5760203660031901126102ee5760209181906001600160a01b036108cb6110b9565b16815280845220549051908152f35b8382346102ee57816003193601126102ee576020906009549051908152f35b8382346102ee57816003193601126102ee57602090600d549051908152f35b8382346102ee57816003193601126102ee57602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b8382346102ee57816003193601126102ee5760209060ff6015541690519015158152f35b91503461029d578060031936011261029d576109916110b9565b6006546024359291906001600160a01b039081163303610aae57600254916109b985846111a7565b7f000000000000000000000000000000000000000000000000000000000000000010610a755716938415610a325750827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92610a1887956020946111a7565b60025585855284835280852082815401905551908152a380f35b606490602084519162461bcd60e51b8352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b835162461bcd60e51b8152602081880152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606490fd5b825162461bcd60e51b815260208187015260166024820152754e6f7420746865206d696e7420617574686f7269747960501b6044820152606490fd5b8382346102ee57806003193601126102ee576103ba60209282610b0b6110b9565b91338152600186522060018060a01b0382165f528452610b30602435845f20546111a7565b90336111c8565b9091503461029d578260031936011261029d57610b526110e9565b3083526020908382528284205480610ba8575b50504780610b71578380f35b7fa0abd5a76d450569e125a8a0ebe34b8394c2d8ba1b56a25a46ff2df2d3a3704392610b9c82611afc565b51908152a15f80808380f35b600a805460ff60a01b19908116600160a01b1790915584519092610bcb82611169565b60028252848201908636833730610be184611acb565b5260075487516315ab88c960e31b81526001600160a01b039182169088818581855afa8015610d2d5787918c91610ced575b5091610c2d9284610c2389611aec565b91169052306111c8565b806007541693843b15610ce957949290899492895196879563791ac94760e01b875260a487019287015286602487015260a060448701525180915260c48501929186905b8a838310610cc95750505050508383809230606483015242608483015203925af18015610cbf57610cac575b50600a5416600a555f80610b65565b610cb890949194611141565b925f610c9d565b84513d87823e3d90fd5b8451821686528d9850899750948501949390930192600190910190610c71565b8980fd5b8092508a8092503d8311610d26575b610d068183611185565b81010312610d2257518281168103610d22578690610c2d610c13565b8a80fd5b503d610cfc565b8a513d8d823e3d90fd5b8382346102ee57816003193601126102ee5760209060ff60055460a01c169051908152f35b8382346102ee57816003193601126102ee57600a5490516001600160a01b039091168152602090f35b8390346102ee5760603660031901126102ee57610da06110b9565b610da86110d3565b91846044359460018060a01b038416815260016020528181203382526020522054905f198203610de1575b6020866103ba87878761132e565b848210610e0a5750918391610dff602096956103ba950333836111c8565b919394819350610dd3565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b8382346102ee57816003193601126102ee5760209060ff60155460081c1690519015158152f35b8382346102ee57816003193601126102ee576020906002549051908152f35b8382346102ee57816003193601126102ee5760075490516001600160a01b039091168152602090f35b9091503461029d57602036600319011261029d57803591610edb6110e9565b82151580610f2b575b15610ef1575050600d5580f35b906020606492519162461bcd60e51b835282015260146024820152730496e76616c6964206d61782074617820737761760641b6044820152fd5b5060647f000000000000000000000000000000000000000000000000000000000000000004831115610ee4565b8382346102ee57806003193601126102ee576020906103ba610f786110b9565b60243590336111c8565b925034610842578360031936011261084257600354600181811c9186908281168015611068575b602095868610821461105557508488529081156110335750600114610fda575b6104f386866104e9828b0383611185565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b82841061102057505050826104f3946104e992820101945f610fc9565b8054868501880152928601928101611003565b60ff191687860152505050151560051b83010192506104e9826104f35f610fc9565b634e487b7160e01b845260229052602483fd5b93607f1693610fa9565b602080825282518183018190529093925f5b8281106110a557505060409293505f838284010152601f8019910116010190565b818101860151848201604001528501611084565b600435906001600160a01b03821682036110cf57565b5f80fd5b602435906001600160a01b03821682036110cf57565b6005546001600160a01b031633036110fd57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b67ffffffffffffffff811161115557604052565b634e487b7160e01b5f52604160045260245ffd5b6060810190811067ffffffffffffffff82111761115557604052565b90601f8019910116810190811067ffffffffffffffff82111761115557604052565b919082018092116111b457565b634e487b7160e01b5f52601160045260245ffd5b6001600160a01b0390811691821561127557169182156112255760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b156112cd57565b60405162461bcd60e51b815260206004820152602560248201527f5377617020616d6f756e742065786365656473207468652077616c6c6574206c60448201526434b6b4ba1760d91b6064820152608490fd5b5f1981146111b45760010190565b60055490926001600160a01b03929183851691908416828114908115611945575b508015611938575b8015611929575b8015611920575b8015611911575b6119055760088481541680156118d157821561187a5760ff601554831c1615908161186b575b8161184b575b5061183e575b60095480830290838204036111b45761271090049485936113bf8585611abe565b601554909381811c60ff16158080611831575b80611822575b80611816575b80611806575b6117e7575b806117c5575b61175d575b5483169082821490818061174e575b156116f6575b50806116e6575b156114745750509161144461143a8695936114579561145e98165f525f60205260405f20546111a7565b60135410156112c6565b61144f600f54611320565b600f55611abe565b9084611951565b80611467575050565b611472913090611951565b565b909180935086161490816116db575b50611498575b5061145e929161145791611abe565b5f3081526020908082526040908181205493600a549460ff8660a01c1615806116d0575b806116c3575b6114d1575b5050505050611489565b600e5443116116b6575b60105460115411156114c7579091929394959650600d54908181115f146116ae5750935b60ff60a01b19958616600160a01b17600a5583519461151d86611169565b6002865281860191853684373061153388611acb565b52836007541686516315ab88c960e31b81528281600481855afa9081156116a4579084918891611664575b509161156e9287610c238c611aec565b836007541693843b156116605785949287989492985198899563791ac94760e01b875260a4870192600488015287602488015260a060448801525180925260c48601939287905b8382106116415750505050508383809230606483015242608483015203925af19182156116375750509261145792869261145e9695611628575b50600a5416600a554780611619575b5061160a601054611320565b601055918193945f80806114c7565b61162290611afc565b5f6115fe565b61163190611141565b5f6115ef565b51903d90823e3d90fd5b8451811686528998508b975094820194938201936001909101906115b5565b8580fd5b809250848092503d831161169d575b61167d8183611185565b810103126116995751858116810361169957839061156e61155e565b8680fd5b503d611673565b88513d89823e3d90fd5b9050936114ff565b8260105543600e556114db565b50600f54600c54106114c2565b50600b5481116114bc565b90503014155f611483565b5082600754168388161415611410565b60ff91975016156117095787955f611409565b60405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606490fd5b508460075416858a1614611403565b9550601254841161176f5787956113f4565b60405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608490fd5b50838154168314806117d8575b156113ef565b508360075416848916146117d2565b8489165f525f60205261180161143a8760405f20546111a7565b6113e9565b508460075416858a1614156113e4565b5030858a1614156113de565b5084825416858a1614156113d8565b50848254168414156113d2565b611846611ba4565b61139e565b905083148061185c575b155f611398565b50846007541685851614611855565b600f5460145411159150611392565b60405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608490fd5b60405162461bcd60e51b815260206004820152600c60248201526b14185a5c881b9bdd081cd95d60a21b6044820152606490fd5b92505061147292611951565b5083600a54168484161461136c565b50308214611365565b5083600654168484161461135e565b5083600654168214611357565b9050848416145f61134f565b6001600160a01b03908116918215611a6b5716918215611a1a575f828152806020526040812054918083106119c657604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b919082039182116111b457565b805115611ad85760200190565b634e487b7160e01b5f52603260045260245ffd5b805160011015611ad85760400190565b5f808080809460018060a01b03600a54165af1903d15611b9e573d9067ffffffffffffffff8211611b8a5760405191611b3f601f8201601f191660200184611185565b825260203d92013e5b15611b4f57565b60405162461bcd60e51b815260206004820152601360248201527211551208151c985b9cd9995c8819985a5b1959606a1b6044820152606490fd5b634e487b7160e01b81526041600452602490fd5b50611b48565b60155460ff8160081c16611c31577f000000000000000000000000000000000000000000000000000000000000000060138190556012557f000000000000000000000000000000000000000000000000000000000000000060095561ff001916610100176015557f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef5f80a1565b60405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d1cc8185b1c9958591e481c995b5bdd995960521b6044820152606490fdfea26469706673582212204b127b8c8d88dc23851f0b776cec018c3cd8cd6d759dd440d07e88d10cd1e29d64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002011f93bf7518fb875f6afb4ae311ee6cc046ace000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037473740000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060409080825260049182361015610022575b5050503615610020575f80fd5b005b5f92833560e01c92836306fdde0314610f8257508263095ea7b314610f5857826309df275e14610ebc5782631694505e14610e9357826318160ddd14610e745782631d6f965514610e4d57826323b872dd14610d855782632dc0562d14610d5c578263313ce56714610d3757826332424aa314610d3757826338347fa414610b375782633950935114610aea57826340c10f19146109775782634ada218b146109535782634dd7c8bf1461091857826362997f8c146108f957826364a3f2cf146108da57826370a08231146108a3578263715018a61461084657826374c9f60314610799578263751039fc146107785782637e5cd5c1146107285782638187f5161461062f5782638a8c523c146105e25782638da5cb5b146105b95782639340b21e1461059057826395d89b411461048d578263a457c2d7146103ea578263a8aa1b31146103c1578263a9059cbb14610390578263afbcf8a7146102f2578263dd62ed3e146102a1578263f2fde38b146101d057505063f4293890146101a9578080610013565b346101cd57806003193601126101cd576101c16110e9565b6101ca47611afc565b80f35b80fd5b9091503461029d57602036600319011261029d576101ec6110b9565b906101f56110e9565b6001600160a01b0391821692831561024b575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b8382346102ee57806003193601126102ee576020916102be6110b9565b826102c76110d3565b6001600160a01b03928316845260018652922091165f908152908352819020549051908152f35b5080fd5b9091503461029d578160031936011261029d578035916103106110e9565b82151580610363575b1561032c575050600b55602435600c5580f35b906020606492519162461bcd60e51b83528201526011602482015270125b9d985b1a59081d1a1c995cda1bdb19607a1b6044820152fd5b5060647f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000004831115610319565b8382346102ee57806003193601126102ee576020906103ba6103b06110b9565b602435903361132e565b5160018152f35b8382346102ee57816003193601126102ee5760085490516001600160a01b039091168152602090f35b83346101cd57826003193601126101cd576104036110b9565b91836024359233815260016020522060018060a01b0384165f52602052835f20549082821061043c576020856103ba85850387336111c8565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b8382346102ee57816003193601126102ee57805191809380549160019083821c92828516948515610586575b60209586861081146105735785895290811561054f57506001146104f7575b6104f387876104e9828c0383611185565b5191829182611072565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061053c57505050826104f3946104e9928201019486806104d8565b805486850188015292860192810161051e565b60ff19168887015250505050151560051b83010192506104e9826104f386806104d8565b634e487b7160e01b845260228352602484fd5b93607f16936104b9565b8382346102ee57816003193601126102ee5760065490516001600160a01b039091168152602090f35b8382346102ee57816003193601126102ee5760055490516001600160a01b039091168152602090f35b83346101cd57806003193601126101cd576105fb6110e9565b600160ff1960155416176015557f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c78180a180f35b91503461029d57602036600319011261029d5761064a6110b9565b6106526110e9565b600854906001600160a01b03908183166106e557169283156106ab57506001600160a01b0319168217600855519081527fc4a4ea6abc08bd7f8df3db8a1c998f19b3e0c348176f93732cd54db1a4b5013690602090a180f35b606490602084519162461bcd60e51b83528201526014602482015273496e76616c69642070616972206164647265737360601b6044820152fd5b835162461bcd60e51b8152602081870152601860248201527f50616972206164647265737320616c72656164792073657400000000000000006044820152606490fd5b83346101cd57806003193601126101cd576107416110e9565b600680546001600160a01b03191690557faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb78180a180f35b83346101cd57806003193601126101cd576107916110e9565b6101ca611ba4565b91503461029d57602036600319011261029d5781356001600160a01b0381169290839003610842576107c96110e9565b821561080f5750600a80546001600160a01b03191683179055519081527f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c790602090a180f35b6020606492519162461bcd60e51b8352820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b6044820152fd5b8380fd5b83346101cd57806003193601126101cd5761085f6110e9565b600580546001600160a01b031981169091555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b8382346102ee5760203660031901126102ee5760209181906001600160a01b036108cb6110b9565b16815280845220549051908152f35b8382346102ee57816003193601126102ee576020906009549051908152f35b8382346102ee57816003193601126102ee57602090600d549051908152f35b8382346102ee57816003193601126102ee57602090517f00000000000000000000000000000000000000000000000000000000000000648152f35b8382346102ee57816003193601126102ee5760209060ff6015541690519015158152f35b91503461029d578060031936011261029d576109916110b9565b6006546024359291906001600160a01b039081163303610aae57600254916109b985846111a7565b7f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000010610a755716938415610a325750827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92610a1887956020946111a7565b60025585855284835280852082815401905551908152a380f35b606490602084519162461bcd60e51b8352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b835162461bcd60e51b8152602081880152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606490fd5b825162461bcd60e51b815260208187015260166024820152754e6f7420746865206d696e7420617574686f7269747960501b6044820152606490fd5b8382346102ee57806003193601126102ee576103ba60209282610b0b6110b9565b91338152600186522060018060a01b0382165f528452610b30602435845f20546111a7565b90336111c8565b9091503461029d578260031936011261029d57610b526110e9565b3083526020908382528284205480610ba8575b50504780610b71578380f35b7fa0abd5a76d450569e125a8a0ebe34b8394c2d8ba1b56a25a46ff2df2d3a3704392610b9c82611afc565b51908152a15f80808380f35b600a805460ff60a01b19908116600160a01b1790915584519092610bcb82611169565b60028252848201908636833730610be184611acb565b5260075487516315ab88c960e31b81526001600160a01b039182169088818581855afa8015610d2d5787918c91610ced575b5091610c2d9284610c2389611aec565b91169052306111c8565b806007541693843b15610ce957949290899492895196879563791ac94760e01b875260a487019287015286602487015260a060448701525180915260c48501929186905b8a838310610cc95750505050508383809230606483015242608483015203925af18015610cbf57610cac575b50600a5416600a555f80610b65565b610cb890949194611141565b925f610c9d565b84513d87823e3d90fd5b8451821686528d9850899750948501949390930192600190910190610c71565b8980fd5b8092508a8092503d8311610d26575b610d068183611185565b81010312610d2257518281168103610d22578690610c2d610c13565b8a80fd5b503d610cfc565b8a513d8d823e3d90fd5b8382346102ee57816003193601126102ee5760209060ff60055460a01c169051908152f35b8382346102ee57816003193601126102ee57600a5490516001600160a01b039091168152602090f35b8390346102ee5760603660031901126102ee57610da06110b9565b610da86110d3565b91846044359460018060a01b038416815260016020528181203382526020522054905f198203610de1575b6020866103ba87878761132e565b848210610e0a5750918391610dff602096956103ba950333836111c8565b919394819350610dd3565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b8382346102ee57816003193601126102ee5760209060ff60155460081c1690519015158152f35b8382346102ee57816003193601126102ee576020906002549051908152f35b8382346102ee57816003193601126102ee5760075490516001600160a01b039091168152602090f35b9091503461029d57602036600319011261029d57803591610edb6110e9565b82151580610f2b575b15610ef1575050600d5580f35b906020606492519162461bcd60e51b835282015260146024820152730496e76616c6964206d61782074617820737761760641b6044820152fd5b5060647f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000004831115610ee4565b8382346102ee57806003193601126102ee576020906103ba610f786110b9565b60243590336111c8565b925034610842578360031936011261084257600354600181811c9186908281168015611068575b602095868610821461105557508488529081156110335750600114610fda575b6104f386866104e9828b0383611185565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b82841061102057505050826104f3946104e992820101945f610fc9565b8054868501880152928601928101611003565b60ff191687860152505050151560051b83010192506104e9826104f35f610fc9565b634e487b7160e01b845260229052602483fd5b93607f1693610fa9565b602080825282518183018190529093925f5b8281106110a557505060409293505f838284010152601f8019910116010190565b818101860151848201604001528501611084565b600435906001600160a01b03821682036110cf57565b5f80fd5b602435906001600160a01b03821682036110cf57565b6005546001600160a01b031633036110fd57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b67ffffffffffffffff811161115557604052565b634e487b7160e01b5f52604160045260245ffd5b6060810190811067ffffffffffffffff82111761115557604052565b90601f8019910116810190811067ffffffffffffffff82111761115557604052565b919082018092116111b457565b634e487b7160e01b5f52601160045260245ffd5b6001600160a01b0390811691821561127557169182156112255760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b156112cd57565b60405162461bcd60e51b815260206004820152602560248201527f5377617020616d6f756e742065786365656473207468652077616c6c6574206c60448201526434b6b4ba1760d91b6064820152608490fd5b5f1981146111b45760010190565b60055490926001600160a01b03929183851691908416828114908115611945575b508015611938575b8015611929575b8015611920575b8015611911575b6119055760088481541680156118d157821561187a5760ff601554831c1615908161186b575b8161184b575b5061183e575b60095480830290838204036111b45761271090049485936113bf8585611abe565b601554909381811c60ff16158080611831575b80611822575b80611816575b80611806575b6117e7575b806117c5575b61175d575b5483169082821490818061174e575b156116f6575b50806116e6575b156114745750509161144461143a8695936114579561145e98165f525f60205260405f20546111a7565b60135410156112c6565b61144f600f54611320565b600f55611abe565b9084611951565b80611467575050565b611472913090611951565b565b909180935086161490816116db575b50611498575b5061145e929161145791611abe565b5f3081526020908082526040908181205493600a549460ff8660a01c1615806116d0575b806116c3575b6114d1575b5050505050611489565b600e5443116116b6575b60105460115411156114c7579091929394959650600d54908181115f146116ae5750935b60ff60a01b19958616600160a01b17600a5583519461151d86611169565b6002865281860191853684373061153388611acb565b52836007541686516315ab88c960e31b81528281600481855afa9081156116a4579084918891611664575b509161156e9287610c238c611aec565b836007541693843b156116605785949287989492985198899563791ac94760e01b875260a4870192600488015287602488015260a060448801525180925260c48601939287905b8382106116415750505050508383809230606483015242608483015203925af19182156116375750509261145792869261145e9695611628575b50600a5416600a554780611619575b5061160a601054611320565b601055918193945f80806114c7565b61162290611afc565b5f6115fe565b61163190611141565b5f6115ef565b51903d90823e3d90fd5b8451811686528998508b975094820194938201936001909101906115b5565b8580fd5b809250848092503d831161169d575b61167d8183611185565b810103126116995751858116810361169957839061156e61155e565b8680fd5b503d611673565b88513d89823e3d90fd5b9050936114ff565b8260105543600e556114db565b50600f54600c54106114c2565b50600b5481116114bc565b90503014155f611483565b5082600754168388161415611410565b60ff91975016156117095787955f611409565b60405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606490fd5b508460075416858a1614611403565b9550601254841161176f5787956113f4565b60405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608490fd5b50838154168314806117d8575b156113ef565b508360075416848916146117d2565b8489165f525f60205261180161143a8760405f20546111a7565b6113e9565b508460075416858a1614156113e4565b5030858a1614156113de565b5084825416858a1614156113d8565b50848254168414156113d2565b611846611ba4565b61139e565b905083148061185c575b155f611398565b50846007541685851614611855565b600f5460145411159150611392565b60405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608490fd5b60405162461bcd60e51b815260206004820152600c60248201526b14185a5c881b9bdd081cd95d60a21b6044820152606490fd5b92505061147292611951565b5083600a54168484161461136c565b50308214611365565b5083600654168484161461135e565b5083600654168214611357565b9050848416145f61134f565b6001600160a01b03908116918215611a6b5716918215611a1a575f828152806020526040812054918083106119c657604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b919082039182116111b457565b805115611ad85760200190565b634e487b7160e01b5f52603260045260245ffd5b805160011015611ad85760400190565b5f808080809460018060a01b03600a54165af1903d15611b9e573d9067ffffffffffffffff8211611b8a5760405191611b3f601f8201601f191660200184611185565b825260203d92013e5b15611b4f57565b60405162461bcd60e51b815260206004820152601360248201527211551208151c985b9cd9995c8819985a5b1959606a1b6044820152606490fd5b634e487b7160e01b81526041600452602490fd5b50611b48565b60155460ff8160081c16611c31577f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000060138190556012557f000000000000000000000000000000000000000000000000000000000000006460095561ff001916610100176015557f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef5f80a1565b60405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d1cc8185b1c9958591e481c995b5bdd995960521b6044820152606490fdfea26469706673582212204b127b8c8d88dc23851f0b776cec018c3cd8cd6d759dd440d07e88d10cd1e29d64736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000010000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002011f93bf7518fb875f6afb4ae311ee6cc046ace000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037473740000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): test
Arg [1] : symbol (string): tst
Arg [2] : _totalSupply (uint256): 1000000000
Arg [3] : _tokenDecimals (uint256): 18
Arg [4] : _initWalletLimit (uint256): 10
Arg [5] : _initMaxTx (uint256): 100
Arg [6] : _limitDuration (uint256): 1
Arg [7] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [8] : _taxWallet (address): 0x2011f93bf7518Fb875f6afb4aE311eE6cC046Ace
Arg [9] : _launchTax (uint256): 100
Arg [10] : _finalTax (uint256): 100
Arg [11] : _taxSwapLimitPerBlock (uint256): 5
Arg [12] : _minTaxSwapThresholdBps (uint256): 10
Arg [13] : _preventTaxSwapBeforeBuys (uint256): 1

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [8] : 0000000000000000000000002011f93bf7518fb875f6afb4ae311ee6cc046ace
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [15] : 7465737400000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [17] : 7473740000000000000000000000000000000000000000000000000000000000


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.