ETH Price: $3,417.66 (-1.69%)
Gas: 7 Gwei

Token

Grok2 (GROKII)
 

Overview

Max Total Supply

10,000,000 GROKII

Holders

234

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,938.721061032895954172 GROKII

Value
$0.00
0x2ea793c89e91c6cf7c18ffb817fbe4c19dc1c1cf
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Grok2

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 2023-12-01
*/

/*
 * SPDX-License-Identifier: MIT
 * https://t.me/Grok2Alpha
 * https://x.com/Grok2_
 * https://grok2.tech
*/

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 Grok2 is ERC20, Ownable {
    using SafeMath for uint256;

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsInEffect = true;
    bool private transferDelayEnabled = true;
    bool private delayOn = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping(address => bool) private _isDelayExempt;

    bool public tradingLive = false;


    // Fee receivers
    address private mktReceiver;
    address private devReceiver;

    uint256 private totalBuyFee;
    uint256 private buyMktFee;
    uint256 private buyDevFee;

    uint256 private totalSellFee;
    uint256 private sellMktFee;
    uint256 private sellDevFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event mktReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMktFee,
        uint256 buyDevFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMktFee,
        uint256 sellDevFee
    );

    constructor() ERC20("Grok2", "GROKII") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromAntiWhale(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        excludeFromAntiWhale(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _buyMktFee = 35;
        uint256 _buyDevFee = 0;

        uint256 _sellMktFee = 50;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 10_000_000 * 10 ** decimals();

        maxTx = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 10) / 1000;

        swapBackValueMin = (totalSupply * 1) / 1000;
        swapBackValueMax = (totalSupply * 2) / 100;

        buyMktFee = _buyMktFee;
        buyDevFee = _buyDevFee;
        totalBuyFee = buyMktFee + buyDevFee;

        sellMktFee = _sellMktFee;
        sellDevFee = _sellDevFee;
        totalSellFee = sellMktFee + sellDevFee;

        mktReceiver = address(0xCF32Ca660d15789aC9d552acbe883c9dB810ADA0);
        devReceiver = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        excludeFromTaxes(msg.sender, true);
        excludeFromTaxes(address(this), true);
        excludeFromTaxes(address(0xdead), true);
        excludeFromTaxes(mktReceiver, true);

        excludeFromAntiWhale(msg.sender, true);
        excludeFromAntiWhale(address(this), true);
        excludeFromAntiWhale(address(0xdead), true);
        excludeFromAntiWhale(mktReceiver, true);

        transferOwnership(msg.sender);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swpbInfo()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function whaleInfo()
        external
        view
        returns (
            bool _limitsInEffect,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _mktReceiver The wallet that receives the marketing fees
     * @return _devReceiver The wallet that receives the dev fees
     */
    function receivers()
        external
        view
        returns (
            address _mktReceiver,
            address _devReceiver
        )
    {
        return (mktReceiver, devReceiver);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMktFee The fee for buys that gets sent to marketing
     * @return _buyDevFee The fee for buys that gets sent to dev
     * @return _totalSellFee The total fee for sells
     * @return _sellMktFee The fee for sells that gets sent to marketing
     * @return _sellDevFee The fee for sells that gets sent to dev
     */
    function taxes()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMktFee,
            uint256 _buyDevFee,
            uint256 _totalSellFee,
            uint256 _sellMktFee,
            uint256 _sellDevFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMktFee = buyMktFee;
        _buyDevFee = buyDevFee;
        _totalSellFee = totalSellFee;
        _sellMktFee = sellMktFee;
        _sellDevFee = sellDevFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function mappings(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function goLive() external onlyOwner {
        tradingLive = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function rvmLim() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disTDel() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwpbSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setMTx(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setMWallet(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function excludeFromAntiWhale(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesForBuys(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMktFee = _marketingFee;
        buyDevFee = _devFee;
        totalBuyFee = buyMktFee + buyDevFee;
        require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesForSells(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMktFee = _marketingFee;
        sellDevFee = _devFee;
        totalSellFee = sellMktFee + sellDevFee;
        require(
            totalSellFee <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function excludeFromTaxes(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {mktReceiverUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMktWallet(address newWallet) external onlyOwner {
        emit mktReceiverUpdated(newWallet, mktReceiver);
        mktReceiver = newWallet;
    }

    /**
     * @notice Sets the dev wallet
     * @dev onlyOwner.
     * Emits an {devReceiverUpdated} event
     * @param newWallet The new dev wallet
     */
    function setDevWallet(address newWallet) external onlyOwner {
        emit devReceiverUpdated(newWallet, devReceiver);
        devReceiver = newWallet;
    }

    function setDelay() external onlyOwner {
        require(delayOn, "wl disabled");
        delayOn = false;
    }

    function setDelayOn(address[] calldata _addresses, bool _enabled)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            _isDelayExempt[_addresses[i]] = _enabled;
        }
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }
                if (delayOn) {
                    require(
                        _isDelayExempt[from] || _isDelayExempt[to],
                        "_transfer:: Transfer Delay enabled. "
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(dexRouter) &&
                        to != address(dexPair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !isFeeExempt[from] &&
            !isFeeExempt[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (isFeeExempt[from] || isFeeExempt[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(100);
                tokensForDev += (fees * sellDevFee) / totalSellFee;
                tokensForMarketing += (fees * sellMktFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(100);
                tokensForDev += (fees * buyDevFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMktFee) / totalBuyFee;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokenAmount);

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devReceiver).call{value: ethForDev}("");

        (success, ) = address(mktReceiver).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":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","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":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disTDel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"mappings","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receivers","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rvmLim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDelayOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesForBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesForSells","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwpbSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swpbInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"whaleInfo","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805462ffffff191662010101179055600d805460ff191690553480156200003957600080fd5b506040518060400160405280600581526020016423b937b59960d91b8152506040518060400160405280600681526020016547524f4b494960d01b81525081600390816200008891906200086b565b5060046200009782826200086b565b505050620000b4620000ae6200042060201b60201c565b62000424565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d681600162000476565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000121573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000147919062000937565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bb919062000937565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000209573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022f919062000937565b6001600160a01b031660a08190526200024a90600162000476565b60a0516200025a90600162000525565b6023600060328180620002706012600a62000a7e565b6200027f906298968062000a8f565b90506103e86200029182600a62000a8f565b6200029d919062000aa9565b600a9081556103e890620002b390839062000a8f565b620002bf919062000aa9565b6009556103e8620002d282600162000a8f565b620002de919062000aa9565b6006556064620002f082600262000a8f565b620002fc919062000aa9565b6007556010859055601184905562000315848662000acc565b600f55601383905560148290556200032e828462000acc565b601255600d8054610100600160a81b03191674cf32ca660d15789ac9d552acbe883c9db810ada000179055600e8054336001600160a01b031990911681179091556200037c90600162000579565b6200038930600162000579565b6200039861dead600162000579565b600d54620003b69061010090046001600160a01b0316600162000579565b620003c333600162000476565b620003d030600162000476565b620003df61dead600162000476565b600d54620003fd9061010090046001600160a01b0316600162000476565b62000408336200061d565b620004143382620006dd565b50505050505062000ae2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004c55760405162461bcd60e51b815260206004820181905260248201526000805160206200340683398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005c45760405162461bcd60e51b81526020600482018190526024820152600080516020620034068339815191526044820152606401620004bc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000519565b6005546001600160a01b03163314620006685760405162461bcd60e51b81526020600482018190526024820152600080516020620034068339815191526044820152606401620004bc565b6001600160a01b038116620006cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004bc565b620006da8162000424565b50565b6001600160a01b038216620007355760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004bc565b806002600082825462000749919062000acc565b90915550506001600160a01b038216600090815260208190526040812080548392906200077890849062000acc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007f257607f821691505b6020821081036200081357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007c257600081815260208120601f850160051c81016020861015620008425750805b601f850160051c820191505b8181101562000863578281556001016200084e565b505050505050565b81516001600160401b03811115620008875762000887620007c7565b6200089f81620008988454620007dd565b8462000819565b602080601f831160018114620008d75760008415620008be5750858301515b600019600386901b1c1916600185901b17855562000863565b600085815260208120601f198616915b828110156200090857888601518255948401946001909101908401620008e7565b5085821015620009275787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200094a57600080fd5b81516001600160a01b03811681146200096257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009c0578160001904821115620009a457620009a462000969565b80851615620009b257918102915b93841c939080029062000984565b509250929050565b600082620009d95750600162000a78565b81620009e85750600062000a78565b816001811462000a01576002811462000a0c5762000a2c565b600191505062000a78565b60ff84111562000a205762000a2062000969565b50506001821b62000a78565b5060208310610133831016604e8410600b841016171562000a51575081810a62000a78565b62000a5d83836200097f565b806000190482111562000a745762000a7462000969565b0290505b92915050565b60006200096260ff841683620009c8565b808202811582820484141762000a785762000a7862000969565b60008262000ac757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a785762000a7862000969565b60805160a0516128db62000b2b6000396000818161074c01528181611058015261190e0152600081816118d0015281816122a50152818161235e015261239a01526128db6000f3fe6080604052600436106102135760003560e01c806363b23a69116101185780639a7a23d6116100a0578063b34117ba1161006f578063b34117ba146106d4578063dd62ed3e146106f4578063f242ab411461073a578063f2fde38b1461076e578063fc74d0ae1461078e57600080fd5b80639a7a23d614610654578063a457c2d714610674578063a632eca614610694578063a9059cbb146106b457600080fd5b8063739bc261116100e7578063739bc261146105b857806377ac61c9146105d857806386365b27146105f85780638da5cb5b1461060d57806395d89b411461063f57600080fd5b806363b23a691461050157806370a0823114610521578063715018a614610557578063728f8eea1461056c57600080fd5b806323b872dd1161019b57806331c8cbd81161016a57806331c8cbd81461040c57806334168391146104215780633950935114610459578063411026191461047957806356224ea7146104ec57600080fd5b806323b872dd146103705780632a4ef013146103905780632c28f579146103db578063313ce567146103f057600080fd5b806311704f52116101e257806311704f52146102d757806314d178ac146102f157806318160ddd146103115780631f53ac0214610330578063226036611461035057600080fd5b806304ca40611461021f578063065e812b1461026357806306fdde0314610285578063095ea7b3146102a757600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50600554600654600754600160a81b90920460ff16916040805193151584526020840192909252908201526060015b60405180910390f35b34801561026f57600080fd5b5061028361027e36600461242f565b6107ae565b005b34801561029157600080fd5b5061029a610849565b60405161025a919061244c565b3480156102b357600080fd5b506102c76102c236600461249a565b6108db565b604051901515815260200161025a565b3480156102e357600080fd5b50600d546102c79060ff1681565b3480156102fd57600080fd5b5061028361030c3660046124db565b6108f2565b34801561031d57600080fd5b506002545b60405190815260200161025a565b34801561033c57600080fd5b5061028361034b36600461242f565b610993565b34801561035c57600080fd5b5061028361036b36600461255f565b610a1a565b34801561037c57600080fd5b506102c761038b366004612594565b610aa4565b34801561039c57600080fd5b506103b9600854600954600a5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161025a565b3480156103e757600080fd5b50610283610b4e565b3480156103fc57600080fd5b506040516012815260200161025a565b34801561041857600080fd5b50610283610bc5565b34801561042d57600080fd5b50600d54600e54604080516101009093046001600160a01b03908116845290911660208301520161025a565b34801561046557600080fd5b506102c761047436600461249a565b610c26565b34801561048557600080fd5b506104cd61049436600461242f565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161025a565b3480156104f857600080fd5b50610283610c62565b34801561050d57600080fd5b5061028361051c3660046125d5565b610ce0565b34801561052d57600080fd5b5061032261053c36600461242f565b6001600160a01b031660009081526020819052604090205490565b34801561056357600080fd5b50610283610dc3565b34801561057857600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c00161025a565b3480156105c457600080fd5b506102836105d33660046125ee565b610df9565b3480156105e457600080fd5b506102836105f33660046125d5565b610eeb565b34801561060457600080fd5b50610283610fbb565b34801561061957600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161025a565b34801561064b57600080fd5b5061029a61101d565b34801561066057600080fd5b5061028361066f36600461255f565b61102c565b34801561068057600080fd5b506102c761068f36600461249a565b61110b565b3480156106a057600080fd5b506102836106af366004612610565b6111a4565b3480156106c057600080fd5b506102c76106cf36600461249a565b611342565b3480156106e057600080fd5b506102836106ef36600461255f565b61134f565b34801561070057600080fd5b5061032261070f366004612643565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561074657600080fd5b506106277f000000000000000000000000000000000000000000000000000000000000000081565b34801561077a57600080fd5b5061028361078936600461242f565b6113d1565b34801561079a57600080fd5b506102836107a93660046125ee565b61146c565b6005546001600160a01b031633146107e15760405162461bcd60e51b81526004016107d89061267c565b60405180910390fd5b600d546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b606060038054610858906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610884906126b1565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b60006108e8338484611557565b5060015b92915050565b6005546001600160a01b0316331461091c5760405162461bcd60e51b81526004016107d89061267c565b60005b8281101561098d5781600c600086868581811061093e5761093e6126eb565b9050602002016020810190610953919061242f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061098581612717565b91505061091f565b50505050565b6005546001600160a01b031633146109bd5760405162461bcd60e51b81526004016107d89061267c565b600e546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a445760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6000610ab184848461167b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b365760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107d8565b610b438533858403611557565b506001949350505050565b6005546001600160a01b03163314610b785760405162461bcd60e51b81526004016107d89061267c565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107d89061267c565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108e8918590610c5d908690612730565b611557565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b81526004016107d89061267c565b60085462010000900460ff16610cd25760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b60448201526064016107d8565b6008805462ff000019169055565b6005546001600160a01b03163314610d0a5760405162461bcd60e51b81526004016107d89061267c565b6005811015610d675760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107d8565b6103e8610d7360025490565b610d7d9083612743565b610d87919061275a565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610ded5760405162461bcd60e51b81526004016107d89061267c565b610df76000611f0f565b565b6005546001600160a01b03163314610e235760405162461bcd60e51b81526004016107d89061267c565b60108290556011819055610e378183612730565b600f81905560641015610e9d5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b60648201526084016107d8565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610f155760405162461bcd60e51b81526004016107d89061267c565b6002811015610f665760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e322560448201526064016107d8565b6103e8610f7260025490565b610f7c9083612743565b610f86919061275a565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610db8565b6005546001600160a01b03163314610fe55760405162461bcd60e51b81526004016107d89061267c565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b606060048054610858906126b1565b6005546001600160a01b031633146110565760405162461bcd60e51b81526004016107d89061267c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110fd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d8565b6111078282611f61565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561118d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d8565b61119a3385858403611557565b5060019392505050565b6005546001600160a01b031633146111ce5760405162461bcd60e51b81526004016107d89061267c565b600182101561123c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b60648201526084016107d8565b8181101561129f5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b60648201526084016107d8565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906112c99190612743565b6112d3919061275a565b600655612710816112e360025490565b6112ed9190612743565b6112f7919061275a565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b60006108e833848461167b565b6005546001600160a01b031633146113795760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610a98565b6005546001600160a01b031633146113fb5760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b0381166114605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d8565b61146981611f0f565b50565b6005546001600160a01b031633146114965760405162461bcd60e51b81526004016107d89061267c565b601382905560148190556114aa8183612730565b6012819055606410156115115760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b60648201526084016107d8565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610edf565b6001600160a01b0383166115b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d8565b6001600160a01b03821661161a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a15760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166116c75760405162461bcd60e51b81526004016107d8906127c1565b806000036116e0576116db83836000611fb5565b505050565b60085460ff1615611c39576005546001600160a01b0384811691161480159061171757506005546001600160a01b03838116911614155b801561172b57506001600160a01b03821615155b801561174257506001600160a01b03821661dead14155b80156117585750600554600160a01b900460ff16155b15611c3957600d5460ff166117fd576001600160a01b03831660009081526017602052604090205460ff16806117a657506001600160a01b03821660009081526017602052604090205460ff165b6117fd5760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b60648201526084016107d8565b60085462010000900460ff16156118a5576001600160a01b0383166000908152600c602052604090205460ff168061184d57506001600160a01b0382166000908152600c602052604090205460ff165b6118a55760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b60648201526084016107d8565b600854610100900460ff16156119f1576005546001600160a01b0383811691161480159061190557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561194357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156119f157326000908152600b602052604090205443116119de5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107d8565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a3257506001600160a01b03821660009081526018602052604090205460ff16155b15611b0757600a54811115611a985760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b60648201526084016107d8565b6009546001600160a01b038316600090815260208190526040902054611abe9083612730565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b611c39565b6001600160a01b03821660009081526019602052604090205460ff168015611b4857506001600160a01b03831660009081526018602052604090205460ff16155b15611baf57600a54811115611b025760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b60648201526084016107d8565b6001600160a01b03821660009081526018602052604090205460ff16611c39576009546001600160a01b038316600090815260208190526040902054611bf59083612730565b1115611c395760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b3060009081526020819052604090205460065481108015908190611c665750600554600160a81b900460ff165b8015611c7c5750600554600160a01b900460ff16155b8015611ca157506001600160a01b03851660009081526019602052604090205460ff16155b8015611cc657506001600160a01b03851660009081526017602052604090205460ff16155b8015611ceb57506001600160a01b03841660009081526017602052604090205460ff16155b15611d19576005805460ff60a01b1916600160a01b179055611d0b612109565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d6757506001600160a01b03851660009081526017602052604090205460ff165b15611d70575060005b60008115611efb576001600160a01b03861660009081526019602052604090205460ff168015611da257506000601254115b15611e3057611dc76064611dc16012548861222f90919063ffffffff16565b90612242565b905060125460145482611dda9190612743565b611de4919061275a565b60166000828254611df59190612730565b9091555050601254601354611e0a9083612743565b611e14919061275a565b60156000828254611e259190612730565b90915550611edd9050565b6001600160a01b03871660009081526019602052604090205460ff168015611e5a57506000600f54115b15611edd57611e796064611dc1600f548861222f90919063ffffffff16565b9050600f5460115482611e8c9190612743565b611e96919061275a565b60166000828254611ea79190612730565b9091555050600f54601054611ebc9083612743565b611ec6919061275a565b60156000828254611ed79190612730565b90915550505b8015611eee57611eee873083611fb5565b611ef88186612804565b94505b611f06878787611fb5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fdb5760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166120015760405162461bcd60e51b81526004016107d8906127c1565b6001600160a01b038316600090815260208190526040902054818110156120795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d8565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120b0908490612730565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120fc91815260200190565b60405180910390a361098d565b3060009081526020819052604081205490819081810361212857505050565b6007548311156121385760075492505b82476121438261224e565b600061214f478361240e565b9050600061216c86611dc16016548561222f90919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50505050505050505050565b600061223b8284612743565b9392505050565b600061223b828461275a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612283576122836126eb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123259190612817565b81600181518110612338576123386126eb565b60200260200101906001600160a01b031690816001600160a01b031681525050612383307f000000000000000000000000000000000000000000000000000000000000000084611557565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123d8908590600090869030904290600401612834565b600060405180830381600087803b1580156123f257600080fd5b505af1158015612406573d6000803e3d6000fd5b505050505050565b600061223b8284612804565b6001600160a01b038116811461146957600080fd5b60006020828403121561244157600080fd5b813561223b8161241a565b600060208083528351808285015260005b818110156124795785810183015185820160400152820161245d565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156124ad57600080fd5b82356124b88161241a565b946020939093013593505050565b803580151581146124d657600080fd5b919050565b6000806000604084860312156124f057600080fd5b833567ffffffffffffffff8082111561250857600080fd5b818601915086601f83011261251c57600080fd5b81358181111561252b57600080fd5b8760208260051b850101111561254057600080fd5b60209283019550935061255691860190506124c6565b90509250925092565b6000806040838503121561257257600080fd5b823561257d8161241a565b915061258b602084016124c6565b90509250929050565b6000806000606084860312156125a957600080fd5b83356125b48161241a565b925060208401356125c48161241a565b929592945050506040919091013590565b6000602082840312156125e757600080fd5b5035919050565b6000806040838503121561260157600080fd5b50508035926020909101359150565b60008060006060848603121561262557600080fd5b61262e846124c6565b95602085013595506040909401359392505050565b6000806040838503121561265657600080fd5b82356126618161241a565b915060208301356126718161241a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806126c557607f821691505b6020821081036126e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161272957612729612701565b5060010190565b808201808211156108ec576108ec612701565b80820281158282048414176108ec576108ec612701565b60008261277757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108ec576108ec612701565b60006020828403121561282957600080fd5b815161223b8161241a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f5823343f3622f045caa462861dc7fbef734fc398f5ec8f74c6d567985cbd0fa64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102135760003560e01c806363b23a69116101185780639a7a23d6116100a0578063b34117ba1161006f578063b34117ba146106d4578063dd62ed3e146106f4578063f242ab411461073a578063f2fde38b1461076e578063fc74d0ae1461078e57600080fd5b80639a7a23d614610654578063a457c2d714610674578063a632eca614610694578063a9059cbb146106b457600080fd5b8063739bc261116100e7578063739bc261146105b857806377ac61c9146105d857806386365b27146105f85780638da5cb5b1461060d57806395d89b411461063f57600080fd5b806363b23a691461050157806370a0823114610521578063715018a614610557578063728f8eea1461056c57600080fd5b806323b872dd1161019b57806331c8cbd81161016a57806331c8cbd81461040c57806334168391146104215780633950935114610459578063411026191461047957806356224ea7146104ec57600080fd5b806323b872dd146103705780632a4ef013146103905780632c28f579146103db578063313ce567146103f057600080fd5b806311704f52116101e257806311704f52146102d757806314d178ac146102f157806318160ddd146103115780631f53ac0214610330578063226036611461035057600080fd5b806304ca40611461021f578063065e812b1461026357806306fdde0314610285578063095ea7b3146102a757600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50600554600654600754600160a81b90920460ff16916040805193151584526020840192909252908201526060015b60405180910390f35b34801561026f57600080fd5b5061028361027e36600461242f565b6107ae565b005b34801561029157600080fd5b5061029a610849565b60405161025a919061244c565b3480156102b357600080fd5b506102c76102c236600461249a565b6108db565b604051901515815260200161025a565b3480156102e357600080fd5b50600d546102c79060ff1681565b3480156102fd57600080fd5b5061028361030c3660046124db565b6108f2565b34801561031d57600080fd5b506002545b60405190815260200161025a565b34801561033c57600080fd5b5061028361034b36600461242f565b610993565b34801561035c57600080fd5b5061028361036b36600461255f565b610a1a565b34801561037c57600080fd5b506102c761038b366004612594565b610aa4565b34801561039c57600080fd5b506103b9600854600954600a5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161025a565b3480156103e757600080fd5b50610283610b4e565b3480156103fc57600080fd5b506040516012815260200161025a565b34801561041857600080fd5b50610283610bc5565b34801561042d57600080fd5b50600d54600e54604080516101009093046001600160a01b03908116845290911660208301520161025a565b34801561046557600080fd5b506102c761047436600461249a565b610c26565b34801561048557600080fd5b506104cd61049436600461242f565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161025a565b3480156104f857600080fd5b50610283610c62565b34801561050d57600080fd5b5061028361051c3660046125d5565b610ce0565b34801561052d57600080fd5b5061032261053c36600461242f565b6001600160a01b031660009081526020819052604090205490565b34801561056357600080fd5b50610283610dc3565b34801561057857600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c00161025a565b3480156105c457600080fd5b506102836105d33660046125ee565b610df9565b3480156105e457600080fd5b506102836105f33660046125d5565b610eeb565b34801561060457600080fd5b50610283610fbb565b34801561061957600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161025a565b34801561064b57600080fd5b5061029a61101d565b34801561066057600080fd5b5061028361066f36600461255f565b61102c565b34801561068057600080fd5b506102c761068f36600461249a565b61110b565b3480156106a057600080fd5b506102836106af366004612610565b6111a4565b3480156106c057600080fd5b506102c76106cf36600461249a565b611342565b3480156106e057600080fd5b506102836106ef36600461255f565b61134f565b34801561070057600080fd5b5061032261070f366004612643565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561074657600080fd5b506106277f0000000000000000000000003b2873243e3a79773b4e0dd78c2e7fb7f2b1066781565b34801561077a57600080fd5b5061028361078936600461242f565b6113d1565b34801561079a57600080fd5b506102836107a93660046125ee565b61146c565b6005546001600160a01b031633146107e15760405162461bcd60e51b81526004016107d89061267c565b60405180910390fd5b600d546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b606060038054610858906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610884906126b1565b80156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b60006108e8338484611557565b5060015b92915050565b6005546001600160a01b0316331461091c5760405162461bcd60e51b81526004016107d89061267c565b60005b8281101561098d5781600c600086868581811061093e5761093e6126eb565b9050602002016020810190610953919061242f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061098581612717565b91505061091f565b50505050565b6005546001600160a01b031633146109bd5760405162461bcd60e51b81526004016107d89061267c565b600e546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a445760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6000610ab184848461167b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b365760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107d8565b610b438533858403611557565b506001949350505050565b6005546001600160a01b03163314610b785760405162461bcd60e51b81526004016107d89061267c565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107d89061267c565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108e8918590610c5d908690612730565b611557565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b81526004016107d89061267c565b60085462010000900460ff16610cd25760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b60448201526064016107d8565b6008805462ff000019169055565b6005546001600160a01b03163314610d0a5760405162461bcd60e51b81526004016107d89061267c565b6005811015610d675760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107d8565b6103e8610d7360025490565b610d7d9083612743565b610d87919061275a565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610ded5760405162461bcd60e51b81526004016107d89061267c565b610df76000611f0f565b565b6005546001600160a01b03163314610e235760405162461bcd60e51b81526004016107d89061267c565b60108290556011819055610e378183612730565b600f81905560641015610e9d5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b60648201526084016107d8565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610f155760405162461bcd60e51b81526004016107d89061267c565b6002811015610f665760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e322560448201526064016107d8565b6103e8610f7260025490565b610f7c9083612743565b610f86919061275a565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610db8565b6005546001600160a01b03163314610fe55760405162461bcd60e51b81526004016107d89061267c565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b606060048054610858906126b1565b6005546001600160a01b031633146110565760405162461bcd60e51b81526004016107d89061267c565b7f0000000000000000000000003b2873243e3a79773b4e0dd78c2e7fb7f2b106676001600160a01b0316826001600160a01b0316036110fd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d8565b6111078282611f61565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561118d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d8565b61119a3385858403611557565b5060019392505050565b6005546001600160a01b031633146111ce5760405162461bcd60e51b81526004016107d89061267c565b600182101561123c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b60648201526084016107d8565b8181101561129f5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b60648201526084016107d8565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906112c99190612743565b6112d3919061275a565b600655612710816112e360025490565b6112ed9190612743565b6112f7919061275a565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b60006108e833848461167b565b6005546001600160a01b031633146113795760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610a98565b6005546001600160a01b031633146113fb5760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b0381166114605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d8565b61146981611f0f565b50565b6005546001600160a01b031633146114965760405162461bcd60e51b81526004016107d89061267c565b601382905560148190556114aa8183612730565b6012819055606410156115115760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b60648201526084016107d8565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610edf565b6001600160a01b0383166115b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d8565b6001600160a01b03821661161a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a15760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166116c75760405162461bcd60e51b81526004016107d8906127c1565b806000036116e0576116db83836000611fb5565b505050565b60085460ff1615611c39576005546001600160a01b0384811691161480159061171757506005546001600160a01b03838116911614155b801561172b57506001600160a01b03821615155b801561174257506001600160a01b03821661dead14155b80156117585750600554600160a01b900460ff16155b15611c3957600d5460ff166117fd576001600160a01b03831660009081526017602052604090205460ff16806117a657506001600160a01b03821660009081526017602052604090205460ff165b6117fd5760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b60648201526084016107d8565b60085462010000900460ff16156118a5576001600160a01b0383166000908152600c602052604090205460ff168061184d57506001600160a01b0382166000908152600c602052604090205460ff165b6118a55760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b60648201526084016107d8565b600854610100900460ff16156119f1576005546001600160a01b0383811691161480159061190557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561194357507f0000000000000000000000003b2873243e3a79773b4e0dd78c2e7fb7f2b106676001600160a01b0316826001600160a01b031614155b156119f157326000908152600b602052604090205443116119de5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107d8565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a3257506001600160a01b03821660009081526018602052604090205460ff16155b15611b0757600a54811115611a985760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b60648201526084016107d8565b6009546001600160a01b038316600090815260208190526040902054611abe9083612730565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b611c39565b6001600160a01b03821660009081526019602052604090205460ff168015611b4857506001600160a01b03831660009081526018602052604090205460ff16155b15611baf57600a54811115611b025760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b60648201526084016107d8565b6001600160a01b03821660009081526018602052604090205460ff16611c39576009546001600160a01b038316600090815260208190526040902054611bf59083612730565b1115611c395760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b3060009081526020819052604090205460065481108015908190611c665750600554600160a81b900460ff165b8015611c7c5750600554600160a01b900460ff16155b8015611ca157506001600160a01b03851660009081526019602052604090205460ff16155b8015611cc657506001600160a01b03851660009081526017602052604090205460ff16155b8015611ceb57506001600160a01b03841660009081526017602052604090205460ff16155b15611d19576005805460ff60a01b1916600160a01b179055611d0b612109565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d6757506001600160a01b03851660009081526017602052604090205460ff165b15611d70575060005b60008115611efb576001600160a01b03861660009081526019602052604090205460ff168015611da257506000601254115b15611e3057611dc76064611dc16012548861222f90919063ffffffff16565b90612242565b905060125460145482611dda9190612743565b611de4919061275a565b60166000828254611df59190612730565b9091555050601254601354611e0a9083612743565b611e14919061275a565b60156000828254611e259190612730565b90915550611edd9050565b6001600160a01b03871660009081526019602052604090205460ff168015611e5a57506000600f54115b15611edd57611e796064611dc1600f548861222f90919063ffffffff16565b9050600f5460115482611e8c9190612743565b611e96919061275a565b60166000828254611ea79190612730565b9091555050600f54601054611ebc9083612743565b611ec6919061275a565b60156000828254611ed79190612730565b90915550505b8015611eee57611eee873083611fb5565b611ef88186612804565b94505b611f06878787611fb5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fdb5760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166120015760405162461bcd60e51b81526004016107d8906127c1565b6001600160a01b038316600090815260208190526040902054818110156120795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d8565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120b0908490612730565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120fc91815260200190565b60405180910390a361098d565b3060009081526020819052604081205490819081810361212857505050565b6007548311156121385760075492505b82476121438261224e565b600061214f478361240e565b9050600061216c86611dc16016548561222f90919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50505050505050505050565b600061223b8284612743565b9392505050565b600061223b828461275a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612283576122836126eb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123259190612817565b81600181518110612338576123386126eb565b60200260200101906001600160a01b031690816001600160a01b031681525050612383307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611557565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123d8908590600090869030904290600401612834565b600060405180830381600087803b1580156123f257600080fd5b505af1158015612406573d6000803e3d6000fd5b505050505050565b600061223b8284612804565b6001600160a01b038116811461146957600080fd5b60006020828403121561244157600080fd5b813561223b8161241a565b600060208083528351808285015260005b818110156124795785810183015185820160400152820161245d565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156124ad57600080fd5b82356124b88161241a565b946020939093013593505050565b803580151581146124d657600080fd5b919050565b6000806000604084860312156124f057600080fd5b833567ffffffffffffffff8082111561250857600080fd5b818601915086601f83011261251c57600080fd5b81358181111561252b57600080fd5b8760208260051b850101111561254057600080fd5b60209283019550935061255691860190506124c6565b90509250925092565b6000806040838503121561257257600080fd5b823561257d8161241a565b915061258b602084016124c6565b90509250929050565b6000806000606084860312156125a957600080fd5b83356125b48161241a565b925060208401356125c48161241a565b929592945050506040919091013590565b6000602082840312156125e757600080fd5b5035919050565b6000806040838503121561260157600080fd5b50508035926020909101359150565b60008060006060848603121561262557600080fd5b61262e846124c6565b95602085013595506040909401359392505050565b6000806040838503121561265657600080fd5b82356126618161241a565b915060208301356126718161241a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806126c557607f821691505b6020821081036126e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161272957612729612701565b5060010190565b808201808211156108ec576108ec612701565b80820281158282048414176108ec576108ec612701565b60008261277757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108ec576108ec612701565b60006020828403121561282957600080fd5b815161223b8161241a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f5823343f3622f045caa462861dc7fbef734fc398f5ec8f74c6d567985cbd0fa64736f6c63430008130033

Deployed Bytecode Sourcemap

25397:21580:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30606:349;;;;;;;;;;-1:-1:-1;30838:15:0;;30884:16;;30931;;-1:-1:-1;;;30838:15:0;;;;;;30606:349;;;235:14:1;;228:22;210:41;;282:2;267:18;;260:34;;;;310:18;;;303:34;198:2;183:18;30606:349:0;;;;;;;;40042:160;;;;;;;;;;-1:-1:-1;40042:160:0;;;;;:::i;:::-;;:::i;:::-;;10995:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13228:194::-;;;;;;;;;;-1:-1:-1;13228:194:0;;;;;:::i;:::-;;:::i;:::-;;;1774:14:1;;1767:22;1749:41;;1737:2;1722:18;13228:194:0;1609:187:1;26107:31:0;;;;;;;;;;-1:-1:-1;26107:31:0;;;;;;;;40667:241;;;;;;;;;;-1:-1:-1;40667:241:0;;;;;:::i;:::-;;:::i;12115:108::-;;;;;;;;;;-1:-1:-1;12203:12:0;;12115:108;;;2806:25:1;;;2794:2;2779:18;12115:108:0;2660:177:1;40376:160:0;;;;;;;;;;-1:-1:-1;40376:160:0;;;;;:::i;:::-;;:::i;38874:175::-;;;;;;;;;;-1:-1:-1;38874:175:0;;;;;:::i;:::-;;:::i;13900:529::-;;;;;;;;;;-1:-1:-1;13900:529:0;;;;;:::i;:::-;;:::i;31376:389::-;;;;;;;;;;;;31630:14;;31723:9;;31752:5;;31630:14;;;;;;31679:20;;;;;31376:389;;;;;3867:14:1;;3860:22;3842:41;;3926:14;;3919:22;3914:2;3899:18;;3892:50;3958:18;;;3951:34;4016:2;4001:18;;3994:34;3829:3;3814:19;31376:389:0;3623:411:1;34178:154:0;;;;;;;;;;;;;:::i;11957:93::-;;;;;;;;;;-1:-1:-1;11957:93:0;;12040:2;4181:36:1;;4169:2;4154:18;11957:93:0;4039:184:1;34487:124:0;;;;;;;;;;;;;:::i;31991:209::-;;;;;;;;;;-1:-1:-1;32167:11:0;;32180;;31991:209;;;32167:11;;;;-1:-1:-1;;;;;32167:11:0;;;4440:34:1;;32180:11:0;;;4505:2:1;4490:18;;4483:43;4375:18;31991:209:0;4228:304:1;14834:290:0;;;;;;;;;;-1:-1:-1;14834:290:0;;;;;:::i;:::-;;:::i;33622:413::-;;;;;;;;;;-1:-1:-1;33622:413:0;;;;;:::i;:::-;-1:-1:-1;;;;;33879:20:0;33737:17;33879:20;;;:11;:20;;;;;;;;;33929:15;:24;;;;;;33993:25;:34;;;;;;33879:20;;;;;33929:24;;;;33993:34;;33622:413;;;;;4746:14:1;;4739:22;4721:41;;4805:14;;4798:22;4793:2;4778:18;;4771:50;4864:14;4857:22;4837:18;;;4830:50;4709:2;4694:18;33622:413:0;4537:349:1;40544:115:0;;;;;;;;;;;;;:::i;36558:231::-;;;;;;;;;;-1:-1:-1;36558:231:0;;;;;:::i;:::-;;:::i;12286:143::-;;;;;;;;;;-1:-1:-1;12286:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12403:18:0;12376:7;12403:18;;;;;;;;;;;;12286:143;22334:103;;;;;;;;;;;;;:::i;32664:508::-;;;;;;;;;;-1:-1:-1;32978:11:0;;33013:9;;33046;;33082:12;;33119:10;;33154;;32664:508;;;5363:25:1;;;5419:2;5404:18;;5397:34;;;;5447:18;;;5440:34;;;;5505:2;5490:18;;5483:34;5548:3;5533:19;;5526:35;5592:3;5577:19;;5570:35;5350:3;5335:19;32664:508:0;5076:535:1;37539:374:0;;;;;;;;;;-1:-1:-1;37539:374:0;;;;;:::i;:::-;;:::i;36140:211::-;;;;;;;;;;-1:-1:-1;36140:211:0;;;;;:::i;:::-;;:::i;34751:139::-;;;;;;;;;;;;;:::i;21683:87::-;;;;;;;;;;-1:-1:-1;21756:6:0;;-1:-1:-1;;;;;21756:6:0;21683:87;;;-1:-1:-1;;;;;6033:32:1;;;6015:51;;6003:2;5988:18;21683:87:0;5869:203:1;11214:104:0;;;;;;;;;;;;;:::i;39360:300::-;;;;;;;;;;-1:-1:-1;39360:300:0;;;;;:::i;:::-;;:::i;15623:475::-;;;;;;;;;;-1:-1:-1;15623:475:0;;;;;:::i;:::-;;:::i;35355:549::-;;;;;;;;;;-1:-1:-1;35355:549:0;;;;;:::i;:::-;;:::i;12642:200::-;;;;;;;;;;-1:-1:-1;12642:200:0;;;;;:::i;:::-;;:::i;37057:195::-;;;;;;;;;;-1:-1:-1;37057:195:0;;;;;:::i;:::-;;:::i;12905:176::-;;;;;;;;;;-1:-1:-1;12905:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13046:18:0;;;13019:7;13046:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12905:176;25517:32;;;;;;;;;;;;;;;22592:238;;;;;;;;;;-1:-1:-1;22592:238:0;;;;;:::i;:::-;;:::i;38202:423::-;;;;;;;;;;-1:-1:-1;38202:423:0;;;;;:::i;:::-;;:::i;40042:160::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;;;;;;;;;40148:11:::1;::::0;40118:42:::1;::::0;-1:-1:-1;;;;;40148:11:0::1;::::0;;::::1;::::0;::::1;::::0;40118:42;::::1;::::0;::::1;::::0;;;::::1;40171:11;:23:::0;;-1:-1:-1;;;;;40171:23:0;;::::1;;;-1:-1:-1::0;;;;;;40171:23:0;;::::1;::::0;;;::::1;::::0;;40042:160::o;10995:100::-;11049:13;11082:5;11075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10995:100;:::o;13228:194::-;13336:4;13353:39;10081:10;13376:7;13385:6;13353:8;:39::i;:::-;-1:-1:-1;13410:4:0;13228:194;;;;;:::o;40667:241::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;40791:9:::1;40786:115;40806:21:::0;;::::1;40786:115;;;40881:8;40849:14;:29;40864:10;;40875:1;40864:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40849:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40849:29:0;:40;;-1:-1:-1;;40849:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40829:3;::::1;::::0;::::1;:::i;:::-;;;;40786:115;;;;40667:241:::0;;;:::o;40376:160::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;40482:11:::1;::::0;40452:42:::1;::::0;-1:-1:-1;;;;;40482:11:0;;::::1;::::0;40452:42;::::1;::::0;::::1;::::0;40482:11:::1;::::0;40452:42:::1;40505:11;:23:::0;;-1:-1:-1;;;;;;40505:23:0::1;-1:-1:-1::0;;;;;40505:23:0;;;::::1;::::0;;;::::1;::::0;;40376:160::o;38874:175::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38960:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;38960:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39007:34;;1749:41:1;;;39007:34:0::1;::::0;1722:18:1;39007:34:0::1;;;;;;;;38874:175:::0;;:::o;13900:529::-;14040:4;14057:36;14067:6;14075:9;14086:6;14057:9;:36::i;:::-;-1:-1:-1;;;;;14133:19:0;;14106:24;14133:19;;;:11;:19;;;;;;;;10081:10;14133:33;;;;;;;;14199:26;;;;14177:116;;;;-1:-1:-1;;;14177:116:0;;8143:2:1;14177:116:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:38;8320:19;;14177:116:0;7941:404:1;14177:116:0;14329:57;14338:6;10081:10;14379:6;14360:16;:25;14329:8;:57::i;:::-;-1:-1:-1;14417:4:0;;13900:529;-1:-1:-1;;;;13900:529:0:o;34178:154::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;34226:11:::1;:18:::0;;-1:-1:-1;;34226:18:0::1;34240:4;34226:18;::::0;;34255:15:::1;:22:::0;;-1:-1:-1;;;;34255:22:0::1;-1:-1:-1::0;;;34255:22:0::1;::::0;;34293:31:::1;::::0;34308:15:::1;::::0;34293:31:::1;::::0;34226:11:::1;::::0;34293:31:::1;34178:154::o:0;34487:124::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;34535:14:::1;:22:::0;;-1:-1:-1;;34535:22:0::1;::::0;;34573:30:::1;::::0;34587:15:::1;::::0;34573:30:::1;::::0;34552:5:::1;::::0;34573:30:::1;34487:124::o:0;14834:290::-;10081:10;14947:4;15036:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15036:34:0;;;;;;;;;;14947:4;;14964:130;;15014:7;;15036:47;;15073:10;;15036:47;:::i;:::-;14964:8;:130::i;40544:115::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;40602:7:::1;::::0;;;::::1;;;40594:31;;;::::0;-1:-1:-1;;;40594:31:0;;8682:2:1;40594:31:0::1;::::0;::::1;8664:21:1::0;8721:2;8701:18;;;8694:30;-1:-1:-1;;;8740:18:1;;;8733:41;8791:18;;40594:31:0::1;8480:335:1::0;40594:31:0::1;40636:7;:15:::0;;-1:-1:-1;;40636:15:0::1;::::0;;40544:115::o;36558:231::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;36642:1:::1;36632:6;:11;;36624:60;;;::::0;-1:-1:-1;;;36624:60:0;;9022:2:1;36624:60:0::1;::::0;::::1;9004:21:1::0;9061:2;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;-1:-1:-1;;;9151:18:1;;;9144:34;9195:19;;36624:60:0::1;8820:400:1::0;36624:60:0::1;36734:4;36717:13;12203:12:::0;;;12115:108;36717:13:::1;36708:22;::::0;:6;:22:::1;:::i;:::-;36707:31;;;;:::i;:::-;36695:9;:43:::0;;;36754:27:::1;::::0;2806:25:1;;;36754:27:0::1;::::0;2794:2:1;2779:18;36754:27:0::1;;;;;;;;36558:231:::0;:::o;22334:103::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;22399:30:::1;22426:1;22399:18;:30::i;:::-;22334:103::o:0;37539:374::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;37658:9:::1;:25:::0;;;37694:9:::1;:19:::0;;;37738:21:::1;37706:7:::0;37670:13;37738:21:::1;:::i;:::-;37724:11;:35:::0;;;37793:3:::1;-1:-1:-1::0;37778:18:0::1;37770:71;;;::::0;-1:-1:-1;;;37770:71:0;;9822:2:1;37770:71:0::1;::::0;::::1;9804:21:1::0;9861:2;9841:18;;;9834:30;9900:34;9880:18;;;9873:62;-1:-1:-1;;;9951:18:1;;;9944:38;9999:19;;37770:71:0::1;9620:404:1::0;37770:71:0::1;37871:11;::::0;37884:9:::1;::::0;37895::::1;::::0;37857:48:::1;::::0;;10231:25:1;;;10287:2;10272:18;;10265:34;;;;10315:18;;;10308:34;37857:48:0::1;::::0;10219:2:1;10204:18;37857:48:0::1;;;;;;;;37539:374:::0;;:::o;36140:211::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;36220:1:::1;36210:6;:11;;36202:56;;;::::0;-1:-1:-1;;;36202:56:0;;10555:2:1;36202:56:0::1;::::0;::::1;10537:21:1::0;;;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;10685:18;;36202:56:0::1;10353:356:1::0;36202:56:0::1;36304:4;36287:13;12203:12:::0;;;12115:108;36287:13:::1;36278:22;::::0;:6;:22:::1;:::i;:::-;36277:31;;;;:::i;:::-;36269:5;:39:::0;;;36324:19:::1;::::0;2806:25:1;;;36324:19:0::1;::::0;2794:2:1;2779:18;36324:19:0::1;2660:177:1::0;34751:139:0;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;34800:20:::1;:28:::0;;-1:-1:-1;;34800:28:0::1;::::0;;34844:38:::1;::::0;34866:15:::1;::::0;34844:38:::1;::::0;34823:5:::1;::::0;34844:38:::1;34751:139::o:0;11214:104::-;11270:13;11303:7;11296:14;;;;;:::i;39360:300::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;39506:7:::1;-1:-1:-1::0;;;;;39498:15:0::1;:4;-1:-1:-1::0;;;;;39498:15:0::1;::::0;39476:122:::1;;;::::0;-1:-1:-1;;;39476:122:0;;10916:2:1;39476:122:0::1;::::0;::::1;10898:21:1::0;10955:2;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;11065:27;11045:18;;;11038:55;11110:19;;39476:122:0::1;10714:421:1::0;39476:122:0::1;39611:41;39640:4;39646:5;39611:28;:41::i;:::-;39360:300:::0;;:::o;15623:475::-;10081:10;15741:4;15785:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15785:34:0;;;;;;;;;;15852:35;;;;15830:122;;;;-1:-1:-1;;;15830:122:0;;11342:2:1;15830:122:0;;;11324:21:1;11381:2;11361:18;;;11354:30;11420:34;11400:18;;;11393:62;-1:-1:-1;;;11471:18:1;;;11464:35;11516:19;;15830:122:0;11140:401:1;15830:122:0;15988:67;10081:10;16011:7;16039:15;16020:16;:34;15988:8;:67::i;:::-;-1:-1:-1;16086:4:0;;15623:475;-1:-1:-1;;;15623:475:0:o;35355:549::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;35517:1:::1;35509:4;:9;;35487:111;;;::::0;-1:-1:-1;;;35487:111:0;;11748:2:1;35487:111:0::1;::::0;::::1;11730:21:1::0;11787:2;11767:18;;;11760:30;11826:34;11806:18;;;11799:62;-1:-1:-1;;;11877:18:1;;;11870:50;11937:19;;35487:111:0::1;11546:416:1::0;35487:111:0::1;35625:4;35617;:12;;35609:67;;;::::0;-1:-1:-1;;;35609:67:0;;12169:2:1;35609:67:0::1;::::0;::::1;12151:21:1::0;12208:2;12188:18;;;12181:30;12247:34;12227:18;;;12220:62;-1:-1:-1;;;12298:18:1;;;12291:40;12348:19;;35609:67:0::1;11967:406:1::0;35609:67:0::1;35689:15;:26:::0;;-1:-1:-1;;;;35689:26:0::1;-1:-1:-1::0;;;35689:26:0;::::1;;;;::::0;;12203:12;;35770:5:::1;::::0;35762:4;;35746:20:::1;;;;:::i;:::-;35745:30;;;;:::i;:::-;35726:16;:49:::0;35830:5:::1;35822:4:::0;35806:13:::1;12203:12:::0;;;12115:108;35806:13:::1;:20;;;;:::i;:::-;35805:30;;;;:::i;:::-;35786:16;:49:::0;35851:45:::1;::::0;;235:14:1;;228:22;210:41;;282:2;267:18;;260:34;;;310:18;;;303:34;;;35851:45:0::1;::::0;198:2:1;183:18;35851:45:0::1;;;;;;;35355:549:::0;;;:::o;12642:200::-;12753:4;12770:42;10081:10;12794:9;12805:6;12770:9;:42::i;37057:195::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37167:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37167:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37213:31;;1749:41:1;;;37213:31:0::1;::::0;1722:18:1;37213:31:0::1;1609:187:1::0;22592:238:0;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22695:22:0;::::1;22673:110;;;::::0;-1:-1:-1;;;22673:110:0;;12580:2:1;22673:110:0::1;::::0;::::1;12562:21:1::0;12619:2;12599:18;;;12592:30;12658:34;12638:18;;;12631:62;-1:-1:-1;;;12709:18:1;;;12702:36;12755:19;;22673:110:0::1;12378:402:1::0;22673:110:0::1;22794:28;22813:8;22794:18;:28::i;:::-;22592:238:::0;:::o;38202:423::-;21756:6;;-1:-1:-1;;;;;21756:6:0;10081:10;21903:23;21895:68;;;;-1:-1:-1;;;21895:68:0;;;;;;;:::i;:::-;38322:10:::1;:26:::0;;;38359:10:::1;:20:::0;;;38405:23:::1;38372:7:::0;38335:13;38405:23:::1;:::i;:::-;38390:12;:38:::0;;;38477:3:::1;-1:-1:-1::0;38461:19:0::1;38439:110;;;::::0;-1:-1:-1;;;38439:110:0;;12987:2:1;38439:110:0::1;::::0;::::1;12969:21:1::0;13026:2;13006:18;;;12999:30;13065:34;13045:18;;;13038:62;-1:-1:-1;;;13116:18:1;;;13109:39;13165:19;;38439:110:0::1;12785:405:1::0;38439:110:0::1;38580:12;::::0;38594:10:::1;::::0;38606::::1;::::0;38565:52:::1;::::0;;10231:25:1;;;10287:2;10272:18;;10265:34;;;;10315:18;;;10308:34;38565:52:0::1;::::0;10219:2:1;10204:18;38565:52:0::1;10029:319:1::0;19406:380:0;-1:-1:-1;;;;;19542:19:0;;19534:68;;;;-1:-1:-1;;;19534:68:0;;13397:2:1;19534:68:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:34;13570:19;;19534:68:0;13195:400:1;19534:68:0;-1:-1:-1;;;;;19621:21:0;;19613:68;;;;-1:-1:-1;;;19613:68:0;;13802:2:1;19613:68:0;;;13784:21:1;13841:2;13821:18;;;13814:30;13880:34;13860:18;;;13853:62;-1:-1:-1;;;13931:18:1;;;13924:32;13973:19;;19613:68:0;13600:398:1;19613:68:0;-1:-1:-1;;;;;19694:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19746:32;;2806:25:1;;;19746:32:0;;2779:18:1;19746:32:0;;;;;;;19406:380;;;:::o;40916:4535::-;-1:-1:-1;;;;;41048:18:0;;41040:68;;;;-1:-1:-1;;;41040:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41127:16:0;;41119:64;;;;-1:-1:-1;;;41119:64:0;;;;;;;:::i;:::-;41200:6;41210:1;41200:11;41196:93;;41228:28;41244:4;41250:2;41254:1;41228:15;:28::i;:::-;40916:4535;;;:::o;41196:93::-;41305:14;;;;41301:2517;;;21756:6;;-1:-1:-1;;;;;41358:15:0;;;21756:6;;41358:15;;;;:49;;-1:-1:-1;21756:6:0;;-1:-1:-1;;;;;41394:13:0;;;21756:6;;41394:13;;41358:49;:86;;;;-1:-1:-1;;;;;;41428:16:0;;;;41358:86;:128;;;;-1:-1:-1;;;;;;41465:21:0;;41479:6;41465:21;;41358:128;:158;;;;-1:-1:-1;41508:8:0;;-1:-1:-1;;;41508:8:0;;;;41507:9;41358:158;41336:2471;;;41556:11;;;;41551:217;;-1:-1:-1;;;;;41626:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;41647:15:0;;;;;;:11;:15;;;;;;;;41626:36;41592:156;;;;-1:-1:-1;;;41592:156:0;;15015:2:1;41592:156:0;;;14997:21:1;15054:2;15034:18;;;15027:30;15093:34;15073:18;;;15066:62;-1:-1:-1;;;15144:18:1;;;15137:32;15186:19;;41592:156:0;14813:398:1;41592:156:0;41790:7;;;;;;;41786:220;;;-1:-1:-1;;;;;41856:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;41880:18:0;;;;;;:14;:18;;;;;;;;41856:42;41822:164;;;;-1:-1:-1;;;41822:164:0;;15418:2:1;41822:164:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:34;15476:18;;;15469:62;-1:-1:-1;;;15547:18:1;;;15540:34;15591:19;;41822:164:0;15216:400:1;41822:164:0;42162:20;;;;;;;42158:629;;;21756:6;;-1:-1:-1;;;;;42237:13:0;;;21756:6;;42237:13;;;;:66;;;42293:9;-1:-1:-1;;;;;42279:24:0;:2;-1:-1:-1;;;;;42279:24:0;;;42237:66;:117;;;;;42346:7;-1:-1:-1;;;;;42332:22:0;:2;-1:-1:-1;;;;;42332:22:0;;;42237:117;42207:561;;;42472:9;42443:39;;;;:28;:39;;;;;;42518:12;-1:-1:-1;42405:258:0;;;;-1:-1:-1;;;42405:258:0;;15823:2:1;42405:258:0;;;15805:21:1;15862:2;15842:18;;;15835:30;15901:34;15881:18;;;15874:62;15972:34;15952:18;;;15945:62;-1:-1:-1;;;16023:19:1;;;16016:40;16073:19;;42405:258:0;15621:477:1;42405:258:0;42719:9;42690:39;;;;:28;:39;;;;;42732:12;42690:54;;42207:561;-1:-1:-1;;;;;42839:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;42875:19:0;;;;;;:15;:19;;;;;;;;42874:20;42839:55;42835:957;;;42963:5;;42953:6;:15;;42919:139;;;;-1:-1:-1;;;42919:139:0;;16305:2:1;42919:139:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;-1:-1:-1;;;16434:18:1;;;16427:36;16480:19;;42919:139:0;16103:402:1;42919:139:0;43141:9;;-1:-1:-1;;;;;12403:18:0;;12376:7;12403:18;;;;;;;;;;;43115:22;;:6;:22;:::i;:::-;:35;;43081:140;;;;-1:-1:-1;;;43081:140:0;;16712:2:1;43081:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43081:140:0;16510:343:1;43081:140:0;42835:957;;;-1:-1:-1;;;;;43319:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43353:21:0;;;;;;:15;:21;;;;;;;;43352:22;43319:55;43293:499;;;43461:5;;43451:6;:15;;43417:140;;;;-1:-1:-1;;;43417:140:0;;17060:2:1;43417:140:0;;;17042:21:1;17099:2;17079:18;;;17072:30;17138:34;17118:18;;;17111:62;-1:-1:-1;;;17189:18:1;;;17182:37;17236:19;;43417:140:0;16858:403:1;43293:499:0;-1:-1:-1;;;;;43588:19:0;;;;;;:15;:19;;;;;;;;43583:209;;43692:9;;-1:-1:-1;;;;;12403:18:0;;12376:7;12403:18;;;;;;;;;;;43666:22;;:6;:22;:::i;:::-;:35;;43632:140;;;;-1:-1:-1;;;43632:140:0;;16712:2:1;43632:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43632:140:0;16510:343:1;43632:140:0;43879:4;43830:28;12403:18;;;;;;;;;;;43937:16;;43913:40;;;;;;;43984:39;;-1:-1:-1;44008:15:0;;-1:-1:-1;;;44008:15:0;;;;43984:39;:65;;;;-1:-1:-1;44041:8:0;;-1:-1:-1;;;44041:8:0;;;;44040:9;43984:65;:114;;;;-1:-1:-1;;;;;;44067:31:0;;;;;;:25;:31;;;;;;;;44066:32;43984:114;:149;;;;-1:-1:-1;;;;;;44116:17:0;;;;;;:11;:17;;;;;;;;44115:18;43984:149;:182;;;;-1:-1:-1;;;;;;44151:15:0;;;;;;:11;:15;;;;;;;;44150:16;43984:182;43966:314;;;44193:8;:15;;-1:-1:-1;;;;44193:15:0;-1:-1:-1;;;44193:15:0;;;44225:10;:8;:10::i;:::-;44252:8;:16;;-1:-1:-1;;;;44252:16:0;;;43966:314;44308:8;;-1:-1:-1;;;;;44418:17:0;;44292:12;44418:17;;;:11;:17;;;;;;44308:8;-1:-1:-1;;;44308:8:0;;;;;44307:9;;44418:17;;:36;;-1:-1:-1;;;;;;44439:15:0;;;;;;:11;:15;;;;;;;;44418:36;44414:84;;;-1:-1:-1;44481:5:0;44414:84;44510:12;44615:7;44611:787;;;-1:-1:-1;;;;;44667:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;44715:1;44700:12;;:16;44667:49;44663:586;;;44744:33;44773:3;44744:24;44755:12;;44744:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;44737:40;;44834:12;;44820:10;;44813:4;:17;;;;:::i;:::-;44812:34;;;;:::i;:::-;44796:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;44909:12:0;;44895:10;;44888:17;;:4;:17;:::i;:::-;44887:34;;;;:::i;:::-;44865:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;44663:586:0;;-1:-1:-1;44663:586:0;;-1:-1:-1;;;;;44983:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45032:1;45018:11;;:15;44983:50;44979:270;;;45061:32;45089:3;45061:23;45072:11;;45061:6;:10;;:23;;;;:::i;:32::-;45054:39;;45149:11;;45136:9;;45129:4;:16;;;;:::i;:::-;45128:32;;;;:::i;:::-;45112:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45222:11:0;;45209:9;;45202:16;;:4;:16;:::i;:::-;45201:32;;;;:::i;:::-;45179:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;44979:270:0;45269:8;;45265:91;;45298:42;45314:4;45328;45335;45298:15;:42::i;:::-;45372:14;45382:4;45372:14;;:::i;:::-;;;44611:787;45410:33;45426:4;45432:2;45436:6;45410:15;:33::i;:::-;41029:4422;;;;40916:4535;;;:::o;22990:191::-;23083:6;;;-1:-1:-1;;;;;23100:17:0;;;-1:-1:-1;;;;;;23100:17:0;;;;;;;23133:40;;23083:6;;;23100:17;23083:6;;23133:40;;23064:16;;23133:40;23053:128;22990:191;:::o;39668:188::-;-1:-1:-1;;;;;39751:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39751:39:0;;;;;;;;;;39808:40;;39751:39;;:31;39808:40;;;39668:188;;:::o;16588:770::-;-1:-1:-1;;;;;16728:20:0;;16720:70;;;;-1:-1:-1;;;16720:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16809:23:0;;16801:71;;;;-1:-1:-1;;;16801:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16969:17:0;;16945:21;16969:17;;;;;;;;;;;17019:23;;;;16997:111;;;;-1:-1:-1;;;16997:111:0;;17601:2:1;16997:111:0;;;17583:21:1;17640:2;17620:18;;;17613:30;17679:34;17659:18;;;17652:62;-1:-1:-1;;;17730:18:1;;;17723:36;17776:19;;16997:111:0;17399:402:1;16997:111:0;-1:-1:-1;;;;;17144:17:0;;;:9;:17;;;;;;;;;;;17164:22;;;17144:42;;17208:20;;;;;;;;:30;;17180:6;;17144:9;17208:30;;17180:6;;17208:30;:::i;:::-;;;;;;;;17273:9;-1:-1:-1;;;;;17256:35:0;17265:6;-1:-1:-1;;;;;17256:35:0;;17284:6;17256:35;;;;2806:25:1;;2794:2;2779:18;;2660:177;17256:35:0;;;;;;;;17304:46;40916:4535;46040:934;46123:4;46079:23;12403:18;;;;;;;;;;;;;;46223:20;;;46219:59;;46260:7;;;46040:934::o;46219:59::-;46312:16;;46294:15;:34;46290:101;;;46363:16;;46345:34;;46290:101;46432:15;46488:21;46522:36;46432:15;46522:16;:36::i;:::-;46571:18;46592:44;:21;46618:17;46592:25;:44::i;:::-;46571:65;;46649:17;46669:51;46702:17;46669:28;46684:12;;46669:10;:14;;:28;;;;:::i;:51::-;46754:1;46733:18;:22;;;46766:12;:16;;;46817:11;;46809:47;;46649:71;;-1:-1:-1;;;;;;46817:11:0;;46649:71;;46809:47;46754:1;46809:47;46649:71;46817:11;46809:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46891:11:0;;46883:83;;46795:61;;-1:-1:-1;46891:11:0;;;-1:-1:-1;;;;;46891:11:0;;46916:21;;46883:83;;;;46916:21;46891:11;46883:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;46040:934:0:o;3360:98::-;3418:7;3445:5;3449:1;3445;:5;:::i;:::-;3438:12;3360:98;-1:-1:-1;;;3360:98:0:o;3759:::-;3817:7;3844:5;3848:1;3844;:5;:::i;45459:571::-;45609:16;;;45623:1;45609:16;;;;;;;;45585:21;;45609:16;;;;;;;;;;-1:-1:-1;45609:16:0;45585:40;;45654:4;45636;45641:1;45636:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45636:23:0;;;-1:-1:-1;;;;;45636:23:0;;;;;45680:9;-1:-1:-1;;;;;45680:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45670:4;45675:1;45670:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;45670:26:0;;;-1:-1:-1;;;;;45670:26:0;;;;;45709:56;45726:4;45741:9;45753:11;45709:8;:56::i;:::-;45804:218;;-1:-1:-1;;;45804:218:0;;-1:-1:-1;;;;;45804:9:0;:60;;;;:218;;45879:11;;45905:1;;45949:4;;45976;;45996:15;;45804:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45514:516;45459:571;:::o;3003:98::-;3061:7;3088:5;3092:1;3088;:5;:::i;348:131:1:-;-1:-1:-1;;;;;423:31:1;;413:42;;403:70;;469:1;466;459:12;484:247;543:6;596:2;584:9;575:7;571:23;567:32;564:52;;;612:1;609;602:12;564:52;651:9;638:23;670:31;695:5;670:31;:::i;736:548::-;848:4;877:2;906;895:9;888:21;938:6;932:13;981:6;976:2;965:9;961:18;954:34;1006:1;1016:140;1030:6;1027:1;1024:13;1016:140;;;1125:14;;;1121:23;;1115:30;1091:17;;;1110:2;1087:26;1080:66;1045:10;;1016:140;;;1020:3;1205:1;1200:2;1191:6;1180:9;1176:22;1172:31;1165:42;1275:2;1268;1264:7;1259:2;1251:6;1247:15;1243:29;1232:9;1228:45;1224:54;1216:62;;;;736:548;;;;:::o;1289:315::-;1357:6;1365;1418:2;1406:9;1397:7;1393:23;1389:32;1386:52;;;1434:1;1431;1424:12;1386:52;1473:9;1460:23;1492:31;1517:5;1492:31;:::i;:::-;1542:5;1594:2;1579:18;;;;1566:32;;-1:-1:-1;;;1289:315:1:o;1801:160::-;1866:20;;1922:13;;1915:21;1905:32;;1895:60;;1951:1;1948;1941:12;1895:60;1801:160;;;:::o;1966:689::-;2058:6;2066;2074;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;2183:9;2170:23;2212:18;2253:2;2245:6;2242:14;2239:34;;;2269:1;2266;2259:12;2239:34;2307:6;2296:9;2292:22;2282:32;;2352:7;2345:4;2341:2;2337:13;2333:27;2323:55;;2374:1;2371;2364:12;2323:55;2414:2;2401:16;2440:2;2432:6;2429:14;2426:34;;;2456:1;2453;2446:12;2426:34;2511:7;2504:4;2494:6;2491:1;2487:14;2483:2;2479:23;2475:34;2472:47;2469:67;;;2532:1;2529;2522:12;2469:67;2563:4;2555:13;;;;-1:-1:-1;2587:6:1;-1:-1:-1;2612:37:1;;2628:20;;;-1:-1:-1;2612:37:1;:::i;:::-;2602:47;;1966:689;;;;;:::o;2842:315::-;2907:6;2915;2968:2;2956:9;2947:7;2943:23;2939:32;2936:52;;;2984:1;2981;2974:12;2936:52;3023:9;3010:23;3042:31;3067:5;3042:31;:::i;:::-;3092:5;-1:-1:-1;3116:35:1;3147:2;3132:18;;3116:35;:::i;:::-;3106:45;;2842:315;;;;;:::o;3162:456::-;3239:6;3247;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:31;3407:5;3382:31;:::i;:::-;3432:5;-1:-1:-1;3489:2:1;3474:18;;3461:32;3502:33;3461:32;3502:33;:::i;:::-;3162:456;;3554:7;;-1:-1:-1;;;3608:2:1;3593:18;;;;3580:32;;3162:456::o;4891:180::-;4950:6;5003:2;4991:9;4982:7;4978:23;4974:32;4971:52;;;5019:1;5016;5009:12;4971:52;-1:-1:-1;5042:23:1;;4891:180;-1:-1:-1;4891:180:1:o;5616:248::-;5684:6;5692;5745:2;5733:9;5724:7;5720:23;5716:32;5713:52;;;5761:1;5758;5751:12;5713:52;-1:-1:-1;;5784:23:1;;;5854:2;5839:18;;;5826:32;;-1:-1:-1;5616:248:1:o;6077:316::-;6151:6;6159;6167;6220:2;6208:9;6199:7;6195:23;6191:32;6188:52;;;6236:1;6233;6226:12;6188:52;6259:26;6275:9;6259:26;:::i;:::-;6249:36;6332:2;6317:18;;6304:32;;-1:-1:-1;6383:2:1;6368:18;;;6355:32;;6077:316;-1:-1:-1;;;6077:316:1:o;6398:388::-;6466:6;6474;6527:2;6515:9;6506:7;6502:23;6498:32;6495:52;;;6543:1;6540;6533:12;6495:52;6582:9;6569:23;6601:31;6626:5;6601:31;:::i;:::-;6651:5;-1:-1:-1;6708:2:1;6693:18;;6680:32;6721:33;6680:32;6721:33;:::i;:::-;6773:7;6763:17;;;6398:388;;;;;:::o;6791:356::-;6993:2;6975:21;;;7012:18;;;7005:30;7071:34;7066:2;7051:18;;7044:62;7138:2;7123:18;;6791:356::o;7152:380::-;7231:1;7227:12;;;;7274;;;7295:61;;7349:4;7341:6;7337:17;7327:27;;7295:61;7402:2;7394:6;7391:14;7371:18;7368:38;7365:161;;7448:10;7443:3;7439:20;7436:1;7429:31;7483:4;7480:1;7473:15;7511:4;7508:1;7501:15;7365:161;;7152:380;;;:::o;7537:127::-;7598:10;7593:3;7589:20;7586:1;7579:31;7629:4;7626:1;7619:15;7653:4;7650:1;7643:15;7669:127;7730:10;7725:3;7721:20;7718:1;7711:31;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:135;7840:3;7861:17;;;7858:43;;7881:18;;:::i;:::-;-1:-1:-1;7928:1:1;7917:13;;7801:135::o;8350:125::-;8415:9;;;8436:10;;;8433:36;;;8449:18;;:::i;9225:168::-;9298:9;;;9329;;9346:15;;;9340:22;;9326:37;9316:71;;9367:18;;:::i;9398:217::-;9438:1;9464;9454:132;;9508:10;9503:3;9499:20;9496:1;9489:31;9543:4;9540:1;9533:15;9571:4;9568:1;9561:15;9454:132;-1:-1:-1;9600:9:1;;9398:217::o;14003:401::-;14205:2;14187:21;;;14244:2;14224:18;;;14217:30;14283:34;14278:2;14263:18;;14256:62;-1:-1:-1;;;14349:2:1;14334:18;;14327:35;14394:3;14379:19;;14003:401::o;14409:399::-;14611:2;14593:21;;;14650:2;14630:18;;;14623:30;14689:34;14684:2;14669:18;;14662:62;-1:-1:-1;;;14755:2:1;14740:18;;14733:33;14798:3;14783:19;;14409:399::o;17266:128::-;17333:9;;;17354:11;;;17351:37;;;17368:18;;:::i;18148:251::-;18218:6;18271:2;18259:9;18250:7;18246:23;18242:32;18239:52;;;18287:1;18284;18277:12;18239:52;18319:9;18313:16;18338:31;18363:5;18338:31;:::i;18404:980::-;18666:4;18714:3;18703:9;18699:19;18745:6;18734:9;18727:25;18771:2;18809:6;18804:2;18793:9;18789:18;18782:34;18852:3;18847:2;18836:9;18832:18;18825:31;18876:6;18911;18905:13;18942:6;18934;18927:22;18980:3;18969:9;18965:19;18958:26;;19019:2;19011:6;19007:15;18993:29;;19040:1;19050:195;19064:6;19061:1;19058:13;19050:195;;;19129:13;;-1:-1:-1;;;;;19125:39:1;19113:52;;19220:15;;;;19185:12;;;;19161:1;19079:9;19050:195;;;-1:-1:-1;;;;;;;19301:32:1;;;;19296:2;19281:18;;19274:60;-1:-1:-1;;;19365:3:1;19350:19;19343:35;19262:3;18404:980;-1:-1:-1;;;18404:980:1:o

Swarm Source

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