ETH Price: $2,593.12 (-2.44%)

Token

Popo (POPO)
 

Overview

Max Total Supply

1,000,000,000 POPO

Holders

381 ( -0.525%)

Market

Price

$0.00 @ 0.000000 ETH (+24.25%)

Onchain Market Cap

$44,423.95

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
689,492.068906808711634541 POPO

Value
$30.63 ( ~0.0118120114614957 Eth) [0.0689%]
0xa73827d96540e1d8cacd48017a2eb08b0e073e27
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

POPO is a lovable cartoon dog and the loyal companion of Pepe the Frog.

Market

Volume (24H):$1,437.44
Market Capitalization:$0.00
Circulating Supply:0.00 POPO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
POPO

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-12
*/

/*
 * SPDX-License-Identifier: MIT
 * https://Popoeth.vip
 * https://t.me/PopoOnEth
 * https://x.com/popoethereum
*/

pragma solidity 0.8.19;

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the upd allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    /**
     * @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 upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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 upd 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

interface IDexFactory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract POPO is Context, ERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => bool) private _isExcludedFromFee;
    address payable private _taxWallet;
    uint256 firstBlock;

    uint64 private lastLiquifyTime;

    uint256 private buyFee = 8;
    uint256 private sellFee = 30;
    uint256 private _preventSwapBefore = 1;
    uint256 private _buyCount = 0;

    uint256 private _txAmountLimit;
    uint256 private _walletAmountLimit;
    uint256 private _swapbackMin;
    uint256 private _swapbackMax;

    IDexRouter private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;
    bool private launchmode = true;
    mapping(address => bool) private _canTx;

    event MaxTxAmountUpdated(uint _txAmountLimit);
    event MaxWalletAmountUpdated(uint _walletAmountLimit);
    event FeesUpdated(uint buyFee, uint sellFee);
    event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax);
    event FeeReceiverUpdated(address _taxWallet);
    event ExcludedFromFee(address account, bool status);
    event LimitsRemoved();
    event TradingOpened();

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

    constructor() ERC20("Popo", "POPO") {
        uint256 _totalSupply = 1_000_000_000 * 10 ** 18;

        _txAmountLimit = (_totalSupply * 10) / 1000;
        _walletAmountLimit = (_totalSupply * 10) / 1000;
        _swapbackMin = (_totalSupply * 5) / 10000;
        _swapbackMax = (_totalSupply * 400) / 10000;
        _canTx [address(this)] = true;
        _taxWallet = payable(0x49bC8d586f9b69aFCc87eDEB673d41C8C8fc4c78);
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

        _mint(_msgSender(), _totalSupply);
    }


    receive() external payable {}

    function popoTime() external onlyOwner {
        require(!tradingOpen, "trading is already open");
        uniswapV2Router = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
        firstBlock = block.number;
        lastLiquifyTime = uint64(block.number);
        _isExcludedFromFee[address(this)] = true;
        buyFee = 10;

        emit TradingOpened();
    }

    function setNewPMarketingReceiver(address payable newRcv) external onlyOwner {
        _taxWallet = newRcv;

        emit FeeReceiverUpdated(newRcv);
    }

    function maxLimitTxPChange(uint256 newTxMax) external onlyOwner {
        require(newTxMax >= 1, "Max tx cant be lower than 0.1%");
        _txAmountLimit = (totalSupply() * newTxMax) / 1000;
        emit MaxTxAmountUpdated(_txAmountLimit);
    }

    function maxLimitWalletPChange(uint256 newWalletMax) external onlyOwner {
        require(newWalletMax >= 1, "Max wallet cant be lower than 0.1%");
        _walletAmountLimit = (totalSupply() * newWalletMax) / 1000;
        emit MaxWalletAmountUpdated(_walletAmountLimit);
    }

    function swapbackRangePSet(
        uint256 taxSwapThreshold,
        uint256 maxTaxSwap
    ) external onlyOwner {
        _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000;
        _swapbackMax = (totalSupply() * maxTaxSwap) / 10000;
        emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap);
    }

    function mdPDisable() external onlyOwner {
        require(launchmode, "Launch mode is already disabled");
        launchmode = false;
        buyFee = 20;
    }

    function maxLimitPDisable() external onlyOwner {
        _txAmountLimit = totalSupply();
        _walletAmountLimit = totalSupply();
        emit MaxTxAmountUpdated(totalSupply());
        emit MaxWalletAmountUpdated(totalSupply());
    }

    function tradingFeesPSetBuySell(uint256 feeBuy, uint256 feeSell) external onlyOwner {
        require(feeBuy <= 99, "Invalid buy tax value");
        require(feeSell <= 99, "Invalid sell tax value");
        buyFee = feeBuy;
        sellFee = feeSell;
        emit FeesUpdated(feeBuy, feeSell);
    }

    function stuckEthPRemove() external {
        require(msg.sender == _taxWallet, "Only fee receiver can trigger");
        _taxWallet.transfer(address(this).balance);
    }

    function ltSetP(address[] calldata lst, bool status)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < lst.length; i++) {
            _canTx[lst[i]] = status;
        }
    }

    function tradingFeesPSetExempt(address target, bool exempt) external onlyOwner {
        _isExcludedFromFee[target] = exempt;
        emit ExcludedFromFee(target, exempt);
    }

    function infoReadP()
        external
        view
        returns (
            uint256 _buyFee,
            uint256 _sellFee,
            uint256 maxTxAmount,
            uint256 maxWalletSize,
            uint256 taxSwapThreshold,
            uint256 maxTaxSwap
        )
    {
        return (
            buyFee,
            sellFee,
            _txAmountLimit,
            _walletAmountLimit,
            _swapbackMin,
            _swapbackMax
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        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");
        uint256 taxAmount = 0;
        if (from != owner() && to != owner() && !inSwap) {
            if (launchmode){
                require(_canTx[from] || _canTx[to], "");
            }

            taxAmount = amount.mul(buyFee).div(100);

            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to]
            ) {
                require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit.");
                require(
                    balanceOf(to) + amount <= _walletAmountLimit,
                    "Exceeds the maxWalletSize."
                );

                if (firstBlock + 3 > block.number) {
                    require(!isContract(to));
                }
                _buyCount++;
            }

            if (to != uniswapV2Pair && !_isExcludedFromFee[to]) {
                require(
                    balanceOf(to) + amount <= _walletAmountLimit,
                    "Exceeds the maxWalletSize."
                );
            }

            if (to == uniswapV2Pair && from != address(this)) {
                taxAmount = amount.mul(sellFee).div(100);
            }


            if (
                from != address(this) &&
                from != uniswapV2Pair &&
                to != uniswapV2Pair &&
                launchmode
            ) {
                taxAmount = amount;
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (
                !inSwap &&
                to == uniswapV2Pair &&
                swapEnabled &&
                contractTokenBalance > _swapbackMin &&
                _buyCount > _preventSwapBefore &&
                lastLiquifyTime != uint64(block.number)
            ) {
                 swapTokensForEth(
                    min(amount * 6, min(contractTokenBalance, _swapbackMax))
                );
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee();
                }
            }
        }

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

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

    function isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function triggerSwap() external {
        require(
            msg.sender == _taxWallet || msg.sender == owner(),
            "Only fee receiver can trigger"
        );
        uint256 contractTokenBalance = balanceOf(address(this));

        swapTokensForEth(contractTokenBalance);
        uint256 contractETHBalance = address(this).balance;
        if (contractETHBalance > 0) {
            sendETHToFee();
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        lastLiquifyTime = uint64(block.number);
        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 sendETHToFee() private {
        bool success;
        (success, ) = address(_taxWallet).call{value: address(this).balance}(
            ""
        );
    }
}

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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":"uint256","name":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":[{"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":"infoReadP","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"lst","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"ltSetP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxLimitPDisable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxMax","type":"uint256"}],"name":"maxLimitTxPChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWalletMax","type":"uint256"}],"name":"maxLimitWalletPChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mdPDisable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"popoTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRcv","type":"address"}],"name":"setNewPMarketingReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stuckEthPRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"swapbackRangePSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeBuy","type":"uint256"},{"internalType":"uint256","name":"feeSell","type":"uint256"}],"name":"tradingFeesPSetBuySell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"tradingFeesPSetExempt","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526008600a55601e600b556001600c556000600d556013805462ffffff60a81b1916600160b81b1790553480156200003a57600080fd5b5060405180604001604052806004815260200163506f706f60e01b81525060405180604001604052806004815260200163504f504f60e01b8152508160039081620000869190620003ee565b506004620000958282620003ee565b505050620000b2620000ac6200020760201b60201c565b6200020b565b6b033b2e3c9fd0803ce80000006103e8620000cf82600a620004d0565b620000db9190620004f0565b600e556103e8620000ee82600a620004d0565b620000fa9190620004f0565b600f556127106200010d826005620004d0565b620001199190620004f0565b6010556127106200012d82610190620004d0565b620001399190620004f0565b601155306000908152601460205260408120805460ff19166001908117909155600780546001600160a01b0319167349bc8d586f9b69afcc87edeb673d41c8c8fc4c7817905590600690620001966005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935281832080548516600190811790915560075490911683529120805490921617905562000200620001f93390565b826200025d565b5062000529565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002cc919062000513565b90915550506001600160a01b03821660009081526020819052604081208054839290620002fb90849062000513565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037557607f821691505b6020821081036200039657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034557600081815260208120601f850160051c81016020861015620003c55750805b601f850160051c820191505b81811015620003e657828155600101620003d1565b505050505050565b81516001600160401b038111156200040a576200040a6200034a565b62000422816200041b845462000360565b846200039c565b602080601f8311600181146200045a5760008415620004415750858301515b600019600386901b1c1916600185901b178555620003e6565b600085815260208120601f198616915b828110156200048b578886015182559484019460019091019084016200046a565b5085821015620004aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004ea57620004ea620004ba565b92915050565b6000826200050e57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004ea57620004ea620004ba565b6122e680620005396000396000f3fe6080604052600436106101a05760003560e01c80638da5cb5b116100ec578063a457c2d71161008a578063d1bb045f11610064578063d1bb045f146104ac578063dd62ed3e146104c1578063f2fde38b14610507578063f7bf15901461052757600080fd5b8063a457c2d71461044c578063a9059cbb1461046c578063affaea931461048c57600080fd5b806395d89b41116100c657806395d89b41146103d7578063969bfaf6146103ec578063a29e11bb1461040c578063a3dc6a971461042c57600080fd5b80638da5cb5b1461037a5780638f937cc4146103a2578063909db6f8146103b757600080fd5b80633368f1f4116101595780635ca341d3116101335780635ca341d31461030557806370a082311461031a578063715018a6146103505780637afa9b251461036557600080fd5b80633368f1f41461027957806339509351146102c5578063569ce72b146102e557600080fd5b806306fdde03146101ac578063095ea7b3146101d757806318160ddd1461020757806323b872dd1461022657806324d9622c14610246578063313ce5671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610547565b6040516101ce9190611e1f565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611e82565b6105d9565b60405190151581526020016101ce565b34801561021357600080fd5b506002545b6040519081526020016101ce565b34801561023257600080fd5b506101f7610241366004611eae565b6105f0565b34801561025257600080fd5b5061025b61069f565b005b34801561026957600080fd5b50604051601281526020016101ce565b34801561028557600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101ce565b3480156102d157600080fd5b506101f76102e0366004611e82565b61074d565b3480156102f157600080fd5b5061025b610300366004611eef565b610789565b34801561031157600080fd5b5061025b610861565b34801561032657600080fd5b50610218610335366004611f08565b6001600160a01b031660009081526020819052604090205490565b34801561035c57600080fd5b5061025b610c77565b34801561037157600080fd5b5061025b610cad565b34801561038657600080fd5b506005546040516001600160a01b0390911681526020016101ce565b3480156103ae57600080fd5b5061025b610d44565b3480156103c357600080fd5b5061025b6103d2366004611f08565b610ddf565b3480156103e357600080fd5b506101c1610e57565b3480156103f857600080fd5b5061025b610407366004611f25565b610e66565b34801561041857600080fd5b5061025b610427366004611f55565b610f16565b34801561043857600080fd5b5061025b610447366004611f25565b610f9c565b34801561045857600080fd5b506101f7610467366004611e82565b611099565b34801561047857600080fd5b506101f7610487366004611e82565b611132565b34801561049857600080fd5b5061025b6104a7366004611f8e565b61113f565b3480156104b857600080fd5b5061025b6111e0565b3480156104cd57600080fd5b506102186104dc366004612014565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051357600080fd5b5061025b610522366004611f08565b611276565b34801561053357600080fd5b5061025b610542366004611eef565b61130e565b60606003805461055690612042565b80601f016020809104026020016040519081016040528092919081815260200182805461058290612042565b80156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b5050505050905090565b60006105e63384846113ea565b5060015b92915050565b60006105fd84848461150e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106875760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61069485338584036113ea565b506001949350505050565b6005546001600160a01b031633146106c95760405162461bcd60e51b815260040161067e90612076565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106ff60025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00161073a60025490565b60405190815260200160405180910390a1565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e69185906107849086906120c1565b6113ea565b6005546001600160a01b031633146107b35760405162461bcd60e51b815260040161067e90612076565b60018110156108045760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e31250000604482015260640161067e565b6103e88161081160025490565b61081b91906120d4565b61082591906120eb565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf906020015b60405180910390a150565b6005546001600160a01b0316331461088b5760405162461bcd60e51b815260040161067e90612076565b601354600160a01b900460ff16156108e55760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161067e565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561091d90309061078460025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610970573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610994919061210d565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1a919061210d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8b919061210d565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610ad3816001600160a01b031660009081526020819052604090205490565b600080610ae86005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b50573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b75919061212a565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf29190612158565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff19166001179055600a8055517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b03163314610ca15760405162461bcd60e51b815260040161067e90612076565b610cab6000611a53565b565b6005546001600160a01b03163314610cd75760405162461bcd60e51b815260040161067e90612076565b601354600160b81b900460ff16610d305760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c656400604482015260640161067e565b6013805460ff60b81b191690556014600a55565b6007546001600160a01b0316331480610d6757506005546001600160a01b031633145b610db35760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161067e565b30600090815260208190526040902054610dcc81611aa5565b478015610ddb57610ddb611c3e565b5050565b6005546001600160a01b03163314610e095760405162461bcd60e51b815260040161067e90612076565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee90602001610856565b60606004805461055690612042565b6005546001600160a01b03163314610e905760405162461bcd60e51b815260040161067e90612076565b61271082610e9d60025490565b610ea791906120d4565b610eb191906120eb565b60105561271081610ec160025490565b610ecb91906120d4565b610ed591906120eb565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191015b60405180910390a15050565b6005546001600160a01b03163314610f405760405162461bcd60e51b815260040161067e90612076565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa99101610f0a565b6005546001600160a01b03163314610fc65760405162461bcd60e51b815260040161067e90612076565b606382111561100f5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b604482015260640161067e565b60638111156110595760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b604482015260640161067e565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a19101610f0a565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561111b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161067e565b61112833858584036113ea565b5060019392505050565b60006105e633848461150e565b6005546001600160a01b031633146111695760405162461bcd60e51b815260040161067e90612076565b60005b828110156111da57816014600086868581811061118b5761118b612175565b90506020020160208101906111a09190611f08565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806111d28161218b565b91505061116c565b50505050565b6007546001600160a01b0316331461123a5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161067e565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611273573d6000803e3d6000fd5b50565b6005546001600160a01b031633146112a05760405162461bcd60e51b815260040161067e90612076565b6001600160a01b0381166113055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067e565b61127381611a53565b6005546001600160a01b031633146113385760405162461bcd60e51b815260040161067e90612076565b60018110156113945760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b606482015260840161067e565b6103e8816113a160025490565b6113ab91906120d4565b6113b591906120eb565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610856565b6001600160a01b03831661144c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161067e565b6001600160a01b0382166114ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161067e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115345760405162461bcd60e51b815260040161067e906121a4565b6001600160a01b03821661155a5760405162461bcd60e51b815260040161067e906121e9565b600081116115bc5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161067e565b60006115d06005546001600160a01b031690565b6001600160a01b0316846001600160a01b0316141580156115ff57506005546001600160a01b03848116911614155b80156116155750601354600160a81b900460ff16155b15611a2e57601354600160b81b900460ff1615611691576001600160a01b03841660009081526014602052604090205460ff168061166b57506001600160a01b03831660009081526014602052604090205460ff165b6116915760405162461bcd60e51b8152602060048201526000602482015260440161067e565b6116b160646116ab600a5485611c8b90919063ffffffff16565b90611c9e565b6013549091506001600160a01b0385811691161480156116df57506012546001600160a01b03848116911614155b801561170457506001600160a01b03831660009081526006602052604090205460ff16155b1561180e57600e5482111561175b5760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e0000000000604482015260640161067e565b600f548261177e856001600160a01b031660009081526020819052604090205490565b61178891906120c1565b11156117d65760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161067e565b4360085460036117e691906120c1565b11156117f857823b156117f857600080fd5b600d80549060006118088361218b565b91905055505b6013546001600160a01b0384811691161480159061184557506001600160a01b03831660009081526006602052604090205460ff16155b156118c557600f548261186d856001600160a01b031660009081526020819052604090205490565b61187791906120c1565b11156118c55760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161067e565b6013546001600160a01b0384811691161480156118eb57506001600160a01b0384163014155b1561190d5761190a60646116ab600b5485611c8b90919063ffffffff16565b90505b6001600160a01b038416301480159061193457506013546001600160a01b03858116911614155b801561194e57506013546001600160a01b03848116911614155b80156119635750601354600160b81b900460ff165b1561196b5750805b30600090815260208190526040902054601354600160a81b900460ff161580156119a257506013546001600160a01b038581169116145b80156119b75750601354600160b01b900460ff165b80156119c4575060105481115b80156119d35750600c54600d54115b80156119ef57506009544367ffffffffffffffff908116911614155b15611a2c57611a1b611a16611a058560066120d4565b611a1184601154611caa565b611caa565b611aa5565b478015611a2a57611a2a611c3e565b505b505b8015611a3f57611a3f843083611cbf565b6111da8484611a4e8585611e13565b611cbf565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0c57611b0c612175565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611b65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b89919061210d565b81600181518110611b9c57611b9c612175565b6001600160a01b039283166020918202929092010152601254611bc291309116846113ea565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611bfb90859060009086903090429060040161222c565b600060405180830381600087803b158015611c1557600080fd5b505af1158015611c29573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146111da576040519150601f19603f3d011682016040523d82523d6000602084013e6111da565b6000611c9782846120d4565b9392505050565b6000611c9782846120eb565b6000818311611cb95782611c97565b50919050565b6001600160a01b038316611ce55760405162461bcd60e51b815260040161067e906121a4565b6001600160a01b038216611d0b5760405162461bcd60e51b815260040161067e906121e9565b6001600160a01b03831660009081526020819052604090205481811015611d835760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161067e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611dba9084906120c1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0691815260200190565b60405180910390a36111da565b6000611c97828461229d565b600060208083528351808285015260005b81811015611e4c57858101830151858201604001528201611e30565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461127357600080fd5b60008060408385031215611e9557600080fd5b8235611ea081611e6d565b946020939093013593505050565b600080600060608486031215611ec357600080fd5b8335611ece81611e6d565b92506020840135611ede81611e6d565b929592945050506040919091013590565b600060208284031215611f0157600080fd5b5035919050565b600060208284031215611f1a57600080fd5b8135611c9781611e6d565b60008060408385031215611f3857600080fd5b50508035926020909101359150565b801515811461127357600080fd5b60008060408385031215611f6857600080fd5b8235611f7381611e6d565b91506020830135611f8381611f47565b809150509250929050565b600080600060408486031215611fa357600080fd5b833567ffffffffffffffff80821115611fbb57600080fd5b818601915086601f830112611fcf57600080fd5b813581811115611fde57600080fd5b8760208260051b8501011115611ff357600080fd5b6020928301955093505084013561200981611f47565b809150509250925092565b6000806040838503121561202757600080fd5b823561203281611e6d565b91506020830135611f8381611e6d565b600181811c9082168061205657607f821691505b602082108103611cb957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea6120ab565b80820281158282048414176105ea576105ea6120ab565b60008261210857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561211f57600080fd5b8151611c9781611e6d565b60008060006060848603121561213f57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561216a57600080fd5b8151611c9781611f47565b634e487b7160e01b600052603260045260246000fd5b60006001820161219d5761219d6120ab565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561227c5784516001600160a01b031683529383019391830191600101612257565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156105ea576105ea6120ab56fea26469706673582212201892477964f647b35fa8a74245da2b53e84560a080d668b9355ceb6592ca8ae264736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c80638da5cb5b116100ec578063a457c2d71161008a578063d1bb045f11610064578063d1bb045f146104ac578063dd62ed3e146104c1578063f2fde38b14610507578063f7bf15901461052757600080fd5b8063a457c2d71461044c578063a9059cbb1461046c578063affaea931461048c57600080fd5b806395d89b41116100c657806395d89b41146103d7578063969bfaf6146103ec578063a29e11bb1461040c578063a3dc6a971461042c57600080fd5b80638da5cb5b1461037a5780638f937cc4146103a2578063909db6f8146103b757600080fd5b80633368f1f4116101595780635ca341d3116101335780635ca341d31461030557806370a082311461031a578063715018a6146103505780637afa9b251461036557600080fd5b80633368f1f41461027957806339509351146102c5578063569ce72b146102e557600080fd5b806306fdde03146101ac578063095ea7b3146101d757806318160ddd1461020757806323b872dd1461022657806324d9622c14610246578063313ce5671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610547565b6040516101ce9190611e1f565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611e82565b6105d9565b60405190151581526020016101ce565b34801561021357600080fd5b506002545b6040519081526020016101ce565b34801561023257600080fd5b506101f7610241366004611eae565b6105f0565b34801561025257600080fd5b5061025b61069f565b005b34801561026957600080fd5b50604051601281526020016101ce565b34801561028557600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101ce565b3480156102d157600080fd5b506101f76102e0366004611e82565b61074d565b3480156102f157600080fd5b5061025b610300366004611eef565b610789565b34801561031157600080fd5b5061025b610861565b34801561032657600080fd5b50610218610335366004611f08565b6001600160a01b031660009081526020819052604090205490565b34801561035c57600080fd5b5061025b610c77565b34801561037157600080fd5b5061025b610cad565b34801561038657600080fd5b506005546040516001600160a01b0390911681526020016101ce565b3480156103ae57600080fd5b5061025b610d44565b3480156103c357600080fd5b5061025b6103d2366004611f08565b610ddf565b3480156103e357600080fd5b506101c1610e57565b3480156103f857600080fd5b5061025b610407366004611f25565b610e66565b34801561041857600080fd5b5061025b610427366004611f55565b610f16565b34801561043857600080fd5b5061025b610447366004611f25565b610f9c565b34801561045857600080fd5b506101f7610467366004611e82565b611099565b34801561047857600080fd5b506101f7610487366004611e82565b611132565b34801561049857600080fd5b5061025b6104a7366004611f8e565b61113f565b3480156104b857600080fd5b5061025b6111e0565b3480156104cd57600080fd5b506102186104dc366004612014565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051357600080fd5b5061025b610522366004611f08565b611276565b34801561053357600080fd5b5061025b610542366004611eef565b61130e565b60606003805461055690612042565b80601f016020809104026020016040519081016040528092919081815260200182805461058290612042565b80156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b5050505050905090565b60006105e63384846113ea565b5060015b92915050565b60006105fd84848461150e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106875760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61069485338584036113ea565b506001949350505050565b6005546001600160a01b031633146106c95760405162461bcd60e51b815260040161067e90612076565b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106ff60025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00161073a60025490565b60405190815260200160405180910390a1565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e69185906107849086906120c1565b6113ea565b6005546001600160a01b031633146107b35760405162461bcd60e51b815260040161067e90612076565b60018110156108045760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e31250000604482015260640161067e565b6103e88161081160025490565b61081b91906120d4565b61082591906120eb565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf906020015b60405180910390a150565b6005546001600160a01b0316331461088b5760405162461bcd60e51b815260040161067e90612076565b601354600160a01b900460ff16156108e55760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161067e565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561091d90309061078460025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610970573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610994919061210d565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1a919061210d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8b919061210d565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610ad3816001600160a01b031660009081526020819052604090205490565b600080610ae86005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b50573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b75919061212a565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf29190612158565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff19166001179055600a8055517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b03163314610ca15760405162461bcd60e51b815260040161067e90612076565b610cab6000611a53565b565b6005546001600160a01b03163314610cd75760405162461bcd60e51b815260040161067e90612076565b601354600160b81b900460ff16610d305760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c656400604482015260640161067e565b6013805460ff60b81b191690556014600a55565b6007546001600160a01b0316331480610d6757506005546001600160a01b031633145b610db35760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161067e565b30600090815260208190526040902054610dcc81611aa5565b478015610ddb57610ddb611c3e565b5050565b6005546001600160a01b03163314610e095760405162461bcd60e51b815260040161067e90612076565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee90602001610856565b60606004805461055690612042565b6005546001600160a01b03163314610e905760405162461bcd60e51b815260040161067e90612076565b61271082610e9d60025490565b610ea791906120d4565b610eb191906120eb565b60105561271081610ec160025490565b610ecb91906120d4565b610ed591906120eb565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb191015b60405180910390a15050565b6005546001600160a01b03163314610f405760405162461bcd60e51b815260040161067e90612076565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa99101610f0a565b6005546001600160a01b03163314610fc65760405162461bcd60e51b815260040161067e90612076565b606382111561100f5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b604482015260640161067e565b60638111156110595760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b604482015260640161067e565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a19101610f0a565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561111b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161067e565b61112833858584036113ea565b5060019392505050565b60006105e633848461150e565b6005546001600160a01b031633146111695760405162461bcd60e51b815260040161067e90612076565b60005b828110156111da57816014600086868581811061118b5761118b612175565b90506020020160208101906111a09190611f08565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806111d28161218b565b91505061116c565b50505050565b6007546001600160a01b0316331461123a5760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161067e565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611273573d6000803e3d6000fd5b50565b6005546001600160a01b031633146112a05760405162461bcd60e51b815260040161067e90612076565b6001600160a01b0381166113055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067e565b61127381611a53565b6005546001600160a01b031633146113385760405162461bcd60e51b815260040161067e90612076565b60018110156113945760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b606482015260840161067e565b6103e8816113a160025490565b6113ab91906120d4565b6113b591906120eb565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610856565b6001600160a01b03831661144c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161067e565b6001600160a01b0382166114ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161067e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115345760405162461bcd60e51b815260040161067e906121a4565b6001600160a01b03821661155a5760405162461bcd60e51b815260040161067e906121e9565b600081116115bc5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161067e565b60006115d06005546001600160a01b031690565b6001600160a01b0316846001600160a01b0316141580156115ff57506005546001600160a01b03848116911614155b80156116155750601354600160a81b900460ff16155b15611a2e57601354600160b81b900460ff1615611691576001600160a01b03841660009081526014602052604090205460ff168061166b57506001600160a01b03831660009081526014602052604090205460ff165b6116915760405162461bcd60e51b8152602060048201526000602482015260440161067e565b6116b160646116ab600a5485611c8b90919063ffffffff16565b90611c9e565b6013549091506001600160a01b0385811691161480156116df57506012546001600160a01b03848116911614155b801561170457506001600160a01b03831660009081526006602052604090205460ff16155b1561180e57600e5482111561175b5760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e0000000000604482015260640161067e565b600f548261177e856001600160a01b031660009081526020819052604090205490565b61178891906120c1565b11156117d65760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161067e565b4360085460036117e691906120c1565b11156117f857823b156117f857600080fd5b600d80549060006118088361218b565b91905055505b6013546001600160a01b0384811691161480159061184557506001600160a01b03831660009081526006602052604090205460ff16155b156118c557600f548261186d856001600160a01b031660009081526020819052604090205490565b61187791906120c1565b11156118c55760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161067e565b6013546001600160a01b0384811691161480156118eb57506001600160a01b0384163014155b1561190d5761190a60646116ab600b5485611c8b90919063ffffffff16565b90505b6001600160a01b038416301480159061193457506013546001600160a01b03858116911614155b801561194e57506013546001600160a01b03848116911614155b80156119635750601354600160b81b900460ff165b1561196b5750805b30600090815260208190526040902054601354600160a81b900460ff161580156119a257506013546001600160a01b038581169116145b80156119b75750601354600160b01b900460ff165b80156119c4575060105481115b80156119d35750600c54600d54115b80156119ef57506009544367ffffffffffffffff908116911614155b15611a2c57611a1b611a16611a058560066120d4565b611a1184601154611caa565b611caa565b611aa5565b478015611a2a57611a2a611c3e565b505b505b8015611a3f57611a3f843083611cbf565b6111da8484611a4e8585611e13565b611cbf565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0c57611b0c612175565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611b65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b89919061210d565b81600181518110611b9c57611b9c612175565b6001600160a01b039283166020918202929092010152601254611bc291309116846113ea565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611bfb90859060009086903090429060040161222c565b600060405180830381600087803b158015611c1557600080fd5b505af1158015611c29573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146111da576040519150601f19603f3d011682016040523d82523d6000602084013e6111da565b6000611c9782846120d4565b9392505050565b6000611c9782846120eb565b6000818311611cb95782611c97565b50919050565b6001600160a01b038316611ce55760405162461bcd60e51b815260040161067e906121a4565b6001600160a01b038216611d0b5760405162461bcd60e51b815260040161067e906121e9565b6001600160a01b03831660009081526020819052604090205481811015611d835760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161067e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611dba9084906120c1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0691815260200190565b60405180910390a36111da565b6000611c97828461229d565b600060208083528351808285015260005b81811015611e4c57858101830151858201604001528201611e30565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461127357600080fd5b60008060408385031215611e9557600080fd5b8235611ea081611e6d565b946020939093013593505050565b600080600060608486031215611ec357600080fd5b8335611ece81611e6d565b92506020840135611ede81611e6d565b929592945050506040919091013590565b600060208284031215611f0157600080fd5b5035919050565b600060208284031215611f1a57600080fd5b8135611c9781611e6d565b60008060408385031215611f3857600080fd5b50508035926020909101359150565b801515811461127357600080fd5b60008060408385031215611f6857600080fd5b8235611f7381611e6d565b91506020830135611f8381611f47565b809150509250929050565b600080600060408486031215611fa357600080fd5b833567ffffffffffffffff80821115611fbb57600080fd5b818601915086601f830112611fcf57600080fd5b813581811115611fde57600080fd5b8760208260051b8501011115611ff357600080fd5b6020928301955093505084013561200981611f47565b809150509250925092565b6000806040838503121561202757600080fd5b823561203281611e6d565b91506020830135611f8381611e6d565b600181811c9082168061205657607f821691505b602082108103611cb957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea6120ab565b80820281158282048414176105ea576105ea6120ab565b60008261210857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561211f57600080fd5b8151611c9781611e6d565b60008060006060848603121561213f57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561216a57600080fd5b8151611c9781611f47565b634e487b7160e01b600052603260045260246000fd5b60006001820161219d5761219d6120ab565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561227c5784516001600160a01b031683529383019391830191600101612257565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156105ea576105ea6120ab56fea26469706673582212201892477964f647b35fa8a74245da2b53e84560a080d668b9355ceb6592ca8ae264736f6c63430008130033

Deployed Bytecode Sourcemap

25403:10015:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13234:194;;;;;;;;;;-1:-1:-1;13234:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13234:194:0;1023:187:1;12121:108:0;;;;;;;;;;-1:-1:-1;12209:12:0;;12121:108;;;1361:25:1;;;1349:2;1334:18;12121:108:0;1215:177:1;13906:529:0;;;;;;;;;;-1:-1:-1;13906:529:0;;;;;:::i;:::-;;:::i;29611:243::-;;;;;;;;;;;;;:::i;:::-;;11963:93;;;;;;;;;;-1:-1:-1;11963:93:0;;12046:2;2000:36:1;;1988:2;1973:18;11963:93:0;1858:184:1;30758:486:0;;;;;;;;;;-1:-1:-1;31081:6:0;;31102:7;;31124:14;;31153:18;;31186:12;;31213;;30758:486;;;2334:25:1;;;2390:2;2375:18;;2368:34;;;;2418:18;;;2411:34;;;;2476:2;2461:18;;2454:34;2519:3;2504:19;;2497:35;2563:3;2548:19;;2541:35;2321:3;2306:19;30758:486:0;2047:535:1;14840:290:0;;;;;;;;;;-1:-1:-1;14840:290:0;;;;;:::i;:::-;;:::i;28566:250::-;;;;;;;;;;-1:-1:-1;28566:250:0;;;;;:::i;:::-;;:::i;27386:1005::-;;;;;;;;;;;;;:::i;12292:143::-;;;;;;;;;;-1:-1:-1;12292:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;22340:103;;;;;;;;;;;;;:::i;29438:165::-;;;;;;;;;;;;;:::i;21689:87::-;;;;;;;;;;-1:-1:-1;21762:6:0;;21689:87;;-1:-1:-1;;;;;21762:6:0;;;3170:51:1;;3158:2;3143:18;21689:87:0;3024:203:1;34261:436:0;;;;;;;;;;;;;:::i;28399:159::-;;;;;;;;;;-1:-1:-1;28399:159:0;;;;;:::i;:::-;;:::i;11220:104::-;;;;;;;;;;;;;:::i;29114:316::-;;;;;;;;;;-1:-1:-1;29114:316:0;;;;;:::i;:::-;;:::i;30570:180::-;;;;;;;;;;-1:-1:-1;30570:180:0;;;;;:::i;:::-;;:::i;29862:306::-;;;;;;;;;;-1:-1:-1;29862:306:0;;;;;:::i;:::-;;:::i;15629:475::-;;;;;;;;;;-1:-1:-1;15629:475:0;;;;;:::i;:::-;;:::i;12648:200::-;;;;;;;;;;-1:-1:-1;12648:200:0;;;;;:::i;:::-;;:::i;30358:204::-;;;;;;;;;;-1:-1:-1;30358:204:0;;;;;:::i;:::-;;:::i;30176:174::-;;;;;;;;;;;;;:::i;12911:176::-;;;;;;;;;;-1:-1:-1;12911:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13052:18:0;;;13025:7;13052:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12911:176;22598:238;;;;;;;;;;-1:-1:-1;22598:238:0;;;;;:::i;:::-;;:::i;28824:282::-;;;;;;;;;;-1:-1:-1;28824:282:0;;;;;:::i;:::-;;:::i;11001:100::-;11055:13;11088:5;11081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:100;:::o;13234:194::-;13342:4;13359:39;10087:10;13382:7;13391:6;13359:8;:39::i;:::-;-1:-1:-1;13416:4:0;13234:194;;;;;:::o;13906:529::-;14046:4;14063:36;14073:6;14081:9;14092:6;14063:9;:36::i;:::-;-1:-1:-1;;;;;14139:19:0;;14112:24;14139:19;;;:11;:19;;;;;;;;10087:10;14139:33;;;;;;;;14205:26;;;;14183:116;;;;-1:-1:-1;;;14183:116:0;;5990:2:1;14183:116:0;;;5972:21:1;6029:2;6009:18;;;6002:30;6068:34;6048:18;;;6041:62;-1:-1:-1;;;6119:18:1;;;6112:38;6167:19;;14183:116:0;;;;;;;;;14335:57;14344:6;10087:10;14385:6;14366:16;:25;14335:8;:57::i;:::-;-1:-1:-1;14423:4:0;;13906:529;-1:-1:-1;;;;13906:529:0:o;29611:243::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;12209:12;;29669:14:::1;:30:::0;12209:12;;29710:18:::1;:34:::0;29760:33:::1;29779:13;12209:12:::0;;;12121:108;29779:13:::1;29760:33;::::0;1361:25:1;;;1349:2;1334:18;29760:33:0::1;;;;;;;29809:37;29832:13;12209:12:::0;;;12121:108;29832:13:::1;29809:37;::::0;1361:25:1;;;1349:2;1334:18;29809:37:0::1;;;;;;;29611:243::o:0;14840:290::-;10087:10;14953:4;15042:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15042:34:0;;;;;;;;;;14953:4;;14970:130;;15020:7;;15042:47;;15079:10;;15042:47;:::i;:::-;14970:8;:130::i;28566:250::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;28661:1:::1;28649:8;:13;;28641:56;;;::::0;-1:-1:-1;;;28641:56:0;;7022:2:1;28641:56:0::1;::::0;::::1;7004:21:1::0;7061:2;7041:18;;;7034:30;7100:32;7080:18;;;7073:60;7150:18;;28641:56:0::1;6820:354:1::0;28641:56:0::1;28754:4;28742:8;28726:13;12209:12:::0;;;12121:108;28726:13:::1;:24;;;;:::i;:::-;28725:33;;;;:::i;:::-;28708:14;:50:::0;;;28774:34:::1;::::0;1361:25:1;;;28774:34:0::1;::::0;1349:2:1;1334:18;28774:34:0::1;;;;;;;;28566:250:::0;:::o;27386:1005::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;27445:11:::1;::::0;-1:-1:-1;;;27445:11:0;::::1;;;27444:12;27436:48;;;::::0;-1:-1:-1;;;27436:48:0;;7776:2:1;27436:48:0::1;::::0;::::1;7758:21:1::0;7815:2;7795:18;;;7788:30;7854:25;7834:18;;;7827:53;7897:18;;27436:48:0::1;7574:347:1::0;27436:48:0::1;27495:15;:96:::0;;-1:-1:-1;;;;;;27495:96:0::1;27538:42;27495:96:::0;;::::1;::::0;;;27602:64:::1;::::0;27619:4:::1;::::0;27652:13:::1;12209:12:::0;;;12121:108;27602:64:::1;27705:15;;;;;;;;;-1:-1:-1::0;;;;;27705:15:0::1;-1:-1:-1::0;;;;;27705:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27693:49:0::1;;27765:4;27785:15;;;;;;;;;-1:-1:-1::0;;;;;27785:15:0::1;-1:-1:-1::0;;;;;27785:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27693:125;::::0;-1:-1:-1;;;;;;27693:125:0::1;::::0;;;;;;-1:-1:-1;;;;;8412:15:1;;;27693:125:0::1;::::0;::::1;8394:34:1::0;8464:15;;8444:18;;;8437:43;8329:18;;27693:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27677:13;:141:::0;;-1:-1:-1;;;;;27677:141:0;;::::1;-1:-1:-1::0;;;;;;27677:141:0;;::::1;;::::0;;27829:15:::1;::::0;::::1;:31;27868:21;27913:4;27933:24;27913:4:::0;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;27933:24:::1;27972:1;27988::::0;28004:7:::1;21762:6:::0;;-1:-1:-1;;;;;21762:6:0;;21689:87;28004:7:::1;27829:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;27829:223:0;;;-1:-1:-1;;;;;8850:15:1;;;27829:223:0::1;::::0;::::1;8832:34:1::0;8882:18;;;8875:34;;;;8925:18;;;8918:34;;;;8968:18;;;8961:34;9032:15;;;9011:19;;;9004:44;28026:15:0::1;9064:19:1::0;;;9057:35;8766:19;;27829:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28070:13:0::1;::::0;28101:15:::1;::::0;28063:71:::1;::::0;-1:-1:-1;;;28063:71:0;;-1:-1:-1;;;;;28101:15:0;;::::1;28063:71;::::0;::::1;9588:51:1::0;-1:-1:-1;;9655:18:1;;;9648:34;28070:13:0;::::1;::::0;-1:-1:-1;28063:29:0::1;::::0;9561:18:1;;28063:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28145:11:0::1;:18:::0;;-1:-1:-1;;;;28174:18:0;-1:-1:-1;;;28174:18:0;;;28216:12:::1;28203:10;:25:::0;;;28239:15:::1;:38:::0;;-1:-1:-1;;28239:38:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;28315:4:::1;-1:-1:-1::0;28288:33:0;;;:18:::1;:33;::::0;;;;;:40;;-1:-1:-1;;28288:40:0::1;-1:-1:-1::0;28288:40:0::1;::::0;;-1:-1:-1;28339:11:0;;28368:15;::::1;::::0;-1:-1:-1;28368:15:0::1;27386:1005::o:0;22340:103::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;22405:30:::1;22432:1;22405:18;:30::i;:::-;22340:103::o:0;29438:165::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;29498:10:::1;::::0;-1:-1:-1;;;29498:10:0;::::1;;;29490:54;;;::::0;-1:-1:-1;;;29490:54:0;;10145:2:1;29490:54:0::1;::::0;::::1;10127:21:1::0;10184:2;10164:18;;;10157:30;10223:33;10203:18;;;10196:61;10274:18;;29490:54:0::1;9943:355:1::0;29490:54:0::1;29555:10;:18:::0;;-1:-1:-1;;;;29555:18:0::1;::::0;;29593:2:::1;29584:6;:11:::0;29438:165::o;34261:436::-;34340:10;;-1:-1:-1;;;;;34340:10:0;34326;:24;;:49;;-1:-1:-1;21762:6:0;;-1:-1:-1;;;;;21762:6:0;34354:10;:21;34326:49;34304:128;;;;-1:-1:-1;;;34304:128:0;;10505:2:1;34304:128:0;;;10487:21:1;10544:2;10524:18;;;10517:30;10583:31;10563:18;;;10556:59;10632:18;;34304:128:0;10303:353:1;34304:128:0;34492:4;34443:28;12409:18;;;;;;;;;;;34511:38;12409:18;34511:16;:38::i;:::-;34589:21;34625:22;;34621:69;;34664:14;:12;:14::i;:::-;34293:404;;34261:436::o;28399:159::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;28487:10:::1;:19:::0;;-1:-1:-1;;;;;;28487:19:0::1;-1:-1:-1::0;;;;;28487:19:0;::::1;::::0;;::::1;::::0;;;28524:26:::1;::::0;3170:51:1;;;28524:26:0::1;::::0;3158:2:1;3143:18;28524:26:0::1;3024:203:1::0;11220:104:0;11276:13;11309:7;11302:14;;;;;:::i;29114:316::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;29294:5:::1;29274:16;29258:13;12209:12:::0;;;12121:108;29258:13:::1;:32;;;;:::i;:::-;29257:42;;;;:::i;:::-;29242:12;:57:::0;29356:5:::1;29342:10:::0;29326:13:::1;12209:12:::0;;;12121:108;29326:13:::1;:26;;;;:::i;:::-;29325:36;;;;:::i;:::-;29310:12;:51:::0;29377:45:::1;::::0;;11051:25:1;;;11107:2;11092:18;;11085:34;;;29377:45:0::1;::::0;11024:18:1;29377:45:0::1;;;;;;;;29114:316:::0;;:::o;30570:180::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30660:26:0;::::1;;::::0;;;:18:::1;:26;::::0;;;;;;;;:35;;-1:-1:-1;;30660:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30711:31;;11298:51:1;;;11365:18;;;11358:50;30711:31:0::1;::::0;11271:18:1;30711:31:0::1;11130:284:1::0;29862:306:0;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;29975:2:::1;29965:6;:12;;29957:46;;;::::0;-1:-1:-1;;;29957:46:0;;11621:2:1;29957:46:0::1;::::0;::::1;11603:21:1::0;11660:2;11640:18;;;11633:30;-1:-1:-1;;;11679:18:1;;;11672:51;11740:18;;29957:46:0::1;11419:345:1::0;29957:46:0::1;30033:2;30022:7;:13;;30014:48;;;::::0;-1:-1:-1;;;30014:48:0;;11971:2:1;30014:48:0::1;::::0;::::1;11953:21:1::0;12010:2;11990:18;;;11983:30;-1:-1:-1;;;12029:18:1;;;12022:52;12091:18;;30014:48:0::1;11769:346:1::0;30014:48:0::1;30073:6;:15:::0;;;30099:7:::1;:17:::0;;;30132:28:::1;::::0;;11051:25:1;;;11107:2;11092:18;;11085:34;;;30132:28:0::1;::::0;11024:18:1;30132:28:0::1;10877:248:1::0;15629:475:0;10087:10;15747:4;15791:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15791:34:0;;;;;;;;;;15858:35;;;;15836:122;;;;-1:-1:-1;;;15836:122:0;;12322:2:1;15836:122:0;;;12304:21:1;12361:2;12341:18;;;12334:30;12400:34;12380:18;;;12373:62;-1:-1:-1;;;12451:18:1;;;12444:35;12496:19;;15836:122:0;12120:401:1;15836:122:0;15994:67;10087:10;16017:7;16045:15;16026:16;:34;15994:8;:67::i;:::-;-1:-1:-1;16092:4:0;;15629:475;-1:-1:-1;;;15629:475:0:o;12648:200::-;12759:4;12776:42;10087:10;12800:9;12811:6;12776:9;:42::i;30358:204::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;30469:9:::1;30464:91;30484:14:::0;;::::1;30464:91;;;30537:6;30520;:14;30527:3;;30531:1;30527:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30520:14:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;30520:14:0;:23;;-1:-1:-1;;30520:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30500:3;::::1;::::0;::::1;:::i;:::-;;;;30464:91;;;;30358:204:::0;;;:::o;30176:174::-;30245:10;;-1:-1:-1;;;;;30245:10:0;30231;:24;30223:66;;;;-1:-1:-1;;;30223:66:0;;10505:2:1;30223:66:0;;;10487:21:1;10544:2;10524:18;;;10517:30;10583:31;10563:18;;;10556:59;10632:18;;30223:66:0;10303:353:1;30223:66:0;30300:10;;:42;;-1:-1:-1;;;;;30300:10:0;;;;30320:21;30300:42;;;;;:10;:42;:10;:42;30320:21;30300:10;:42;;;;;;;;;;;;;;;;;;;;;30176:174::o;22598:238::-;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22701:22:0;::::1;22679:110;;;::::0;-1:-1:-1;;;22679:110:0;;13000:2:1;22679:110:0::1;::::0;::::1;12982:21:1::0;13039:2;13019:18;;;13012:30;13078:34;13058:18;;;13051:62;-1:-1:-1;;;13129:18:1;;;13122:36;13175:19;;22679:110:0::1;12798:402:1::0;22679:110:0::1;22800:28;22819:8;22800:18;:28::i;28824:282::-:0;21762:6;;-1:-1:-1;;;;;21762:6:0;10087:10;21909:23;21901:68;;;;-1:-1:-1;;;21901:68:0;;;;;;;:::i;:::-;28931:1:::1;28915:12;:17;;28907:64;;;::::0;-1:-1:-1;;;28907:64:0;;13407:2:1;28907:64:0::1;::::0;::::1;13389:21:1::0;13446:2;13426:18;;;13419:30;13485:34;13465:18;;;13458:62;-1:-1:-1;;;13536:18:1;;;13529:32;13578:19;;28907:64:0::1;13205:398:1::0;28907:64:0::1;29036:4;29020:12;29004:13;12209:12:::0;;;12121:108;29004:13:::1;:28;;;;:::i;:::-;29003:37;;;;:::i;:::-;28982:18;:58:::0;;;29056:42:::1;::::0;1361:25:1;;;29056:42:0::1;::::0;1349:2:1;1334:18;29056:42:0::1;1215:177:1::0;19412:380:0;-1:-1:-1;;;;;19548:19:0;;19540:68;;;;-1:-1:-1;;;19540:68:0;;13810:2:1;19540:68:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:34;13983:19;;19540:68:0;13608:400:1;19540:68:0;-1:-1:-1;;;;;19627:21:0;;19619:68;;;;-1:-1:-1;;;19619:68:0;;14215:2:1;19619:68:0;;;14197:21:1;14254:2;14234:18;;;14227:30;14293:34;14273:18;;;14266:62;-1:-1:-1;;;14344:18:1;;;14337:32;14386:19;;19619:68:0;14013:398:1;19619:68:0;-1:-1:-1;;;;;19700:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19752:32;;1361:25:1;;;19752:32:0;;1334:18:1;19752:32:0;;;;;;;19412:380;;;:::o;31252:2683::-;-1:-1:-1;;;;;31384:18:0;;31376:68;;;;-1:-1:-1;;;31376:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31463:16:0;;31455:64;;;;-1:-1:-1;;;31455:64:0;;;;;;;:::i;:::-;31547:1;31538:6;:10;31530:64;;;;-1:-1:-1;;;31530:64:0;;15428:2:1;31530:64:0;;;15410:21:1;15467:2;15447:18;;;15440:30;15506:34;15486:18;;;15479:62;-1:-1:-1;;;15557:18:1;;;15550:39;15606:19;;31530:64:0;15226:405:1;31530:64:0;31605:17;31649:7;21762:6;;-1:-1:-1;;;;;21762:6:0;;21689:87;31649:7;-1:-1:-1;;;;;31641:15:0;:4;-1:-1:-1;;;;;31641:15:0;;;:32;;;;-1:-1:-1;21762:6:0;;-1:-1:-1;;;;;31660:13:0;;;21762:6;;31660:13;;31641:32;:43;;;;-1:-1:-1;31678:6:0;;-1:-1:-1;;;31678:6:0;;;;31677:7;31641:43;31637:2127;;;31705:10;;-1:-1:-1;;;31705:10:0;;;;31701:89;;;-1:-1:-1;;;;;31743:12:0;;;;;;:6;:12;;;;;;;;;:26;;-1:-1:-1;;;;;;31759:10:0;;;;;;:6;:10;;;;;;;;31743:26;31735:39;;;;-1:-1:-1;;;31735:39:0;;15838:2:1;31735:39:0;;;15820:21:1;-1:-1:-1;15857:18:1;;;15850:29;15896:18;;31735:39:0;15636:284:1;31735:39:0;31818:27;31841:3;31818:18;31829:6;;31818;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;31892:13;;31806:39;;-1:-1:-1;;;;;;31884:21:0;;;31892:13;;31884:21;:72;;;;-1:-1:-1;31940:15:0;;-1:-1:-1;;;;;31926:30:0;;;31940:15;;31926:30;;31884:72;:116;;;;-1:-1:-1;;;;;;31978:22:0;;;;;;:18;:22;;;;;;;;31977:23;31884:116;31862:568;;;32053:14;;32043:6;:24;;32035:64;;;;-1:-1:-1;;;32035:64:0;;16127:2:1;32035:64:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:29;16185:18;;;16178:57;16252:18;;32035:64:0;15925:351:1;32035:64:0;32174:18;;32164:6;32148:13;32158:2;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;32148:13;:22;;;;:::i;:::-;:44;;32118:144;;;;-1:-1:-1;;;32118:144:0;;16483:2:1;32118:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;32118:144:0;16281:350:1;32118:144:0;32304:12;32287:10;;32300:1;32287:14;;;;:::i;:::-;:29;32283:102;;;34189:20;;34237:8;32341:24;;;;;;32403:9;:11;;;:9;:11;;;:::i;:::-;;;;;;31862:568;32456:13;;-1:-1:-1;;;;;32450:19:0;;;32456:13;;32450:19;;;;:46;;-1:-1:-1;;;;;;32474:22:0;;;;;;:18;:22;;;;;;;;32473:23;32450:46;32446:231;;;32573:18;;32563:6;32547:13;32557:2;-1:-1:-1;;;;;12409:18:0;12382:7;12409:18;;;;;;;;;;;;12292:143;32547:13;:22;;;;:::i;:::-;:44;;32517:144;;;;-1:-1:-1;;;32517:144:0;;16483:2:1;32517:144:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:28;16541:18;;;16534:56;16607:18;;32517:144:0;16281:350:1;32517:144:0;32703:13;;-1:-1:-1;;;;;32697:19:0;;;32703:13;;32697:19;:44;;;;-1:-1:-1;;;;;;32720:21:0;;32736:4;32720:21;;32697:44;32693:125;;;32774:28;32798:3;32774:19;32785:7;;32774:6;:10;;:19;;;;:::i;:28::-;32762:40;;32693:125;-1:-1:-1;;;;;32858:21:0;;32874:4;32858:21;;;;:63;;-1:-1:-1;32908:13:0;;-1:-1:-1;;;;;32900:21:0;;;32908:13;;32900:21;;32858:63;:103;;;;-1:-1:-1;32948:13:0;;-1:-1:-1;;;;;32942:19:0;;;32948:13;;32942:19;;32858:103;:134;;;;-1:-1:-1;32982:10:0;;-1:-1:-1;;;32982:10:0;;;;32858:134;32836:225;;;-1:-1:-1;33039:6:0;32836:225;33126:4;33077:28;12409:18;;;;;;;;;;;33170:6;;-1:-1:-1;;;33170:6:0;;;;33169:7;:47;;;;-1:-1:-1;33203:13:0;;-1:-1:-1;;;;;33197:19:0;;;33203:13;;33197:19;33169:47;:79;;;;-1:-1:-1;33237:11:0;;-1:-1:-1;;;33237:11:0;;;;33169:79;:135;;;;;33292:12;;33269:20;:35;33169:135;:186;;;;;33337:18;;33325:9;;:30;33169:186;:246;;;;-1:-1:-1;33376:15:0;;33402:12;33376:39;;;;:15;;:39;;33169:246;33147:606;;;33451:114;33490:56;33494:10;:6;33503:1;33494:10;:::i;:::-;33506:39;33510:20;33532:12;;33506:3;:39::i;:::-;33490:3;:56::i;:::-;33451:16;:114::i;:::-;33613:21;33657:22;;33653:85;;33704:14;:12;:14::i;:::-;33431:322;33147:606;31686:2078;31637:2127;33780:13;;33776:93;;33810:47;33826:4;33840;33847:9;33810:15;:47::i;:::-;33879:48;33895:4;33901:2;33905:21;:6;33916:9;33905:10;:21::i;:::-;33879:15;:48::i;22996:191::-;23089:6;;;-1:-1:-1;;;;;23106:17:0;;;-1:-1:-1;;;;;;23106:17:0;;;;;;;23139:40;;23089:6;;;23106:17;23089:6;;23139:40;;23070:16;;23139:40;23059:128;22996:191;:::o;34705:532::-;26646:6;:13;;-1:-1:-1;;;;26646:13:0;-1:-1:-1;;;26646:13:0;;;34783:15:::1;:38:::0;;::::1;34808:12;34783:38;-1:-1:-1::0;;34783:38:0;;::::1;;::::0;;34856:16:::1;::::0;;34870:1:::1;34856:16:::0;;;;;::::1;::::0;;-1:-1:-1;;34856:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;34856:16:0::1;34832:40;;34901:4;34883;34888:1;34883:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34883:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;34927:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;34927:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;34883:7;;34927:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34917:4;34922:1;34917:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34917:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;34992:15:::1;::::0;34960:62:::1;::::0;34977:4:::1;::::0;34992:15:::1;35010:11:::0;34960:8:::1;:62::i;:::-;35033:15;::::0;:196:::1;::::0;-1:-1:-1;;;35033:196:0;;-1:-1:-1;;;;;35033:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;35114:11;;35033:15:::1;::::0;35156:4;;35183::::1;::::0;35203:15:::1;::::0;35033:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26682:6:0;:14;;-1:-1:-1;;;;26682:14:0;;;-1:-1:-1;;;;34705:532:0:o;35245:170::-;35333:10;;35325:82;;35288:12;;-1:-1:-1;;;;;35333:10:0;;35357:21;;35288:12;35325:82;35288:12;35325:82;35357:21;35333:10;35325:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3366:98;3424:7;3451:5;3455:1;3451;:5;:::i;:::-;3444:12;3366:98;-1:-1:-1;;;3366:98:0:o;3765:::-;3823:7;3850:5;3854:1;3850;:5;:::i;33943:107::-;34000:7;34032:1;34028;:5;34027:15;;34041:1;34027:15;;;-1:-1:-1;34037:1:0;33943:107;-1:-1:-1;33943:107:0:o;16594:770::-;-1:-1:-1;;;;;16734:20:0;;16726:70;;;;-1:-1:-1;;;16726:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16815:23:0;;16807:71;;;;-1:-1:-1;;;16807:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16975:17:0;;16951:21;16975:17;;;;;;;;;;;17025:23;;;;17003:111;;;;-1:-1:-1;;;17003:111:0;;18165:2:1;17003:111:0;;;18147:21:1;18204:2;18184:18;;;18177:30;18243:34;18223:18;;;18216:62;-1:-1:-1;;;18294:18:1;;;18287:36;18340:19;;17003:111:0;17963:402:1;17003:111:0;-1:-1:-1;;;;;17150:17:0;;;:9;:17;;;;;;;;;;;17170:22;;;17150:42;;17214:20;;;;;;;;:30;;17186:6;;17150:9;17214:30;;17186:6;;17214:30;:::i;:::-;;;;;;;;17279:9;-1:-1:-1;;;;;17262:35:0;17271:6;-1:-1:-1;;;;;17262:35:0;;17290:6;17262:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;17262:35:0;;;;;;;;17310:46;20392:125;3009:98;3067:7;3094:5;3098:1;3094;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2587:180::-;2646:6;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;-1:-1:-1;2738:23:1;;2587:180;-1:-1:-1;2587:180:1:o;2772:247::-;2831:6;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;2939:9;2926:23;2958:31;2983:5;2958:31;:::i;3492:248::-;3560:6;3568;3621:2;3609:9;3600:7;3596:23;3592:32;3589:52;;;3637:1;3634;3627:12;3589:52;-1:-1:-1;;3660:23:1;;;3730:2;3715:18;;;3702:32;;-1:-1:-1;3492:248:1:o;3745:118::-;3831:5;3824:13;3817:21;3810:5;3807:32;3797:60;;3853:1;3850;3843:12;3868:382;3933:6;3941;3994:2;3982:9;3973:7;3969:23;3965:32;3962:52;;;4010:1;4007;4000:12;3962:52;4049:9;4036:23;4068:31;4093:5;4068:31;:::i;:::-;4118:5;-1:-1:-1;4175:2:1;4160:18;;4147:32;4188:30;4147:32;4188:30;:::i;:::-;4237:7;4227:17;;;3868:382;;;;;:::o;4255:750::-;4347:6;4355;4363;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4472:9;4459:23;4501:18;4542:2;4534:6;4531:14;4528:34;;;4558:1;4555;4548:12;4528:34;4596:6;4585:9;4581:22;4571:32;;4641:7;4634:4;4630:2;4626:13;4622:27;4612:55;;4663:1;4660;4653:12;4612:55;4703:2;4690:16;4729:2;4721:6;4718:14;4715:34;;;4745:1;4742;4735:12;4715:34;4800:7;4793:4;4783:6;4780:1;4776:14;4772:2;4768:23;4764:34;4761:47;4758:67;;;4821:1;4818;4811:12;4758:67;4852:4;4844:13;;;;-1:-1:-1;4876:6:1;-1:-1:-1;;4917:20:1;;4904:34;4947:28;4904:34;4947:28;:::i;:::-;4994:5;4984:15;;;4255:750;;;;;:::o;5010:388::-;5078:6;5086;5139:2;5127:9;5118:7;5114:23;5110:32;5107:52;;;5155:1;5152;5145:12;5107:52;5194:9;5181:23;5213:31;5238:5;5213:31;:::i;:::-;5263:5;-1:-1:-1;5320:2:1;5305:18;;5292:32;5333:33;5292:32;5333:33;:::i;5403:380::-;5482:1;5478:12;;;;5525;;;5546:61;;5600:4;5592:6;5588:17;5578:27;;5546:61;5653:2;5645:6;5642:14;5622:18;5619:38;5616:161;;5699:10;5694:3;5690:20;5687:1;5680:31;5734:4;5731:1;5724:15;5762:4;5759:1;5752:15;6197:356;6399:2;6381:21;;;6418:18;;;6411:30;6477:34;6472:2;6457:18;;6450:62;6544:2;6529:18;;6197:356::o;6558:127::-;6619:10;6614:3;6610:20;6607:1;6600:31;6650:4;6647:1;6640:15;6674:4;6671:1;6664:15;6690:125;6755:9;;;6776:10;;;6773:36;;;6789:18;;:::i;7179:168::-;7252:9;;;7283;;7300:15;;;7294:22;;7280:37;7270:71;;7321:18;;:::i;7352:217::-;7392:1;7418;7408:132;;7462:10;7457:3;7453:20;7450:1;7443:31;7497:4;7494:1;7487:15;7525:4;7522:1;7515:15;7408:132;-1:-1:-1;7554:9:1;;7352:217::o;7926:251::-;7996:6;8049:2;8037:9;8028:7;8024:23;8020:32;8017:52;;;8065:1;8062;8055:12;8017:52;8097:9;8091:16;8116:31;8141:5;8116:31;:::i;9103:306::-;9191:6;9199;9207;9260:2;9248:9;9239:7;9235:23;9231:32;9228:52;;;9276:1;9273;9266:12;9228:52;9305:9;9299:16;9289:26;;9355:2;9344:9;9340:18;9334:25;9324:35;;9399:2;9388:9;9384:18;9378:25;9368:35;;9103:306;;;;;:::o;9693:245::-;9760:6;9813:2;9801:9;9792:7;9788:23;9784:32;9781:52;;;9829:1;9826;9819:12;9781:52;9861:9;9855:16;9880:28;9902:5;9880:28;:::i;12526:127::-;12587:10;12582:3;12578:20;12575:1;12568:31;12618:4;12615:1;12608:15;12642:4;12639:1;12632:15;12658:135;12697:3;12718:17;;;12715:43;;12738:18;;:::i;:::-;-1:-1:-1;12785:1:1;12774:13;;12658:135::o;14416:401::-;14618:2;14600:21;;;14657:2;14637:18;;;14630:30;14696:34;14691:2;14676:18;;14669:62;-1:-1:-1;;;14762:2:1;14747:18;;14740:35;14807:3;14792:19;;14416:401::o;14822:399::-;15024:2;15006:21;;;15063:2;15043:18;;;15036:30;15102:34;15097:2;15082:18;;15075:62;-1:-1:-1;;;15168:2:1;15153:18;;15146:33;15211:3;15196:19;;14822:399::o;16768:980::-;17030:4;17078:3;17067:9;17063:19;17109:6;17098:9;17091:25;17135:2;17173:6;17168:2;17157:9;17153:18;17146:34;17216:3;17211:2;17200:9;17196:18;17189:31;17240:6;17275;17269:13;17306:6;17298;17291:22;17344:3;17333:9;17329:19;17322:26;;17383:2;17375:6;17371:15;17357:29;;17404:1;17414:195;17428:6;17425:1;17422:13;17414:195;;;17493:13;;-1:-1:-1;;;;;17489:39:1;17477:52;;17584:15;;;;17549:12;;;;17525:1;17443:9;17414:195;;;-1:-1:-1;;;;;;;17665:32:1;;;;17660:2;17645:18;;17638:60;-1:-1:-1;;;17729:3:1;17714:19;17707:35;17626:3;16768:980;-1:-1:-1;;;16768:980:1:o;18370:128::-;18437:9;;;18458:11;;;18455:37;;;18472:18;;:::i

Swarm Source

ipfs://1892477964f647b35fa8a74245da2b53e84560a080d668b9355ceb6592ca8ae2
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.