ETH Price: $2,507.12 (-0.07%)

Token

Cookie Monster (COOKIE)
 

Overview

Max Total Supply

100,000,000,000 COOKIE

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
804,110,075.168564699809658999 COOKIE

Value
$0.00
0x20c6e0dab90e479d50460274a855a39aa1bcd957
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:
Cookie

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 6 : Contract.sol
/**

 Official Links 🔥

  TG: https://t.me/cookiecoin_portal

  Website: https://cookiecoin.vip/

  Twitter: https://twitter.com/cookie_Erc20

**/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract Ownable {
    address private _owner;

    constructor() {
        _owner = msg.sender;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _owner = address(0);
    }
}

library SafeERC20 {
    function safeTransfer(address token, address to, uint256 value) internal {
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(IERC20.transfer.selector, to, value)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "TransferHelper: INTERNAL TRANSFER_FAILED"
        );
    }
}

interface IERC20 {
    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external;
}

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

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

    function WETH() external pure returns (address);

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

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

contract Cookie is Ownable {
    string private constant _name = unicode"Cookie Monster";
    string private constant _symbol = unicode"COOKIE";
    uint256 private constant _totalSupply = 100_000_000_000 * 1e18;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount = (_totalSupply * 2) / 10000;
    address public immutable WETH;

    address private startLiquidityWallet;
    address private airdropWallet = 0xD591169e05af9284C581d9CCf7F418c0266FDc32;
    address private CookieTreasuryWallet =
        0xfa943eD3E57030A6c10924bF45D3eec5e4fbb30E;
    address private marketMakingWallet =
        0xc35C9e7021fe842C48a25Ed5121119A0d893992E;
    address private partnerWallet = 0x284523a542e93A3a90303Ff4f17CEB6f1da92c24;
    address private communityWallet =
        0x7A7ce33F4785DC1543F25932f154A244156424bF;

    uint8 public buyTotalFees = 6;
    uint8 public sellTotalFees = 6;

    uint8 public startLiquidityFee = 25;
    uint8 public airdropFee = 25;
    uint8 public CookieTreasuryFee = 28;
    uint8 public marketMakingFee = 12;
    uint8 public parnerFee = 5;
    uint8 public communityFee = 5;

    bool private swapping;
    bool public limitsInEffect = true;
    bool private launched;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

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

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

    constructor() {
        WETH = uniswapV2Router.WETH();
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            WETH
        );
        automatedMarketMakerPairs[uniswapV2Pair] = true;

        startLiquidityWallet = owner();

        maxWallet = (_totalSupply * 25) / 1000;
        maxTransactionAmount = (_totalSupply * 25) / 1000;

        setExcludedFromFees(owner(), true);
        setExcludedFromFees(address(this), true);
        setExcludedFromFees(address(0xdead), true);
        setExcludedFromFees(startLiquidityWallet, true);
        setExcludedFromFees(airdropWallet, true);
        setExcludedFromFees(CookieTreasuryWallet, true);
        setExcludedFromFees(marketMakingWallet, true);
        setExcludedFromFees(partnerWallet, true);
        setExcludedFromFees(communityWallet, true);

        setExcludedFromMaxTransaction(owner(), true);
        setExcludedFromMaxTransaction(address(uniswapV2Router), true);
        setExcludedFromMaxTransaction(address(this), true);
        setExcludedFromMaxTransaction(address(0xdead), true);
        setExcludedFromMaxTransaction(address(uniswapV2Pair), true);
        setExcludedFromMaxTransaction(startLiquidityWallet, true);
        setExcludedFromMaxTransaction(airdropWallet, true);
        setExcludedFromMaxTransaction(CookieTreasuryWallet, true);
        setExcludedFromMaxTransaction(marketMakingWallet, true);
        setExcludedFromMaxTransaction(partnerWallet, true);
        setExcludedFromMaxTransaction(communityWallet, true);

        _balances[startLiquidityWallet] = (_totalSupply * 25) / 100;
        emit Transfer(
            address(0),
            startLiquidityWallet,
            _balances[startLiquidityWallet]
        );

        _balances[airdropWallet] = (_totalSupply * 25) / 100;
        emit Transfer(address(0), airdropWallet, _balances[airdropWallet]);

        _balances[CookieTreasuryWallet] = (_totalSupply * 28) / 100;
        emit Transfer(
            address(0),
            CookieTreasuryWallet,
            _balances[CookieTreasuryWallet]
        );

        _balances[marketMakingWallet] = (_totalSupply * 12) / 100;
        emit Transfer(
            address(0),
            marketMakingWallet,
            _balances[marketMakingWallet]
        );

        _balances[partnerWallet] = (_totalSupply * 5) / 100;
        emit Transfer(address(0), partnerWallet, _balances[partnerWallet]);

        _balances[communityWallet] = (_totalSupply * 5) / 100;
        emit Transfer(address(0), communityWallet, _balances[communityWallet]);

        _approve(address(this), address(uniswapV2Router), type(uint256).max);
    }

    receive() external payable {}

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

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

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

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

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

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

    function approve(address spender, uint256 amount) external returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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 transfer(
        address recipient,
        uint256 amount
    ) external returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool) {
        uint256 currentAllowance = _allowances[sender][msg.sender];
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: transfer amount exceeds allowance"
            );
            unchecked {
                _approve(sender, msg.sender, currentAllowance - amount);
            }
        }

        _transfer(sender, recipient, amount);

        return true;
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (
            !launched &&
            (from != owner() && from != address(this) && to != owner())
        ) {
            revert("Trading not enabled");
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTx"
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                } else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTx"
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 senderBalance = _balances[from];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
            } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
            }

            if (fees > 0) {
                unchecked {
                    amount = amount - fees;
                    _balances[from] -= fees;
                    _balances[address(this)] += fees;
                }
                emit Transfer(from, address(this), fees);
            }
        }
        unchecked {
            _balances[from] -= amount;
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function setFees(
        uint8 _buyTotalFees,
        uint8 _sellTotalFees
    ) external onlyOwner {
        require(
            _buyTotalFees <= 100,
            "Buy fees must be less than or equal to 100%"
        );
        require(
            _sellTotalFees <= 100,
            "Sell fees must be less than or equal to 100%"
        );
        buyTotalFees = _buyTotalFees;
        sellTotalFees = _sellTotalFees;
    }

    function setExcludedFromFees(
        address account,
        bool excluded
    ) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function setExcludedFromMaxTransaction(
        address account,
        bool excluded
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[account] = excluded;
    }

    function airdropWallets(
        address[] memory addresses,
        uint256[] memory amounts
    ) external onlyOwner {
        require(!launched, "Already launched");
        for (uint256 i = 0; i < addresses.length; i++) {
            require(
                _balances[msg.sender] >= amounts[i],
                "ERC20: transfer amount exceeds balance"
            );
            _balances[addresses[i]] += amounts[i];
            _balances[msg.sender] -= amounts[i];
            emit Transfer(msg.sender, addresses[i], amounts[i]);
        }
    }

    function openTrading() external onlyOwner {
        require(!launched, "Already launched");
        launched = true;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) external onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed");
        automatedMarketMakerPairs[pair] = value;
    }

    function setSwapAtAmount(uint256 newSwapAmount) external onlyOwner {
        require(
            newSwapAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% of the supply"
        );
        require(
            newSwapAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% of the supply"
        );
        swapTokensAtAmount = newSwapAmount;
    }

    function setMaxTxnAmount(uint256 newMaxTx) external onlyOwner {
        require(
            newMaxTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set max transaction lower than 0.1%"
        );
        maxTransactionAmount = newMaxTx * (10 ** 18);
    }

    function setMaxWalletAmount(uint256 newMaxWallet) external onlyOwner {
        require(
            newMaxWallet >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set max wallet lower than 0.1%"
        );
        maxWallet = newMaxWallet * (10 ** 18);
    }

    function excludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function withdrawStuckToken(address token, address to) external onlyOwner {
        uint256 _contractBalance = IERC20(token).balanceOf(address(this));
        SafeERC20.safeTransfer(token, to, _contractBalance); // Use safeTransfer
    }

    function withdrawStuckETH(address addr) external onlyOwner {
        require(addr != address(0), "Invalid address");

        (bool success, ) = addr.call{ value: address(this).balance }("");
        require(success, "Withdrawal failed");
    }

    function swapBack() private {
        uint256 swapThreshold = swapTokensAtAmount;
        bool success;

        if (balanceOf(address(this)) > swapTokensAtAmount * 20) {
            swapThreshold = swapTokensAtAmount * 20;
        }

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapThreshold,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            uint256 ethForStartLiquidity = (ethBalance * startLiquidityFee) /
                100;
            uint256 ethForairdrop = (ethBalance * airdropFee) / 100;
            uint256 ethForCookieTreasury = (ethBalance * CookieTreasuryFee) /
                100;
            uint256 ethForMarketMaking = (ethBalance * marketMakingFee) / 100;
            uint256 ethForPartner = (ethBalance * parnerFee) / 100;
            uint256 ethForCommunity = ethBalance -
                ethForStartLiquidity -
                ethForairdrop -
                ethForCookieTreasury -
                marketMakingFee -
                parnerFee;

            (success, ) = address(startLiquidityWallet).call{
                value: ethForStartLiquidity
            }("");
            (success, ) = address(airdropWallet).call{ value: ethForairdrop }(
                ""
            );
            (success, ) = address(CookieTreasuryWallet).call{
                value: ethForCookieTreasury
            }("");
            (success, ) = address(marketMakingWallet).call{
                value: ethForMarketMaking
            }("");
            (success, ) = address(partnerWallet).call{ value: ethForPartner }(
                ""
            );
            (success, ) = address(communityWallet).call{
                value: ethForCommunity
            }("");

            emit SwapAndLiquify(swapThreshold);
        }
    }
}

File 2 of 6 : ERC20.sol
// 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 {}
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 6 : IERC20.sol
// 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);
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 6 : TestERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract TestERC20 is ERC20 {
    constructor() ERC20("TestERC20", "MTK") {}

    function mint(uint256 amount) external {
        _mint(_msgSender(), amount);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"}],"name":"SwapAndLiquify","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":"CookieTreasuryFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketMakingFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parnerFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"_sellTotalFees","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startLiquidityFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052612710620000216c01431e0fae6d7217caa0000000600262000a53565b6200002d919062000a7f565b600355600580546001600160a01b031990811673d591169e05af9284c581d9ccf7f418c0266fdc321790915560068054821673fa943ed3e57030a6c10924bf45d3eec5e4fbb30e17905560078054821673c35c9e7021fe842c48a25ed5121119a0d893992e1790556008805490911673284523a542e93a3a90303ff4f17ceb6f1da92c24179055600980547d010005050c1c191906067a7ce33f4785dc1543f25932f154a244156424bf600161ff0160e01b0319909116179055348015620000f457600080fd5b50600080546001600160a01b03191633179055604080516315ab88c960e31b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c46489160048083019260209291908290030181865afa15801562000158573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017e919062000aa2565b6001600160a01b03166080526040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa158015620001db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000201919062000aa2565b6080516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000253573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000279919062000aa2565b6001600160a01b031660a08190526000908152600e60205260409020805460ff19166001179055620002b36000546001600160a01b031690565b600480546001600160a01b0319166001600160a01b03929092169190911790556103e8620002f06c01431e0fae6d7217caa0000000601962000a53565b620002fc919062000a7f565b6002556103e86200031c6c01431e0fae6d7217caa0000000601962000a53565b62000328919062000a7f565b6001556200034a620003426000546001600160a01b031690565b60016200081b565b620003573060016200081b565b6200036661dead60016200081b565b6004546200037f906001600160a01b031660016200081b565b60055462000398906001600160a01b031660016200081b565b600654620003b1906001600160a01b031660016200081b565b600754620003ca906001600160a01b031660016200081b565b600854620003e3906001600160a01b031660016200081b565b600954620003fc906001600160a01b031660016200081b565b6200041b620004136000546001600160a01b031690565b6001620008a5565b6200043c737a250d5630b4cf539739df2c5dacb4c659f2488d6001620008a5565b62000449306001620008a5565b6200045861dead6001620008a5565b60a05162000468906001620008a5565b60045462000481906001600160a01b03166001620008a5565b6005546200049a906001600160a01b03166001620008a5565b600654620004b3906001600160a01b03166001620008a5565b600754620004cc906001600160a01b03166001620008a5565b600854620004e5906001600160a01b03166001620008a5565b600954620004fe906001600160a01b03166001620008a5565b60646200051a6c01431e0fae6d7217caa0000000601962000a53565b62000526919062000a7f565b600480546001600160a01b039081166000908152600a60205260408082209490945591541680825282822054925190926000805160206200334f833981519152916200057491815260200190565b60405180910390a36064620005986c01431e0fae6d7217caa0000000601962000a53565b620005a4919062000a7f565b600580546001600160a01b039081166000908152600a60205260408082209490945591541680825282822054925190926000805160206200334f83398151915291620005f291815260200190565b60405180910390a36064620006166c01431e0fae6d7217caa0000000601c62000a53565b62000622919062000a7f565b600680546001600160a01b039081166000908152600a60205260408082209490945591541680825282822054925190926000805160206200334f833981519152916200067091815260200190565b60405180910390a36064620006946c01431e0fae6d7217caa0000000600c62000a53565b620006a0919062000a7f565b600780546001600160a01b039081166000908152600a60205260408082209490945591541680825282822054925190926000805160206200334f83398151915291620006ee91815260200190565b60405180910390a36064620007126c01431e0fae6d7217caa0000000600562000a53565b6200071e919062000a7f565b600880546001600160a01b039081166000908152600a60205260408082209490945591541680825282822054925190926000805160206200334f833981519152916200076c91815260200190565b60405180910390a36064620007906c01431e0fae6d7217caa0000000600562000a53565b6200079c919062000a7f565b600980546001600160a01b039081166000908152600a60205260408082209490945591541680825282822054925190926000805160206200334f83398151915291620007ea91815260200190565b60405180910390a36200081530737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200092b565b62000ad4565b336200082f6000546001600160a01b031690565b6001600160a01b0316146200087a5760405162461bcd60e51b815260206004820181905260248201526000805160206200332f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b33620008b96000546001600160a01b031690565b6001600160a01b031614620009005760405162461bcd60e51b815260206004820181905260248201526000805160206200332f833981519152604482015260640162000871565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b0383166200098f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000871565b6001600160a01b038216620009f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000871565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b808202811582820484141762000a7957634e487b7160e01b600052601160045260246000fd5b92915050565b60008262000a9d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121562000ab557600080fd5b81516001600160a01b038116811462000acd57600080fd5b9392505050565b60805160a05161282762000b08600039600081816103df0152610eb301526000818161067e0152611e8901526128276000f3fe6080604052600436106102345760003560e01c806374010ece1161012e578063bc205ad3116100ab578063d85ba0631161006f578063d85ba0631461072c578063dd62ed3e1461074d578063e2f4560514610793578063e7107947146107a9578063f8b45b05146107c957600080fd5b8063bc205ad3146106a0578063c8c8ebe4146106c0578063c9567bf9146106d6578063cfe2ed1c146106eb578063d201b01e1461070c57600080fd5b806395d89b41116100f257806395d89b41146105dc578063986244551461060b5780639a7a23d61461062c578063a9059cbb1461064c578063ad5c46481461066c57600080fd5b806374010ece1461052f578063751039fc1461054f57806385ecafd7146105645780638961be6b1461059d5780638da5cb5b146105be57600080fd5b806349bd5a5e116101bc5780636402511e116101805780636402511e1461048357806366650dae146104a35780636a486a8e146104c357806370a08231146104e4578063715018a61461051a57600080fd5b806349bd5a5e146103cd5780634a62bb65146104015780634cbc236b146104225780634fcd244614610443578063590ffdce1461046357600080fd5b806323b872dd1161020357806323b872dd1461032357806327a14fc2146103435780632b47971114610365578063313ce567146103985780633d6c3d2e146103ac57600080fd5b806306fdde0314610240578063095ea7b3146102895780631694505e146102b957806318160ddd146102f957600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5060408051808201909152600e81526d21b7b7b5b4b29026b7b739ba32b960911b60208201525b60405161028091906122d3565b60405180910390f35b34801561029557600080fd5b506102a96102a4366004612322565b6107df565b6040519015158152602001610280565b3480156102c557600080fd5b506102e1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610280565b34801561030557600080fd5b506c01431e0fae6d7217caa00000005b604051908152602001610280565b34801561032f57600080fd5b506102a961033e36600461234c565b6107f6565b34801561034f57600080fd5b5061036361035e366004612388565b6108ac565b005b34801561037157600080fd5b5060095461038690600160d01b900460ff1681565b60405160ff9091168152602001610280565b3480156103a457600080fd5b506012610386565b3480156103b857600080fd5b5060095461038690600160c01b900460ff1681565b3480156103d957600080fd5b506102e17f000000000000000000000000000000000000000000000000000000000000000081565b34801561040d57600080fd5b506009546102a990600160e81b900460ff1681565b34801561042e57600080fd5b5060095461038690600160c81b900460ff1681565b34801561044f57600080fd5b5061036361045e3660046123b2565b610992565b34801561046f57600080fd5b5061036361047e3660046123f6565b610ad0565b34801561048f57600080fd5b5061036361049e366004612388565b610b34565b3480156104af57600080fd5b506103636104be3660046123f6565b610c96565b3480156104cf57600080fd5b5060095461038690600160a81b900460ff1681565b3480156104f057600080fd5b506103156104ff36600461242d565b6001600160a01b03166000908152600a602052604090205490565b34801561052657600080fd5b50610363610cfa565b34801561053b57600080fd5b5061036361054a366004612388565b610d45565b34801561055b57600080fd5b50610363610e30565b34801561057057600080fd5b506102a961057f36600461242d565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156105a957600080fd5b5060095461038690600160d81b900460ff1681565b3480156105ca57600080fd5b506000546001600160a01b03166102e1565b3480156105e857600080fd5b50604080518082019091526006815265434f4f4b494560d01b6020820152610273565b34801561061757600080fd5b5060095461038690600160b81b900460ff1681565b34801561063857600080fd5b506103636106473660046123f6565b610e78565b34801561065857600080fd5b506102a9610667366004612322565b610f5d565b34801561067857600080fd5b506102e17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106ac57600080fd5b506103636106bb36600461244f565b610f6a565b3480156106cc57600080fd5b5061031560015481565b3480156106e257600080fd5b50610363611020565b3480156106f757600080fd5b5060095461038690600160b01b900460ff1681565b34801561071857600080fd5b5061036361072736600461242d565b6110bb565b34801561073857600080fd5b5060095461038690600160a01b900460ff1681565b34801561075957600080fd5b5061031561076836600461244f565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b34801561079f57600080fd5b5061031560035481565b3480156107b557600080fd5b506103636107c436600461254f565b6111d7565b3480156107d557600080fd5b5061031560025481565b60006107ec33848461141b565b5060015b92915050565b6001600160a01b0383166000908152600b60209081526040808320338452909152812054600019811461089657828110156108895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610896853385840361141b565b6108a185858561153f565b506001949350505050565b336108bf6000546001600160a01b031690565b6001600160a01b0316146108e55760405162461bcd60e51b81526004016108809061260f565b670de0b6b3a76400006103e86109096c01431e0fae6d7217caa0000000600161265a565b6109139190612671565b61091d9190612671565b81101561097a5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d61782077616c6c6574206c6f776572207468616e60448201526420302e312560d81b6064820152608401610880565b61098c81670de0b6b3a764000061265a565b60025550565b336109a56000546001600160a01b031690565b6001600160a01b0316146109cb5760405162461bcd60e51b81526004016108809061260f565b60648260ff161115610a335760405162461bcd60e51b815260206004820152602b60248201527f4275792066656573206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b6064820152608401610880565b60648160ff161115610a9c5760405162461bcd60e51b815260206004820152602c60248201527f53656c6c2066656573206d757374206265206c657373207468616e206f72206560448201526b7175616c20746f203130302560a01b6064820152608401610880565b6009805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b33610ae36000546001600160a01b031690565b6001600160a01b031614610b095760405162461bcd60e51b81526004016108809061260f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b33610b476000546001600160a01b031690565b6001600160a01b031614610b6d5760405162461bcd60e51b81526004016108809061260f565b620186a0610b896c01431e0fae6d7217caa0000000600161265a565b610b939190612671565b811015610c005760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527420302e30303125206f662074686520737570706c7960581b6064820152608401610880565b6103e8610c1b6c01431e0fae6d7217caa0000000600561265a565b610c259190612671565b811115610c915760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152736e20302e3525206f662074686520737570706c7960601b6064820152608401610880565b600355565b33610ca96000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b81526004016108809061260f565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b33610d0d6000546001600160a01b031690565b6001600160a01b031614610d335760405162461bcd60e51b81526004016108809061260f565b600080546001600160a01b0319169055565b33610d586000546001600160a01b031690565b6001600160a01b031614610d7e5760405162461bcd60e51b81526004016108809061260f565b670de0b6b3a76400006103e8610da26c01431e0fae6d7217caa0000000600161265a565b610dac9190612671565b610db69190612671565b811015610e185760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178207472616e73616374696f6e206c6f776572604482015269207468616e20302e312560b01b6064820152608401610880565b610e2a81670de0b6b3a764000061265a565b60015550565b33610e436000546001600160a01b031690565b6001600160a01b031614610e695760405162461bcd60e51b81526004016108809061260f565b6009805460ff60e81b19169055565b33610e8b6000546001600160a01b031690565b6001600160a01b031614610eb15760405162461bcd60e51b81526004016108809061260f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610f325760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f7665640000000000006044820152606401610880565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60006107ec33848461153f565b33610f7d6000546001600160a01b031690565b6001600160a01b031614610fa35760405162461bcd60e51b81526004016108809061260f565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100e9190612693565b905061101b838383611ccf565b505050565b336110336000546001600160a01b031690565b6001600160a01b0316146110595760405162461bcd60e51b81526004016108809061260f565b600954600160f01b900460ff16156110a65760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610880565b6009805460ff60f01b1916600160f01b179055565b336110ce6000546001600160a01b031690565b6001600160a01b0316146110f45760405162461bcd60e51b81526004016108809061260f565b6001600160a01b03811661113c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610880565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611189576040519150601f19603f3d011682016040523d82523d6000602084013e61118e565b606091505b50509050806111d35760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610880565b5050565b336111ea6000546001600160a01b031690565b6001600160a01b0316146112105760405162461bcd60e51b81526004016108809061260f565b600954600160f01b900460ff161561125d5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610880565b60005b825181101561101b5781818151811061127b5761127b6126ac565b6020026020010151600a6000336001600160a01b03166001600160a01b031681526020019081526020016000205410156112c75760405162461bcd60e51b8152600401610880906126c2565b8181815181106112d9576112d96126ac565b6020026020010151600a60008584815181106112f7576112f76126ac565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082825461132e9190612708565b92505081905550818181518110611347576113476126ac565b6020026020010151600a6000336001600160a01b03166001600160a01b031681526020019081526020016000206000828254611383919061271b565b9250508190555082818151811061139c5761139c6126ac565b60200260200101516001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8484815181106113ea576113ea6126ac565b602002602001015160405161140191815260200190565b60405180910390a3806114138161272e565b915050611260565b6001600160a01b03831661147d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610880565b6001600160a01b0382166114de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610880565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610880565b6001600160a01b0382166116055760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610880565b600081116116675760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610880565b600954600160f01b900460ff161580156116bd57506000546001600160a01b038481169116148015906116a357506001600160a01b0383163014155b80156116bd57506000546001600160a01b03838116911614155b156117005760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610880565b600954600160e81b900460ff16156119ca576000546001600160a01b0384811691161480159061173e57506000546001600160a01b03838116911614155b801561175257506001600160a01b03821615155b801561176957506001600160a01b03821661dead14155b801561177f5750600954600160e01b900460ff16155b156119ca576001600160a01b0383166000908152600e602052604090205460ff1680156117c557506001600160a01b0382166000908152600d602052604090205460ff16155b156118995760015481111561182a5760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152640dac2f0a8f60db1b6064820152608401610880565b6002546001600160a01b0383166000908152600a60205260409020546118509083612708565b11156118945760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b6119ca565b6001600160a01b0382166000908152600e602052604090205460ff1680156118da57506001600160a01b0383166000908152600d602052604090205460ff16155b15611940576001548111156118945760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265040dac2f0a8f60d31b6064820152608401610880565b6001600160a01b0382166000908152600d602052604090205460ff166119ca576002546001600160a01b0383166000908152600a60205260409020546119869083612708565b11156119ca5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b600354306000908152600a60205260409020541080159081906119f75750600954600160e01b900460ff16155b8015611a1c57506001600160a01b0384166000908152600e602052604090205460ff16155b8015611a4157506001600160a01b0384166000908152600c602052604090205460ff16155b8015611a6657506001600160a01b0383166000908152600c602052604090205460ff16155b15611a94576009805460ff60e01b1916600160e01b179055611a86611dfb565b6009805460ff60e01b191690555b6009546001600160a01b0385166000908152600c602052604090205460ff600160e01b909204821615911680611ae257506001600160a01b0384166000908152600c602052604090205460ff165b15611aeb575060005b6001600160a01b0385166000908152600a602052604090205483811015611b245760405162461bcd60e51b8152600401610880906126c2565b60008215611c5c576001600160a01b0386166000908152600e602052604090205460ff168015611b5f5750600954600160a81b900460ff1615155b15611b8f57600954606490611b7e90600160a81b900460ff168761265a565b611b889190612671565b9050611bee565b6001600160a01b0387166000908152600e602052604090205460ff168015611bc25750600954600160a01b900460ff1615155b15611bee57600954606490611be190600160a01b900460ff168761265a565b611beb9190612671565b90505b8015611c5c576001600160a01b0387166000818152600a602090815260408083208054869003905530808452928190208054860190555184815297849003979192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b6001600160a01b038088166000818152600a602052604080822080548a900390559289168082529083902080548901905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611cbe9089815260200190565b60405180910390a350505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691611d2b9190612747565b6000604051808303816000865af19150503d8060008114611d68576040519150601f19603f3d011682016040523d82523d6000602084013e611d6d565b606091505b5091509150818015611d97575080511580611d97575080806020019051810190611d979190612763565b611df45760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657248656c7065723a20494e5445524e414c205452414e5346456044820152671497d1905253115160c21b6064820152608401610880565b5050505050565b6003546000611e0b82601461265a565b306000908152600a60205260409020541115611e3257600354611e2f90601461265a565b91505b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e6757611e676126ac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611ebb57611ebb6126ac565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611f13908690600090869030904290600401612780565b600060405180830381600087803b158015611f2d57600080fd5b505af1158015611f41573d6000803e3d6000fd5b5047925050811590506122a957600954600090606490611f6b90600160b01b900460ff168461265a565b611f759190612671565b600954909150600090606490611f9590600160b81b900460ff168561265a565b611f9f9190612671565b600954909150600090606490611fbf90600160c01b900460ff168661265a565b611fc99190612671565b600954909150600090606490611fe990600160c81b900460ff168761265a565b611ff39190612671565b60095490915060009060649061201390600160d01b900460ff168861265a565b61201d9190612671565b60095490915060009060ff600160d01b8204811691600160c81b90041685876120468a8c61271b565b612050919061271b565b61205a919061271b565b612064919061271b565b61206e919061271b565b6004546040519192506001600160a01b0316908790600081818185875af1925050503d80600081146120bc576040519150601f19603f3d011682016040523d82523d6000602084013e6120c1565b606091505b5050600554604051919a506001600160a01b0316908690600081818185875af1925050503d8060008114612111576040519150601f19603f3d011682016040523d82523d6000602084013e612116565b606091505b5050600654604051919a506001600160a01b0316908590600081818185875af1925050503d8060008114612166576040519150601f19603f3d011682016040523d82523d6000602084013e61216b565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d80600081146121bb576040519150601f19603f3d011682016040523d82523d6000602084013e6121c0565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114612210576040519150601f19603f3d011682016040523d82523d6000602084013e612215565b606091505b5050600954604051919a506001600160a01b0316908290600081818185875af1925050503d8060008114612265576040519150601f19603f3d011682016040523d82523d6000602084013e61226a565b606091505b50506040518b81529099507f42c9c0bd1fc983236459b9be3c73e1bb9bcec04b2a2dafe47ffe5629d4bbc2079060200160405180910390a15050505050505b50505050565b60005b838110156122ca5781810151838201526020016122b2565b50506000910152565b60208152600082518060208401526122f28160408501602087016122af565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461231d57600080fd5b919050565b6000806040838503121561233557600080fd5b61233e83612306565b946020939093013593505050565b60008060006060848603121561236157600080fd5b61236a84612306565b925061237860208501612306565b9150604084013590509250925092565b60006020828403121561239a57600080fd5b5035919050565b803560ff8116811461231d57600080fd5b600080604083850312156123c557600080fd5b6123ce836123a1565b91506123dc602084016123a1565b90509250929050565b80151581146123f357600080fd5b50565b6000806040838503121561240957600080fd5b61241283612306565b91506020830135612422816123e5565b809150509250929050565b60006020828403121561243f57600080fd5b61244882612306565b9392505050565b6000806040838503121561246257600080fd5b61246b83612306565b91506123dc60208401612306565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124b8576124b8612479565b604052919050565b600067ffffffffffffffff8211156124da576124da612479565b5060051b60200190565b600082601f8301126124f557600080fd5b8135602061250a612505836124c0565b61248f565b82815260059290921b8401810191818101908684111561252957600080fd5b8286015b84811015612544578035835291830191830161252d565b509695505050505050565b6000806040838503121561256257600080fd5b823567ffffffffffffffff8082111561257a57600080fd5b818501915085601f83011261258e57600080fd5b8135602061259e612505836124c0565b82815260059290921b840181019181810190898411156125bd57600080fd5b948201945b838610156125e2576125d386612306565b825294820194908201906125c2565b965050860135925050808211156125f857600080fd5b50612605858286016124e4565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107f0576107f0612644565b60008261268e57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156126a557600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b808201808211156107f0576107f0612644565b818103818111156107f0576107f0612644565b60006001820161274057612740612644565b5060010190565b600082516127598184602087016122af565b9190910192915050565b60006020828403121561277557600080fd5b8151612448816123e5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127d05784516001600160a01b0316835293830193918301916001016127ab565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204302df51d762321141b618266a299e98098befaf1a5f8507eac61ef303e20ca264736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102345760003560e01c806374010ece1161012e578063bc205ad3116100ab578063d85ba0631161006f578063d85ba0631461072c578063dd62ed3e1461074d578063e2f4560514610793578063e7107947146107a9578063f8b45b05146107c957600080fd5b8063bc205ad3146106a0578063c8c8ebe4146106c0578063c9567bf9146106d6578063cfe2ed1c146106eb578063d201b01e1461070c57600080fd5b806395d89b41116100f257806395d89b41146105dc578063986244551461060b5780639a7a23d61461062c578063a9059cbb1461064c578063ad5c46481461066c57600080fd5b806374010ece1461052f578063751039fc1461054f57806385ecafd7146105645780638961be6b1461059d5780638da5cb5b146105be57600080fd5b806349bd5a5e116101bc5780636402511e116101805780636402511e1461048357806366650dae146104a35780636a486a8e146104c357806370a08231146104e4578063715018a61461051a57600080fd5b806349bd5a5e146103cd5780634a62bb65146104015780634cbc236b146104225780634fcd244614610443578063590ffdce1461046357600080fd5b806323b872dd1161020357806323b872dd1461032357806327a14fc2146103435780632b47971114610365578063313ce567146103985780633d6c3d2e146103ac57600080fd5b806306fdde0314610240578063095ea7b3146102895780631694505e146102b957806318160ddd146102f957600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5060408051808201909152600e81526d21b7b7b5b4b29026b7b739ba32b960911b60208201525b60405161028091906122d3565b60405180910390f35b34801561029557600080fd5b506102a96102a4366004612322565b6107df565b6040519015158152602001610280565b3480156102c557600080fd5b506102e1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610280565b34801561030557600080fd5b506c01431e0fae6d7217caa00000005b604051908152602001610280565b34801561032f57600080fd5b506102a961033e36600461234c565b6107f6565b34801561034f57600080fd5b5061036361035e366004612388565b6108ac565b005b34801561037157600080fd5b5060095461038690600160d01b900460ff1681565b60405160ff9091168152602001610280565b3480156103a457600080fd5b506012610386565b3480156103b857600080fd5b5060095461038690600160c01b900460ff1681565b3480156103d957600080fd5b506102e17f000000000000000000000000deb854a54dcc9e4c7d3e7362239bcf185ccf7f1f81565b34801561040d57600080fd5b506009546102a990600160e81b900460ff1681565b34801561042e57600080fd5b5060095461038690600160c81b900460ff1681565b34801561044f57600080fd5b5061036361045e3660046123b2565b610992565b34801561046f57600080fd5b5061036361047e3660046123f6565b610ad0565b34801561048f57600080fd5b5061036361049e366004612388565b610b34565b3480156104af57600080fd5b506103636104be3660046123f6565b610c96565b3480156104cf57600080fd5b5060095461038690600160a81b900460ff1681565b3480156104f057600080fd5b506103156104ff36600461242d565b6001600160a01b03166000908152600a602052604090205490565b34801561052657600080fd5b50610363610cfa565b34801561053b57600080fd5b5061036361054a366004612388565b610d45565b34801561055b57600080fd5b50610363610e30565b34801561057057600080fd5b506102a961057f36600461242d565b6001600160a01b03166000908152600c602052604090205460ff1690565b3480156105a957600080fd5b5060095461038690600160d81b900460ff1681565b3480156105ca57600080fd5b506000546001600160a01b03166102e1565b3480156105e857600080fd5b50604080518082019091526006815265434f4f4b494560d01b6020820152610273565b34801561061757600080fd5b5060095461038690600160b81b900460ff1681565b34801561063857600080fd5b506103636106473660046123f6565b610e78565b34801561065857600080fd5b506102a9610667366004612322565b610f5d565b34801561067857600080fd5b506102e17f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156106ac57600080fd5b506103636106bb36600461244f565b610f6a565b3480156106cc57600080fd5b5061031560015481565b3480156106e257600080fd5b50610363611020565b3480156106f757600080fd5b5060095461038690600160b01b900460ff1681565b34801561071857600080fd5b5061036361072736600461242d565b6110bb565b34801561073857600080fd5b5060095461038690600160a01b900460ff1681565b34801561075957600080fd5b5061031561076836600461244f565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b34801561079f57600080fd5b5061031560035481565b3480156107b557600080fd5b506103636107c436600461254f565b6111d7565b3480156107d557600080fd5b5061031560025481565b60006107ec33848461141b565b5060015b92915050565b6001600160a01b0383166000908152600b60209081526040808320338452909152812054600019811461089657828110156108895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610896853385840361141b565b6108a185858561153f565b506001949350505050565b336108bf6000546001600160a01b031690565b6001600160a01b0316146108e55760405162461bcd60e51b81526004016108809061260f565b670de0b6b3a76400006103e86109096c01431e0fae6d7217caa0000000600161265a565b6109139190612671565b61091d9190612671565b81101561097a5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d61782077616c6c6574206c6f776572207468616e60448201526420302e312560d81b6064820152608401610880565b61098c81670de0b6b3a764000061265a565b60025550565b336109a56000546001600160a01b031690565b6001600160a01b0316146109cb5760405162461bcd60e51b81526004016108809061260f565b60648260ff161115610a335760405162461bcd60e51b815260206004820152602b60248201527f4275792066656573206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b6064820152608401610880565b60648160ff161115610a9c5760405162461bcd60e51b815260206004820152602c60248201527f53656c6c2066656573206d757374206265206c657373207468616e206f72206560448201526b7175616c20746f203130302560a01b6064820152608401610880565b6009805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b33610ae36000546001600160a01b031690565b6001600160a01b031614610b095760405162461bcd60e51b81526004016108809061260f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b33610b476000546001600160a01b031690565b6001600160a01b031614610b6d5760405162461bcd60e51b81526004016108809061260f565b620186a0610b896c01431e0fae6d7217caa0000000600161265a565b610b939190612671565b811015610c005760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527420302e30303125206f662074686520737570706c7960581b6064820152608401610880565b6103e8610c1b6c01431e0fae6d7217caa0000000600561265a565b610c259190612671565b811115610c915760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152736e20302e3525206f662074686520737570706c7960601b6064820152608401610880565b600355565b33610ca96000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b81526004016108809061260f565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b33610d0d6000546001600160a01b031690565b6001600160a01b031614610d335760405162461bcd60e51b81526004016108809061260f565b600080546001600160a01b0319169055565b33610d586000546001600160a01b031690565b6001600160a01b031614610d7e5760405162461bcd60e51b81526004016108809061260f565b670de0b6b3a76400006103e8610da26c01431e0fae6d7217caa0000000600161265a565b610dac9190612671565b610db69190612671565b811015610e185760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178207472616e73616374696f6e206c6f776572604482015269207468616e20302e312560b01b6064820152608401610880565b610e2a81670de0b6b3a764000061265a565b60015550565b33610e436000546001600160a01b031690565b6001600160a01b031614610e695760405162461bcd60e51b81526004016108809061260f565b6009805460ff60e81b19169055565b33610e8b6000546001600160a01b031690565b6001600160a01b031614610eb15760405162461bcd60e51b81526004016108809061260f565b7f000000000000000000000000deb854a54dcc9e4c7d3e7362239bcf185ccf7f1f6001600160a01b0316826001600160a01b031603610f325760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f7665640000000000006044820152606401610880565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60006107ec33848461153f565b33610f7d6000546001600160a01b031690565b6001600160a01b031614610fa35760405162461bcd60e51b81526004016108809061260f565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100e9190612693565b905061101b838383611ccf565b505050565b336110336000546001600160a01b031690565b6001600160a01b0316146110595760405162461bcd60e51b81526004016108809061260f565b600954600160f01b900460ff16156110a65760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610880565b6009805460ff60f01b1916600160f01b179055565b336110ce6000546001600160a01b031690565b6001600160a01b0316146110f45760405162461bcd60e51b81526004016108809061260f565b6001600160a01b03811661113c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610880565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611189576040519150601f19603f3d011682016040523d82523d6000602084013e61118e565b606091505b50509050806111d35760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610880565b5050565b336111ea6000546001600160a01b031690565b6001600160a01b0316146112105760405162461bcd60e51b81526004016108809061260f565b600954600160f01b900460ff161561125d5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610880565b60005b825181101561101b5781818151811061127b5761127b6126ac565b6020026020010151600a6000336001600160a01b03166001600160a01b031681526020019081526020016000205410156112c75760405162461bcd60e51b8152600401610880906126c2565b8181815181106112d9576112d96126ac565b6020026020010151600a60008584815181106112f7576112f76126ac565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600082825461132e9190612708565b92505081905550818181518110611347576113476126ac565b6020026020010151600a6000336001600160a01b03166001600160a01b031681526020019081526020016000206000828254611383919061271b565b9250508190555082818151811061139c5761139c6126ac565b60200260200101516001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8484815181106113ea576113ea6126ac565b602002602001015160405161140191815260200190565b60405180910390a3806114138161272e565b915050611260565b6001600160a01b03831661147d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610880565b6001600160a01b0382166114de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610880565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610880565b6001600160a01b0382166116055760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610880565b600081116116675760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610880565b600954600160f01b900460ff161580156116bd57506000546001600160a01b038481169116148015906116a357506001600160a01b0383163014155b80156116bd57506000546001600160a01b03838116911614155b156117005760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610880565b600954600160e81b900460ff16156119ca576000546001600160a01b0384811691161480159061173e57506000546001600160a01b03838116911614155b801561175257506001600160a01b03821615155b801561176957506001600160a01b03821661dead14155b801561177f5750600954600160e01b900460ff16155b156119ca576001600160a01b0383166000908152600e602052604090205460ff1680156117c557506001600160a01b0382166000908152600d602052604090205460ff16155b156118995760015481111561182a5760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152640dac2f0a8f60db1b6064820152608401610880565b6002546001600160a01b0383166000908152600a60205260409020546118509083612708565b11156118945760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b6119ca565b6001600160a01b0382166000908152600e602052604090205460ff1680156118da57506001600160a01b0383166000908152600d602052604090205460ff16155b15611940576001548111156118945760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265040dac2f0a8f60d31b6064820152608401610880565b6001600160a01b0382166000908152600d602052604090205460ff166119ca576002546001600160a01b0383166000908152600a60205260409020546119869083612708565b11156119ca5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b600354306000908152600a60205260409020541080159081906119f75750600954600160e01b900460ff16155b8015611a1c57506001600160a01b0384166000908152600e602052604090205460ff16155b8015611a4157506001600160a01b0384166000908152600c602052604090205460ff16155b8015611a6657506001600160a01b0383166000908152600c602052604090205460ff16155b15611a94576009805460ff60e01b1916600160e01b179055611a86611dfb565b6009805460ff60e01b191690555b6009546001600160a01b0385166000908152600c602052604090205460ff600160e01b909204821615911680611ae257506001600160a01b0384166000908152600c602052604090205460ff165b15611aeb575060005b6001600160a01b0385166000908152600a602052604090205483811015611b245760405162461bcd60e51b8152600401610880906126c2565b60008215611c5c576001600160a01b0386166000908152600e602052604090205460ff168015611b5f5750600954600160a81b900460ff1615155b15611b8f57600954606490611b7e90600160a81b900460ff168761265a565b611b889190612671565b9050611bee565b6001600160a01b0387166000908152600e602052604090205460ff168015611bc25750600954600160a01b900460ff1615155b15611bee57600954606490611be190600160a01b900460ff168761265a565b611beb9190612671565b90505b8015611c5c576001600160a01b0387166000818152600a602090815260408083208054869003905530808452928190208054860190555184815297849003979192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b6001600160a01b038088166000818152600a602052604080822080548a900390559289168082529083902080548901905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611cbe9089815260200190565b60405180910390a350505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691611d2b9190612747565b6000604051808303816000865af19150503d8060008114611d68576040519150601f19603f3d011682016040523d82523d6000602084013e611d6d565b606091505b5091509150818015611d97575080511580611d97575080806020019051810190611d979190612763565b611df45760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657248656c7065723a20494e5445524e414c205452414e5346456044820152671497d1905253115160c21b6064820152608401610880565b5050505050565b6003546000611e0b82601461265a565b306000908152600a60205260409020541115611e3257600354611e2f90601461265a565b91505b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e6757611e676126ac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611ebb57611ebb6126ac565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611f13908690600090869030904290600401612780565b600060405180830381600087803b158015611f2d57600080fd5b505af1158015611f41573d6000803e3d6000fd5b5047925050811590506122a957600954600090606490611f6b90600160b01b900460ff168461265a565b611f759190612671565b600954909150600090606490611f9590600160b81b900460ff168561265a565b611f9f9190612671565b600954909150600090606490611fbf90600160c01b900460ff168661265a565b611fc99190612671565b600954909150600090606490611fe990600160c81b900460ff168761265a565b611ff39190612671565b60095490915060009060649061201390600160d01b900460ff168861265a565b61201d9190612671565b60095490915060009060ff600160d01b8204811691600160c81b90041685876120468a8c61271b565b612050919061271b565b61205a919061271b565b612064919061271b565b61206e919061271b565b6004546040519192506001600160a01b0316908790600081818185875af1925050503d80600081146120bc576040519150601f19603f3d011682016040523d82523d6000602084013e6120c1565b606091505b5050600554604051919a506001600160a01b0316908690600081818185875af1925050503d8060008114612111576040519150601f19603f3d011682016040523d82523d6000602084013e612116565b606091505b5050600654604051919a506001600160a01b0316908590600081818185875af1925050503d8060008114612166576040519150601f19603f3d011682016040523d82523d6000602084013e61216b565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d80600081146121bb576040519150601f19603f3d011682016040523d82523d6000602084013e6121c0565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114612210576040519150601f19603f3d011682016040523d82523d6000602084013e612215565b606091505b5050600954604051919a506001600160a01b0316908290600081818185875af1925050503d8060008114612265576040519150601f19603f3d011682016040523d82523d6000602084013e61226a565b606091505b50506040518b81529099507f42c9c0bd1fc983236459b9be3c73e1bb9bcec04b2a2dafe47ffe5629d4bbc2079060200160405180910390a15050505050505b50505050565b60005b838110156122ca5781810151838201526020016122b2565b50506000910152565b60208152600082518060208401526122f28160408501602087016122af565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461231d57600080fd5b919050565b6000806040838503121561233557600080fd5b61233e83612306565b946020939093013593505050565b60008060006060848603121561236157600080fd5b61236a84612306565b925061237860208501612306565b9150604084013590509250925092565b60006020828403121561239a57600080fd5b5035919050565b803560ff8116811461231d57600080fd5b600080604083850312156123c557600080fd5b6123ce836123a1565b91506123dc602084016123a1565b90509250929050565b80151581146123f357600080fd5b50565b6000806040838503121561240957600080fd5b61241283612306565b91506020830135612422816123e5565b809150509250929050565b60006020828403121561243f57600080fd5b61244882612306565b9392505050565b6000806040838503121561246257600080fd5b61246b83612306565b91506123dc60208401612306565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124b8576124b8612479565b604052919050565b600067ffffffffffffffff8211156124da576124da612479565b5060051b60200190565b600082601f8301126124f557600080fd5b8135602061250a612505836124c0565b61248f565b82815260059290921b8401810191818101908684111561252957600080fd5b8286015b84811015612544578035835291830191830161252d565b509695505050505050565b6000806040838503121561256257600080fd5b823567ffffffffffffffff8082111561257a57600080fd5b818501915085601f83011261258e57600080fd5b8135602061259e612505836124c0565b82815260059290921b840181019181810190898411156125bd57600080fd5b948201945b838610156125e2576125d386612306565b825294820194908201906125c2565b965050860135925050808211156125f857600080fd5b50612605858286016124e4565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107f0576107f0612644565b60008261268e57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156126a557600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b808201808211156107f0576107f0612644565b818103818111156107f0576107f0612644565b60006001820161274057612740612644565b5060010190565b600082516127598184602087016122af565b9190910192915050565b60006020828403121561277557600080fd5b8151612448816123e5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127d05784516001600160a01b0316835293830193918301916001016127ab565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204302df51d762321141b618266a299e98098befaf1a5f8507eac61ef303e20ca264736f6c63430008150033

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.