ETH Price: $3,338.81 (-2.05%)
 

Overview

Max Total Supply

690,000,000 STEALTH

Holders

127

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
batchu.eth
Balance
558,588.272099835433555872 STEALTH

Value
$0.00
0xa63519e67dae9a551ad34ae679cf0e911a78381a
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:
STEALTH

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-08
*/

/**

    APPLE APP STORE: https://apps.apple.com/us/app/stealth-ai/id6737063179
    Website: https://stealthai.org
    X: https://x.com/StealthAI_eth
    Telegram: https://t.me/StealthAi_eth 
    Gitbook: https://stealthai-organization.gitbook.io/stealthai.org/

**/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.28;

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed,
        uint256 tokenId
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

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

contract STEALTH is Ownable, ERC20 {
    IUniswapV2Router public immutable uniswapV2Router;

    address public constant ZERO_ADDRESS = address(0);
    address public constant DEAD_ADDRESS = address(0xdEaD);

    address public immutable uniswapV2Pair;
    address public operationsWallet;
    address public developmentWallet;

    bool public isLimitsEnabled;
    bool public isCooldownEnabled;
    bool public isTaxEnabled;
    bool private inSwapBack;
    bool public isLaunched;

    uint256 public launchBlock;
    uint256 public launchTime;

    uint256 private lastSwapBackExecutionBlock;

    uint256 public constant MAX_FEE = 25;

    uint256 public maxBuy;
    uint256 public maxSell;
    uint256 public maxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyFee;
    uint256 public sellFee;
    uint256 public transferFee;

    mapping(address => bool) public isBot;
    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public isExcludedFromLimits;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event Launch();
    event SetOperationsWallet(address newWallet, address oldWallet);
    event SetDevelopmentWallet(address newWallet, address oldWallet);
    event SetLimitsEnabled(bool status);
    event SetCooldownEnabled(bool status);
    event SetTaxesEnabled(bool status);
    event SetMaxBuy(uint256 amount);
    event SetMaxSell(uint256 amount);
    event SetMaxWallet(uint256 amount);
    event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue);
    event SetBuyFees(uint256 newValue, uint256 oldValue);
    event SetSellFees(uint256 newValue, uint256 oldValue);
    event SetTransferFees(uint256 newValue, uint256 oldValue);
    event ExcludeFromFees(address account, bool isExcluded);
    event ExcludeFromLimits(address account, bool isExcluded);
    event SetBots(address account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address pair, bool value);
    event WithdrawStuckTokens(address token, uint256 amount);

    error AlreadyLaunched();
    error InvalidSender();
    error AddressZero();
    error AmountTooLow();
    error AmountTooHigh();
    error FeeTooHigh();
    error AMMAlreadySet();
    error NoNativeTokens();
    error NoTokens();
    error FailedToWithdrawNativeTokens();
    error BotDetected();
    error TransferDelay();
    error MaxBuyAmountExceed();
    error MaxSellAmountExceed();
    error MaxWalletAmountExceed();
    error NotLaunched();

    modifier lockSwapBack() {
        inSwapBack = true;
        _;
        inSwapBack = false;
    }

    constructor() Ownable(msg.sender) ERC20("Stealth AI", "STEALTH") {
        address sender = msg.sender;
        _mint(sender, 690_000_000 ether);
        uint256 totalSupply = totalSupply();

        operationsWallet = 0x29c2d263230741d450A3dBA8F09bc07A8d9e71b3;
        developmentWallet = 0xa083087A0E43D30ECd2e9314F584b498FfB49Dc9;

        address uniswapFeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c;

        maxBuy = (totalSupply * 2) / 100;
        maxSell = (totalSupply * 2) / 100;
        maxWallet = (totalSupply * 2) / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        isLimitsEnabled = true;
        isCooldownEnabled = true;
        isTaxEnabled = true;

        buyFee = 25;
        sellFee = 25;
        transferFee = 65;

        uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        _setAutomatedMarketMakerPair(uniswapV2Pair, true);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdEaD), true);
        _excludeFromFees(sender, true);
        _excludeFromFees(operationsWallet, true);
        _excludeFromFees(developmentWallet, true);
        _excludeFromFees(uniswapFeeCollector, true);
        _excludeFromLimits(address(this), true);
        _excludeFromLimits(address(0xdEaD), true);
        _excludeFromLimits(sender, true);
        _excludeFromLimits(operationsWallet, true);
        _excludeFromLimits(developmentWallet, true);
        _excludeFromLimits(uniswapFeeCollector, true);
    }

    receive() external payable {}

    fallback() external payable {}

    function launch() external onlyOwner {
        require(!isLaunched, AlreadyLaunched());
        isLaunched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
        emit Launch();
    }

    function setOperationsWallet(address _operationsWallet) external {
        require(msg.sender == operationsWallet, InvalidSender());
        require(_operationsWallet != address(0), AddressZero());
        address oldWallet = operationsWallet;
        operationsWallet = _operationsWallet;
        emit SetOperationsWallet(operationsWallet, oldWallet);
    }

    function setDevelopmentWallet(address _developmentWallet) external {
        require(msg.sender == developmentWallet, InvalidSender());
        require(_developmentWallet != address(0), AddressZero());
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit SetDevelopmentWallet(developmentWallet, oldWallet);
    }

    function setLimitsEnabled(bool value) external onlyOwner {
        isLimitsEnabled = value;
        emit SetLimitsEnabled(value);
    }

    function setCooldownEnabled(bool value) external onlyOwner {
        isCooldownEnabled = value;
        emit SetCooldownEnabled(value);
    }

    function setTaxesEnabled(bool value) external onlyOwner {
        isTaxEnabled = value;
        emit SetTaxesEnabled(value);
    }

    function setMaxBuy(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow());
        maxBuy = amount;
        emit SetMaxBuy(maxBuy);
    }

    function setMaxSell(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow());
        maxSell = amount;
        emit SetMaxSell(maxSell);
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount >= ((totalSupply() * 3) / 1000), AmountTooLow());
        maxWallet = amount;
        emit SetMaxWallet(maxWallet);
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        uint256 _totalSupply = totalSupply();
        require(amount >= (_totalSupply * 1) / 1000000, AmountTooLow());
        require(amount <= (_totalSupply * 5) / 1000, AmountTooHigh());
        uint256 oldValue = swapTokensAtAmount;
        swapTokensAtAmount = amount;
        emit SetSwapTokensAtAmount(amount, oldValue);
    }

    function setBuyFees(uint256 _buyFee) external onlyOwner {
        require(_buyFee <= MAX_FEE, FeeTooHigh());
        uint256 oldValue = buyFee;
        buyFee = _buyFee;
        emit SetBuyFees(_buyFee, oldValue);
    }

    function setSellFees(uint256 _sellFee) external onlyOwner {
        require(_sellFee <= MAX_FEE, FeeTooHigh());
        uint256 oldValue = sellFee;
        sellFee = _sellFee;
        emit SetSellFees(_sellFee, oldValue);
    }

    function setTransferFees(uint256 _transferFee) external onlyOwner {
        require(_transferFee <= MAX_FEE, FeeTooHigh());
        uint256 oldValue = transferFee;
        transferFee = _transferFee;
        emit SetTransferFees(_transferFee, oldValue);
    }

    function excludeFromFees(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromFees(accounts[i], value);
        }
    }

    function excludeFromLimits(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromLimits(accounts[i], value);
        }
    }

    function setBots(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (!automatedMarketMakerPairs[accounts[i]]) &&
                (accounts[i] != address(uniswapV2Router)) &&
                (accounts[i] != address(this)) &&
                (accounts[i] != address(0)) &&
                (!isExcludedFromFees[accounts[i]] &&
                    !isExcludedFromLimits[accounts[i]])
            ) _setBots(accounts[i], value);
        }
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        external
        onlyOwner
    {
        require(!automatedMarketMakerPairs[pair], AMMAlreadySet());
        _setAutomatedMarketMakerPair(pair, value);
    }

    function withdrawStuckTokens(address _token) external onlyOwner {
        address sender = msg.sender;
        uint256 amount;
        if (_token == address(0)) {
            bool success;
            amount = address(this).balance;
            require(amount > 0, NoNativeTokens());
            (success, ) = address(sender).call{value: amount}("");
            require(success, FailedToWithdrawNativeTokens());
        } else {
            amount = IERC20(_token).balanceOf(address(this));
            require(amount > 0, NoTokens());
            IERC20(_token).transfer(msg.sender, amount);
        }
        emit WithdrawStuckTokens(_token, amount);
    }

    function _transferOwnership(address newOwner) internal virtual override {
        address oldOwner = owner();
        if (oldOwner != address(0)) {
            _excludeFromFees(oldOwner, false);
            _excludeFromLimits(oldOwner, false);
        }
        _excludeFromFees(newOwner, true);
        _excludeFromLimits(newOwner, true);
        super._transferOwnership(newOwner);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        address sender = msg.sender;
        address origin = tx.origin;
        uint256 blockNumber = block.number;

        require(!isBot[from], BotDetected());
        require(sender == from || !isBot[sender], BotDetected());
        require(
            origin == from || origin == sender || !isBot[origin],
            BotDetected()
        );

        require(
            isLaunched ||
                isExcludedFromLimits[from] ||
                isExcludedFromLimits[to],
            NotLaunched()
        );

        bool limits = isLimitsEnabled &&
            !inSwapBack &&
            !(isExcludedFromLimits[from] || isExcludedFromLimits[to]);
        if (limits) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdEaD)
            ) {
                if (isCooldownEnabled) {
                    if (to != address(uniswapV2Router) && to != uniswapV2Pair) {
                        require(
                            _holderLastTransferTimestamp[origin] <
                                blockNumber - 3 &&
                                _holderLastTransferTimestamp[to] <
                                blockNumber - 3,
                            TransferDelay()
                        );
                        _holderLastTransferTimestamp[origin] = blockNumber;
                        _holderLastTransferTimestamp[to] = blockNumber;
                    }
                }

                if (
                    automatedMarketMakerPairs[from] && !isExcludedFromLimits[to]
                ) {
                    require(amount <= maxBuy, MaxBuyAmountExceed());
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        MaxWalletAmountExceed()
                    );
                } else if (
                    automatedMarketMakerPairs[to] && !isExcludedFromLimits[from]
                ) {
                    require(amount <= maxSell, MaxSellAmountExceed());
                } else if (!isExcludedFromLimits[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        MaxWalletAmountExceed()
                    );
                }
            }
        }

        bool takeFee = isTaxEnabled &&
            !inSwapBack &&
            !(isExcludedFromFees[from] || isExcludedFromFees[to]);

        if (takeFee) {
            uint256 fees = 0;
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fees = (amount * sellFee) / 100;
            } else if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fees = (amount * buyFee) / 100;
            } else if (
                !automatedMarketMakerPairs[to] &&
                !automatedMarketMakerPairs[from] &&
                transferFee > 0
            ) {
                fees = (amount * transferFee) / 100;
            }

            if (fees > 0) {
                amount -= fees;
                super._update(from, address(this), fees);
            }
        }

        uint256 balance = balanceOf(address(this));
        bool shouldSwap = balance >= swapTokensAtAmount;
        if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) {
            if (blockNumber > lastSwapBackExecutionBlock) {
                _swapBack(balance);
                lastSwapBackExecutionBlock = blockNumber;
            }
        }

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

    function _swapBack(uint256 balance) internal virtual lockSwapBack {
        bool success;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256 maxSwapAmount = swapTokensAtAmount * 20;

        if (balance > maxSwapAmount) {
            balance = maxSwapAmount;
        }

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

        uint256 ethBalance = address(this).balance;

        uint256 ethForDevelopment = ethBalance / 4;

        uint256 ethForOperations = ethBalance - ethForDevelopment;

        (success, ) = address(operationsWallet).call{value: ethForOperations}(
            ""
        );

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}(
            ""
        );
    }

    function _excludeFromFees(address account, bool value) internal virtual {
        isExcludedFromFees[account] = value;
        emit ExcludeFromFees(account, value);
    }

    function _excludeFromLimits(address account, bool value) internal virtual {
        isExcludedFromLimits[account] = value;
        emit ExcludeFromLimits(account, value);
    }

    function _setBots(address account, bool value) internal virtual {
        isBot[account] = value;
        emit SetBots(account, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value)
        internal
        virtual
    {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferDelay","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","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":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405234801561000f575f5ffd5b50604080518082018252600a815269537465616c746820414960b01b602080830191909152825180840190935260078352660a6a88a8298a8960cb1b9083015290338061007657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61007f816103ed565b50600461008c838261116b565b506005610099828261116b565b503391506100b59050816b023ac12ef364587bf2000000610435565b5f6100bf60035490565b600680546001600160a01b03199081167329c2d263230741d450a3dba8f09bc07a8d9e71b3179091556007805490911673a083087a0e43d30ecd2e9314f584b498ffb49dc9179055905070fee13a103a10d593b9ae06b3e05f2e7e1c6064610128836002611239565b6101329190611256565b600b556064610142836002611239565b61014c9190611256565b600c55606461015c836002611239565b6101669190611256565b600d55612710610177836005611239565b6101819190611256565b600e556007805462ffffff60a01b19166201010160a01b1790556019600f8190556010556041601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101fd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102219190611275565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561026e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102929190611275565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102dc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103009190611275565b6001600160a01b031660a0819052610319906001610469565b61032d306080515f196104cc60201b60201c565b6103383060016104de565b61034561dead60016104de565b6103508360016104de565b600654610367906001600160a01b031660016104de565b60075461037e906001600160a01b031660016104de565b6103898160016104de565b610394306001610539565b6103a161dead6001610539565b6103ac836001610539565b6006546103c3906001600160a01b03166001610539565b6007546103da906001600160a01b03166001610539565b6103e5816001610539565b50505061134c565b5f546001600160a01b0316801561041257610408815f6104de565b610412815f610539565b61041d8260016104de565b610428826001610539565b61043182610594565b5050565b6001600160a01b03821661045e5760405163ec442f0560e01b81525f600482015260240161006d565b6104315f83836105e3565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104d98383836001610c83565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016104c0565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016104c0565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff1615610622576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b0316148061065a57506001600160a01b0383165f9081526012602052604090205460ff16155b610677576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b031614806106a85750826001600160a01b0316826001600160a01b0316145b806106cb57506001600160a01b0382165f9081526012602052604090205460ff16155b6106e8576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff168061071757506001600160a01b0386165f9081526014602052604090205460ff165b8061073957506001600160a01b0385165f9081526014602052604090205460ff165b61075657604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff16801561077b5750600754600160b81b900460ff16155b80156107c157506001600160a01b0387165f9081526014602052604090205460ff16806107bf57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015610a7f575f546001600160a01b038881169116148015906107f357505f546001600160a01b03878116911614155b801561080757506001600160a01b03861615155b801561081e57506001600160a01b03861661dead14155b15610a7f57600754600160a81b900460ff1615610905576080516001600160a01b0316866001600160a01b03161415801561086d575060a0516001600160a01b0316866001600160a01b031614155b156109055761087d6003836112a2565b6001600160a01b0384165f908152601660205260409020541080156108c257506108a86003836112a2565b6001600160a01b0387165f90815260166020526040902054105b6108df57604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff16801561094457506001600160a01b0386165f9081526014602052604090205460ff16155b156109b557600b5485111561096c57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f9081526001602052604090205461099190876112b5565b11156109b05760405163d867451160e01b815260040160405180910390fd5b610a7f565b6001600160a01b0386165f9081526015602052604090205460ff1680156109f457506001600160a01b0387165f9081526014602052604090205460ff16155b15610a1c57600c548511156109b0576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16610a7f57600d546001600160a01b0387165f90815260016020526040902054610a6090876112b5565b1115610a7f5760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015610aa45750600754600160b81b900460ff16155b8015610aea57506001600160a01b0388165f9081526013602052604090205460ff1680610ae857506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015610c0b576001600160a01b0387165f9081526015602052604081205460ff168015610b1a57505f601054115b15610b4057606460105488610b2f9190611239565b610b399190611256565b9050610bec565b6001600160a01b0389165f9081526015602052604090205460ff168015610b6857505f600f54115b15610b7d576064600f5488610b2f9190611239565b6001600160a01b0388165f9081526015602052604090205460ff16158015610bbd57506001600160a01b0389165f9081526015602052604090205460ff16155b8015610bca57505f601154115b15610bec57606460115488610bdf9190611239565b610be99190611256565b90505b8015610c0957610bfc81886112a2565b9650610c09893083610d56565b505b305f90815260016020526040902054600e54811015828015610c4557506001600160a01b038a165f9081526015602052604090205460ff16155b8015610c4e5750805b15610c6c57600a54851115610c6c57610c6682610e7c565b600a8590555b610c778a8a8a610d56565b50505050505050505050565b6001600160a01b038416610cac5760405163e602df0560e01b81525f600482015260240161006d565b6001600160a01b038316610cd557604051634a1406b160e11b81525f600482015260240161006d565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610d5057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d4791815260200190565b60405180910390a35b50505050565b6001600160a01b038316610d80578060035f828254610d7591906112b5565b90915550610df09050565b6001600160a01b0383165f9081526001602052604090205481811015610dd25760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161006d565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610e0c57600380548290039055610e2a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e6f91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610ec657610ec66112c8565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f24573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f489190611275565b81600181518110610f5b57610f5b6112c8565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e546014610f8b9190611239565b905080841115610f99578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401610fcf9594939291906112dc565b5f604051808303815f87803b158015610fe6575f5ffd5b505af1158015610ff8573d5f5f3e3d5ffd5b504792505f915061100c9050600483611256565b90505f61101982846112a2565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114611064576040519150601f19603f3d011682016040523d82523d5f602084013e611069565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f81146110b6576040519150601f19603f3d011682016040523d82523d5f602084013e6110bb565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806110fc57607f821691505b60208210810361111a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104d957805f5260205f20601f840160051c810160208510156111455750805b601f840160051c820191505b81811015611164575f8155600101611151565b5050505050565b81516001600160401b03811115611184576111846110d4565b6111988161119284546110e8565b84611120565b6020601f8211600181146111ca575f83156111b35750848201515b5f19600385901b1c1916600184901b178455611164565b5f84815260208120601f198516915b828110156111f957878501518255602094850194600190920191016111d9565b508482101561121657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761125057611250611225565b92915050565b5f8261127057634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611285575f5ffd5b81516001600160a01b038116811461129b575f5ffd5b9392505050565b8181038181111561125057611250611225565b8082018082111561125057611250611225565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561132c5783516001600160a01b0316835260209384019390920191600101611305565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05161285b6113905f395f81816104e60152611c6101525f81816103ac01528181610ed301528181611c240152818161228d0152612373015261285b5ff3fe60806040526004361061030d575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610958578063f53bc83514610977578063f8b45b0514610996578063fd72e22a146109ab57005b8063e6c1909b146108fa578063ee5ecc891461091a578063ef998cf01461093957005b8063d5759ba3116100c7578063d5759ba314610862578063dcf7aef314610882578063dd62ed3e146108a1578063e2f45605146108e557005b8063cb9637281461080f578063d00efb2f1461082e578063d26ed3e31461084357005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f514610799578063b8eb3546146107c7578063bc063e1a146107dc578063c04a5414146107f057005b8063acb2ad6f14610746578063ad29ffde1461075b578063afa4f3b21461077a57005b80638da5cb5b1461069a57806395927c25146106b657806395d89b41146106d55780639a7a23d6146106e95780639c0db5f314610708578063a9059cbb1461072757005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d61461063d578063715018a61461065257806372ac248614610666578063790ca4131461068557005b80635d0044ca146105ca5780636ca541e5146105e957806370a082311461060957005b8063538ba4f911610240578063538ba4f91461054b5780635932ead11461055e57806359512ab01461057d5780635cce86cd1461059c57005b806349bd5a5e146104d55780634e6fd6c4146105085780634fbee1931461051d57005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104585780633bbac5791461047357806341aea9de146104a157806347062402146104c057005b806323b872dd146104045780632b14ca5614610423578063307aebc91461043857005b806301339c211461030f57806306fdde0314610323578063095ea7b31461034d578063106a5a8f1461037c5780631694505e1461039b57806318160ddd146103e6575b005b34801561031a575f5ffd5b5061030d6109ca565b34801561032e575f5ffd5b50610337610a42565b60405161034491906124b5565b60405180910390f35b348015610358575f5ffd5b5061036c6103673660046124fe565b610ad2565b6040519015158152602001610344565b348015610387575f5ffd5b5061030d610396366004612535565b610aeb565b3480156103a6575f5ffd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610344565b3480156103f1575f5ffd5b506003545b604051908152602001610344565b34801561040f575f5ffd5b5061036c61041e3660046125b7565b610b3b565b34801561042e575f5ffd5b506103f660105481565b348015610443575f5ffd5b5060075461036c90600160c01b900460ff1681565b348015610463575f5ffd5b5060405160128152602001610344565b34801561047e575f5ffd5b5061036c61048d3660046125f5565b60126020525f908152604090205460ff1681565b3480156104ac575f5ffd5b5061030d6104bb366004612617565b610b5e565b3480156104cb575f5ffd5b506103f6600f5481565b3480156104e0575f5ffd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b348015610513575f5ffd5b506103ce61dead81565b348015610528575f5ffd5b5061036c6105373660046125f5565b60136020525f908152604090205460ff1681565b348015610556575f5ffd5b506103ce5f81565b348015610569575f5ffd5b5061030d610578366004612617565b610bbe565b348015610588575f5ffd5b5061030d610597366004612617565b610c13565b3480156105a7575f5ffd5b5061036c6105b63660046125f5565b60146020525f908152604090205460ff1681565b3480156105d5575f5ffd5b5061030d6105e4366004612632565b610c68565b3480156105f4575f5ffd5b5060075461036c90600160a81b900460ff1681565b348015610614575f5ffd5b506103f66106233660046125f5565b6001600160a01b03165f9081526001602052604090205490565b348015610648575f5ffd5b506103f6600b5481565b34801561065d575f5ffd5b5061030d610ce6565b348015610671575f5ffd5b5061030d6106803660046125f5565b610cf9565b348015610690575f5ffd5b506103f660095481565b3480156106a5575f5ffd5b505f546001600160a01b03166103ce565b3480156106c1575f5ffd5b5061030d6106d0366004612632565b610dab565b3480156106e0575f5ffd5b50610337610e13565b3480156106f4575f5ffd5b5061030d610703366004612649565b610e22565b348015610713575f5ffd5b5061030d610722366004612535565b610e71565b348015610732575f5ffd5b5061036c6107413660046124fe565b61107e565b348015610751575f5ffd5b506103f660115481565b348015610766575f5ffd5b5061030d610775366004612535565b61108b565b348015610785575f5ffd5b5061030d610794366004612632565b6110d5565b3480156107a4575f5ffd5b5061036c6107b33660046125f5565b60156020525f908152604090205460ff1681565b3480156107d2575f5ffd5b506103f6600c5481565b3480156107e7575f5ffd5b506103f6601981565b3480156107fb575f5ffd5b506007546103ce906001600160a01b031681565b34801561081a575f5ffd5b5061030d6108293660046125f5565b6111a1565b348015610839575f5ffd5b506103f660085481565b34801561084e575f5ffd5b5061030d61085d366004612632565b611386565b34801561086d575f5ffd5b5060075461036c90600160a01b900460ff1681565b34801561088d575f5ffd5b5061030d61089c366004612632565b6113ee565b3480156108ac575f5ffd5b506103f66108bb366004612680565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f0575f5ffd5b506103f6600e5481565b348015610905575f5ffd5b5060075461036c90600160b01b900460ff1681565b348015610925575f5ffd5b5061030d6109343660046125f5565b611456565b348015610944575f5ffd5b5061030d610953366004612632565b611500565b348015610963575f5ffd5b5061030d6109723660046125f5565b61157e565b348015610982575f5ffd5b5061030d610991366004612632565b6115c0565b3480156109a1575f5ffd5b506103f6600d5481565b3480156109b6575f5ffd5b506006546103ce906001600160a01b031681565b6109d261163e565b600754600160c01b900460ff16156109fd576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a51906126ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d906126ac565b8015610ac85780601f10610a9f57610100808354040283529160200191610ac8565b820191905f5260205f20905b815481529060010190602001808311610aab57829003601f168201915b5050505050905090565b5f33610adf81858561166a565b60019150505b92915050565b610af361163e565b5f5b82811015610b3557610b2d848483818110610b1257610b126126e4565b9050602002016020810190610b2791906125f5565b8361167c565b600101610af5565b50505050565b5f33610b488582856116d7565b610b5385858561174c565b506001949350505050565b610b6661163e565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bb390831515815260200190565b60405180910390a150565b610bc661163e565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bb390831515815260200190565b610c1b61163e565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bb390831515815260200190565b610c7061163e565b6103e8610c7c60035490565b610c8790600361270c565b610c919190612723565b811015610cb157604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bb3565b610cee61163e565b610cf75f6117a9565b565b6007546001600160a01b03163314610d2457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610d4b57604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610db361163e565b6019811115610dd55760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d9f565b606060058054610a51906126ac565b610e2a61163e565b6001600160a01b0382165f9081526015602052604090205460ff1615610e63576040516304eb79b560e31b815260040160405180910390fd5b610e6d82826117ed565b5050565b610e7961163e565b5f5b82811015610b355760155f858584818110610e9857610e986126e4565b9050602002016020810190610ead91906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f2e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610f0d57610f0d6126e4565b9050602002016020810190610f2291906125f5565b6001600160a01b031614155b8015610f69575030848483818110610f4857610f486126e4565b9050602002016020810190610f5d91906125f5565b6001600160a01b031614155b8015610fa457505f848483818110610f8357610f836126e4565b9050602002016020810190610f9891906125f5565b6001600160a01b031614155b8015611041575060135f858584818110610fc057610fc06126e4565b9050602002016020810190610fd591906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015611041575060145f85858481811061100e5761100e6126e4565b905060200201602081019061102391906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16155b156110765761107684848381811061105b5761105b6126e4565b905060200201602081019061107091906125f5565b83611848565b600101610e7b565b5f33610adf81858561174c565b61109361163e565b5f5b82811015610b35576110cd8484838181106110b2576110b26126e4565b90506020020160208101906110c791906125f5565b836118a3565b600101611095565b6110dd61163e565b5f6110e760035490565b9050620f42406110f882600161270c565b6111029190612723565b82101561112257604051631fbaba3560e01b815260040160405180910390fd5b6103e861113082600561270c565b61113a9190612723565b82111561115a5760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111a961163e565b335f6001600160a01b03831661124f5750475f816111da57604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611220576040519150601f19603f3d011682016040523d82523d5f602084013e611225565b606091505b5050809150508061124957604051633398652560e11b815260040160405180910390fd5b50611347565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611291573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b59190612742565b90505f81116112d75760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611321573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113459190612759565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611194565b61138e61163e565b60198111156113b05760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d9f565b6113f661163e565b60198111156114185760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d9f565b6006546001600160a01b0316331461148157604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166114a857604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d9f565b61150861163e565b6103e861151460035490565b61151f90600261270c565b6115299190612723565b81101561154957604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bb3565b61158661163e565b6001600160a01b0381166115b457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6115bd816117a9565b50565b6115c861163e565b6103e86115d460035490565b6115df90600261270c565b6115e99190612723565b81101561160957604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bb3565b5f546001600160a01b03163314610cf75760405163118cdaa760e01b81523360048201526024016115ab565b61167783838360016118fe565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d9f565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b35578181101561173e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016115ab565b610b3584848484035f6118fe565b6001600160a01b03831661177557604051634b637e8f60e11b81525f60048201526024016115ab565b6001600160a01b03821661179e5760405163ec442f0560e01b81525f60048201526024016115ab565b6116778383836119d0565b5f546001600160a01b031680156117ce576117c4815f6118a3565b6117ce815f61167c565b6117d98260016118a3565b6117e482600161167c565b610e6d826120ac565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d9f565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d9f565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d9f565b6001600160a01b0384166119275760405163e602df0560e01b81525f60048201526024016115ab565b6001600160a01b03831661195057604051634a1406b160e11b81525f60048201526024016115ab565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b3557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516119c291815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff1615611a0f576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b03161480611a4757506001600160a01b0383165f9081526012602052604090205460ff16155b611a64576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a955750826001600160a01b0316826001600160a01b0316145b80611ab857506001600160a01b0382165f9081526012602052604090205460ff16155b611ad5576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611b0457506001600160a01b0386165f9081526014602052604090205460ff165b80611b2657506001600160a01b0385165f9081526014602052604090205460ff165b611b4357604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b685750600754600160b81b900460ff16155b8015611bae57506001600160a01b0387165f9081526014602052604090205460ff1680611bac57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611ea8575f546001600160a01b03888116911614801590611be057505f546001600160a01b03878116911614155b8015611bf457506001600160a01b03861615155b8015611c0b57506001600160a01b03861661dead14155b15611ea857600754600160a81b900460ff1615611d2e577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614158015611c9657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b15611d2e57611ca6600383612774565b6001600160a01b0384165f90815260166020526040902054108015611ceb5750611cd1600383612774565b6001600160a01b0387165f90815260166020526040902054105b611d0857604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d6d57506001600160a01b0386165f9081526014602052604090205460ff16155b15611dde57600b54851115611d9557604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611dba9087612787565b1115611dd95760405163d867451160e01b815260040160405180910390fd5b611ea8565b6001600160a01b0386165f9081526015602052604090205460ff168015611e1d57506001600160a01b0387165f9081526014602052604090205460ff16155b15611e4557600c54851115611dd9576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611ea857600d546001600160a01b0387165f90815260016020526040902054611e899087612787565b1115611ea85760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611ecd5750600754600160b81b900460ff16155b8015611f1357506001600160a01b0388165f9081526013602052604090205460ff1680611f1157506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015612034576001600160a01b0387165f9081526015602052604081205460ff168015611f4357505f601054115b15611f6957606460105488611f58919061270c565b611f629190612723565b9050612015565b6001600160a01b0389165f9081526015602052604090205460ff168015611f9157505f600f54115b15611fa6576064600f5488611f58919061270c565b6001600160a01b0388165f9081526015602052604090205460ff16158015611fe657506001600160a01b0389165f9081526015602052604090205460ff16155b8015611ff357505f601154115b1561201557606460115488612008919061270c565b6120129190612723565b90505b8015612032576120258188612774565b96506120328930836120fb565b505b305f90815260016020526040902054600e5481101582801561206e57506001600160a01b038a165f9081526015602052604090205460ff16155b80156120775750805b1561209557600a548511156120955761208f82612221565b600a8590555b6120a08a8a8a6120fb565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316612125578060035f82825461211a9190612787565b909155506121959050565b6001600160a01b0383165f90815260016020526040902054818110156121775760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016115ab565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b0382166121b1576003805482900390556121cf565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161221491815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061226b5761226b6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230b919061279a565b8160018151811061231e5761231e6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54601461234e919061270c565b90508084111561235c578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123b09087905f908790309042906004016127b5565b5f604051808303815f87803b1580156123c7575f5ffd5b505af11580156123d9573d5f5f3e3d5ffd5b504792505f91506123ed9050600483612723565b90505f6123fa8284612774565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114612445576040519150601f19603f3d011682016040523d82523d5f602084013e61244a565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612497576040519150601f19603f3d011682016040523d82523d5f602084013e61249c565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146115bd575f5ffd5b5f5f6040838503121561250f575f5ffd5b823561251a816124ea565b946020939093013593505050565b80151581146115bd575f5ffd5b5f5f5f60408486031215612547575f5ffd5b833567ffffffffffffffff81111561255d575f5ffd5b8401601f8101861361256d575f5ffd5b803567ffffffffffffffff811115612583575f5ffd5b8660208260051b8401011115612597575f5ffd5b6020918201945092508401356125ac81612528565b809150509250925092565b5f5f5f606084860312156125c9575f5ffd5b83356125d4816124ea565b925060208401356125e4816124ea565b929592945050506040919091013590565b5f60208284031215612605575f5ffd5b8135612610816124ea565b9392505050565b5f60208284031215612627575f5ffd5b813561261081612528565b5f60208284031215612642575f5ffd5b5035919050565b5f5f6040838503121561265a575f5ffd5b8235612665816124ea565b9150602083013561267581612528565b809150509250929050565b5f5f60408385031215612691575f5ffd5b823561269c816124ea565b91506020830135612675816124ea565b600181811c908216806126c057607f821691505b6020821081036126de57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610ae557610ae56126f8565b5f8261273d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612752575f5ffd5b5051919050565b5f60208284031215612769575f5ffd5b815161261081612528565b81810381811115610ae557610ae56126f8565b80820180821115610ae557610ae56126f8565b5f602082840312156127aa575f5ffd5b8151612610816124ea565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156128055783516001600160a01b03168352602093840193909201916001016127de565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212205c9286e78a9ff59bc168c4b1ffd7ef4c6d407e944d4606dbae14dda1d267363564736f6c634300081c0033

Deployed Bytecode

0x60806040526004361061030d575f3560e01c80638da5cb5b11610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610958578063f53bc83514610977578063f8b45b0514610996578063fd72e22a146109ab57005b8063e6c1909b146108fa578063ee5ecc891461091a578063ef998cf01461093957005b8063d5759ba3116100c7578063d5759ba314610862578063dcf7aef314610882578063dd62ed3e146108a1578063e2f45605146108e557005b8063cb9637281461080f578063d00efb2f1461082e578063d26ed3e31461084357005b8063acb2ad6f11610151578063b62496f51161012e578063b62496f514610799578063b8eb3546146107c7578063bc063e1a146107dc578063c04a5414146107f057005b8063acb2ad6f14610746578063ad29ffde1461075b578063afa4f3b21461077a57005b80638da5cb5b1461069a57806395927c25146106b657806395d89b41146106d55780639a7a23d6146106e95780639c0db5f314610708578063a9059cbb1461072757005b806349bd5a5e116102635780635d0044ca1161020757806370db69d6116101e457806370db69d61461063d578063715018a61461065257806372ac248614610666578063790ca4131461068557005b80635d0044ca146105ca5780636ca541e5146105e957806370a082311461060957005b8063538ba4f911610240578063538ba4f91461054b5780635932ead11461055e57806359512ab01461057d5780635cce86cd1461059c57005b806349bd5a5e146104d55780634e6fd6c4146105085780634fbee1931461051d57005b806323b872dd116102ca578063313ce567116102a7578063313ce567146104585780633bbac5791461047357806341aea9de146104a157806347062402146104c057005b806323b872dd146104045780632b14ca5614610423578063307aebc91461043857005b806301339c211461030f57806306fdde0314610323578063095ea7b31461034d578063106a5a8f1461037c5780631694505e1461039b57806318160ddd146103e6575b005b34801561031a575f5ffd5b5061030d6109ca565b34801561032e575f5ffd5b50610337610a42565b60405161034491906124b5565b60405180910390f35b348015610358575f5ffd5b5061036c6103673660046124fe565b610ad2565b6040519015158152602001610344565b348015610387575f5ffd5b5061030d610396366004612535565b610aeb565b3480156103a6575f5ffd5b506103ce7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610344565b3480156103f1575f5ffd5b506003545b604051908152602001610344565b34801561040f575f5ffd5b5061036c61041e3660046125b7565b610b3b565b34801561042e575f5ffd5b506103f660105481565b348015610443575f5ffd5b5060075461036c90600160c01b900460ff1681565b348015610463575f5ffd5b5060405160128152602001610344565b34801561047e575f5ffd5b5061036c61048d3660046125f5565b60126020525f908152604090205460ff1681565b3480156104ac575f5ffd5b5061030d6104bb366004612617565b610b5e565b3480156104cb575f5ffd5b506103f6600f5481565b3480156104e0575f5ffd5b506103ce7f0000000000000000000000002ea2c85be0f303736255362c1b75cfa7a16fca0681565b348015610513575f5ffd5b506103ce61dead81565b348015610528575f5ffd5b5061036c6105373660046125f5565b60136020525f908152604090205460ff1681565b348015610556575f5ffd5b506103ce5f81565b348015610569575f5ffd5b5061030d610578366004612617565b610bbe565b348015610588575f5ffd5b5061030d610597366004612617565b610c13565b3480156105a7575f5ffd5b5061036c6105b63660046125f5565b60146020525f908152604090205460ff1681565b3480156105d5575f5ffd5b5061030d6105e4366004612632565b610c68565b3480156105f4575f5ffd5b5060075461036c90600160a81b900460ff1681565b348015610614575f5ffd5b506103f66106233660046125f5565b6001600160a01b03165f9081526001602052604090205490565b348015610648575f5ffd5b506103f6600b5481565b34801561065d575f5ffd5b5061030d610ce6565b348015610671575f5ffd5b5061030d6106803660046125f5565b610cf9565b348015610690575f5ffd5b506103f660095481565b3480156106a5575f5ffd5b505f546001600160a01b03166103ce565b3480156106c1575f5ffd5b5061030d6106d0366004612632565b610dab565b3480156106e0575f5ffd5b50610337610e13565b3480156106f4575f5ffd5b5061030d610703366004612649565b610e22565b348015610713575f5ffd5b5061030d610722366004612535565b610e71565b348015610732575f5ffd5b5061036c6107413660046124fe565b61107e565b348015610751575f5ffd5b506103f660115481565b348015610766575f5ffd5b5061030d610775366004612535565b61108b565b348015610785575f5ffd5b5061030d610794366004612632565b6110d5565b3480156107a4575f5ffd5b5061036c6107b33660046125f5565b60156020525f908152604090205460ff1681565b3480156107d2575f5ffd5b506103f6600c5481565b3480156107e7575f5ffd5b506103f6601981565b3480156107fb575f5ffd5b506007546103ce906001600160a01b031681565b34801561081a575f5ffd5b5061030d6108293660046125f5565b6111a1565b348015610839575f5ffd5b506103f660085481565b34801561084e575f5ffd5b5061030d61085d366004612632565b611386565b34801561086d575f5ffd5b5060075461036c90600160a01b900460ff1681565b34801561088d575f5ffd5b5061030d61089c366004612632565b6113ee565b3480156108ac575f5ffd5b506103f66108bb366004612680565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f0575f5ffd5b506103f6600e5481565b348015610905575f5ffd5b5060075461036c90600160b01b900460ff1681565b348015610925575f5ffd5b5061030d6109343660046125f5565b611456565b348015610944575f5ffd5b5061030d610953366004612632565b611500565b348015610963575f5ffd5b5061030d6109723660046125f5565b61157e565b348015610982575f5ffd5b5061030d610991366004612632565b6115c0565b3480156109a1575f5ffd5b506103f6600d5481565b3480156109b6575f5ffd5b506006546103ce906001600160a01b031681565b6109d261163e565b600754600160c01b900460ff16156109fd576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b606060048054610a51906126ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7d906126ac565b8015610ac85780601f10610a9f57610100808354040283529160200191610ac8565b820191905f5260205f20905b815481529060010190602001808311610aab57829003601f168201915b5050505050905090565b5f33610adf81858561166a565b60019150505b92915050565b610af361163e565b5f5b82811015610b3557610b2d848483818110610b1257610b126126e4565b9050602002016020810190610b2791906125f5565b8361167c565b600101610af5565b50505050565b5f33610b488582856116d7565b610b5385858561174c565b506001949350505050565b610b6661163e565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bb390831515815260200190565b60405180910390a150565b610bc661163e565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bb390831515815260200190565b610c1b61163e565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bb390831515815260200190565b610c7061163e565b6103e8610c7c60035490565b610c8790600361270c565b610c919190612723565b811015610cb157604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bb3565b610cee61163e565b610cf75f6117a9565b565b6007546001600160a01b03163314610d2457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610d4b57604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610db361163e565b6019811115610dd55760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d9f565b606060058054610a51906126ac565b610e2a61163e565b6001600160a01b0382165f9081526015602052604090205460ff1615610e63576040516304eb79b560e31b815260040160405180910390fd5b610e6d82826117ed565b5050565b610e7961163e565b5f5b82811015610b355760155f858584818110610e9857610e986126e4565b9050602002016020810190610ead91906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f2e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610f0d57610f0d6126e4565b9050602002016020810190610f2291906125f5565b6001600160a01b031614155b8015610f69575030848483818110610f4857610f486126e4565b9050602002016020810190610f5d91906125f5565b6001600160a01b031614155b8015610fa457505f848483818110610f8357610f836126e4565b9050602002016020810190610f9891906125f5565b6001600160a01b031614155b8015611041575060135f858584818110610fc057610fc06126e4565b9050602002016020810190610fd591906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16158015611041575060145f85858481811061100e5761100e6126e4565b905060200201602081019061102391906125f5565b6001600160a01b0316815260208101919091526040015f205460ff16155b156110765761107684848381811061105b5761105b6126e4565b905060200201602081019061107091906125f5565b83611848565b600101610e7b565b5f33610adf81858561174c565b61109361163e565b5f5b82811015610b35576110cd8484838181106110b2576110b26126e4565b90506020020160208101906110c791906125f5565b836118a3565b600101611095565b6110dd61163e565b5f6110e760035490565b9050620f42406110f882600161270c565b6111029190612723565b82101561112257604051631fbaba3560e01b815260040160405180910390fd5b6103e861113082600561270c565b61113a9190612723565b82111561115a5760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111a961163e565b335f6001600160a01b03831661124f5750475f816111da57604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611220576040519150601f19603f3d011682016040523d82523d5f602084013e611225565b606091505b5050809150508061124957604051633398652560e11b815260040160405180910390fd5b50611347565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611291573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b59190612742565b90505f81116112d75760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611321573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113459190612759565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b9101611194565b61138e61163e565b60198111156113b05760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d9f565b6113f661163e565b60198111156114185760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d9f565b6006546001600160a01b0316331461148157604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381166114a857604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d9f565b61150861163e565b6103e861151460035490565b61151f90600261270c565b6115299190612723565b81101561154957604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bb3565b61158661163e565b6001600160a01b0381166115b457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6115bd816117a9565b50565b6115c861163e565b6103e86115d460035490565b6115df90600261270c565b6115e99190612723565b81101561160957604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bb3565b5f546001600160a01b03163314610cf75760405163118cdaa760e01b81523360048201526024016115ab565b61167783838360016118fe565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d9f565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610b35578181101561173e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016115ab565b610b3584848484035f6118fe565b6001600160a01b03831661177557604051634b637e8f60e11b81525f60048201526024016115ab565b6001600160a01b03821661179e5760405163ec442f0560e01b81525f60048201526024016115ab565b6116778383836119d0565b5f546001600160a01b031680156117ce576117c4815f6118a3565b6117ce815f61167c565b6117d98260016118a3565b6117e482600161167c565b610e6d826120ac565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d9f565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d9f565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d9f565b6001600160a01b0384166119275760405163e602df0560e01b81525f60048201526024016115ab565b6001600160a01b03831661195057604051634a1406b160e11b81525f60048201526024016115ab565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610b3557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516119c291815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff1615611a0f576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b03161480611a4757506001600160a01b0383165f9081526012602052604090205460ff16155b611a64576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a955750826001600160a01b0316826001600160a01b0316145b80611ab857506001600160a01b0382165f9081526012602052604090205460ff16155b611ad5576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611b0457506001600160a01b0386165f9081526014602052604090205460ff165b80611b2657506001600160a01b0385165f9081526014602052604090205460ff165b611b4357604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b685750600754600160b81b900460ff16155b8015611bae57506001600160a01b0387165f9081526014602052604090205460ff1680611bac57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611ea8575f546001600160a01b03888116911614801590611be057505f546001600160a01b03878116911614155b8015611bf457506001600160a01b03861615155b8015611c0b57506001600160a01b03861661dead14155b15611ea857600754600160a81b900460ff1615611d2e577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316866001600160a01b031614158015611c9657507f0000000000000000000000002ea2c85be0f303736255362c1b75cfa7a16fca066001600160a01b0316866001600160a01b031614155b15611d2e57611ca6600383612774565b6001600160a01b0384165f90815260166020526040902054108015611ceb5750611cd1600383612774565b6001600160a01b0387165f90815260166020526040902054105b611d0857604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d6d57506001600160a01b0386165f9081526014602052604090205460ff16155b15611dde57600b54851115611d9557604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611dba9087612787565b1115611dd95760405163d867451160e01b815260040160405180910390fd5b611ea8565b6001600160a01b0386165f9081526015602052604090205460ff168015611e1d57506001600160a01b0387165f9081526014602052604090205460ff16155b15611e4557600c54851115611dd9576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611ea857600d546001600160a01b0387165f90815260016020526040902054611e899087612787565b1115611ea85760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611ecd5750600754600160b81b900460ff16155b8015611f1357506001600160a01b0388165f9081526013602052604090205460ff1680611f1157506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015612034576001600160a01b0387165f9081526015602052604081205460ff168015611f4357505f601054115b15611f6957606460105488611f58919061270c565b611f629190612723565b9050612015565b6001600160a01b0389165f9081526015602052604090205460ff168015611f9157505f600f54115b15611fa6576064600f5488611f58919061270c565b6001600160a01b0388165f9081526015602052604090205460ff16158015611fe657506001600160a01b0389165f9081526015602052604090205460ff16155b8015611ff357505f601154115b1561201557606460115488612008919061270c565b6120129190612723565b90505b8015612032576120258188612774565b96506120328930836120fb565b505b305f90815260016020526040902054600e5481101582801561206e57506001600160a01b038a165f9081526015602052604090205460ff16155b80156120775750805b1561209557600a548511156120955761208f82612221565b600a8590555b6120a08a8a8a6120fb565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316612125578060035f82825461211a9190612787565b909155506121959050565b6001600160a01b0383165f90815260016020526040902054818110156121775760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016115ab565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b0382166121b1576003805482900390556121cf565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161221491815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061226b5761226b6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230b919061279a565b8160018151811061231e5761231e6126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54601461234e919061270c565b90508084111561235c578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123b09087905f908790309042906004016127b5565b5f604051808303815f87803b1580156123c7575f5ffd5b505af11580156123d9573d5f5f3e3d5ffd5b504792505f91506123ed9050600483612723565b90505f6123fa8284612774565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114612445576040519150601f19603f3d011682016040523d82523d5f602084013e61244a565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f8114612497576040519150601f19603f3d011682016040523d82523d5f602084013e61249c565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146115bd575f5ffd5b5f5f6040838503121561250f575f5ffd5b823561251a816124ea565b946020939093013593505050565b80151581146115bd575f5ffd5b5f5f5f60408486031215612547575f5ffd5b833567ffffffffffffffff81111561255d575f5ffd5b8401601f8101861361256d575f5ffd5b803567ffffffffffffffff811115612583575f5ffd5b8660208260051b8401011115612597575f5ffd5b6020918201945092508401356125ac81612528565b809150509250925092565b5f5f5f606084860312156125c9575f5ffd5b83356125d4816124ea565b925060208401356125e4816124ea565b929592945050506040919091013590565b5f60208284031215612605575f5ffd5b8135612610816124ea565b9392505050565b5f60208284031215612627575f5ffd5b813561261081612528565b5f60208284031215612642575f5ffd5b5035919050565b5f5f6040838503121561265a575f5ffd5b8235612665816124ea565b9150602083013561267581612528565b809150509250929050565b5f5f60408385031215612691575f5ffd5b823561269c816124ea565b91506020830135612675816124ea565b600181811c908216806126c057607f821691505b6020821081036126de57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610ae557610ae56126f8565b5f8261273d57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612752575f5ffd5b5051919050565b5f60208284031215612769575f5ffd5b815161261081612528565b81810381811115610ae557610ae56126f8565b80820180821115610ae557610ae56126f8565b5f602082840312156127aa575f5ffd5b8151612610816124ea565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156128055783516001600160a01b03168352602093840193909201916001016127de565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212205c9286e78a9ff59bc168c4b1ffd7ef4c6d407e944d4606dbae14dda1d267363564736f6c634300081c0033

Deployed Bytecode Sourcemap

26570:15737:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31210:223;;;;;;;;;;;;;:::i;13237:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15571:222;;;;;;;;;;-1:-1:-1;15571:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15571:222:0;945:187:1;34661:239:0;;;;;;;;;;-1:-1:-1;34661:239:0;;;;;:::i;:::-;;:::i;26612:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26612:49:0;2010:227:1;14339:99:0;;;;;;;;;;-1:-1:-1;14418:12:0;;14339:99;;;2388:25:1;;;2376:2;2361:18;14339:99:0;2242:177:1;16371:283:0;;;;;;;;;;-1:-1:-1;16371:283:0;;;;;:::i;:::-;;:::i;27396:22::-;;;;;;;;;;;;;;;;27044;;;;;;;;;;-1:-1:-1;27044:22:0;;;;-1:-1:-1;;;27044:22:0;;;;;;14190:84;;;;;;;;;;-1:-1:-1;14190:84:0;;14264:2;3079:36:1;;3067:2;3052:18;14190:84:0;2937:184:1;27460:37:0;;;;;;;;;;-1:-1:-1;27460:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32194:138;;;;;;;;;;-1:-1:-1;32194:138:0;;;;;:::i;:::-;;:::i;27368:21::-;;;;;;;;;;;;;;;;26789:38;;;;;;;;;;;;;;;26726:54;;;;;;;;;;;;26773:6;26726:54;;27504:50;;;;;;;;;;-1:-1:-1;27504:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26670:49;;;;;;;;;;;;26717:1;26670:49;;32340:144;;;;;;;;;;-1:-1:-1;32340:144:0;;;;;:::i;:::-;;:::i;32492:133::-;;;;;;;;;;-1:-1:-1;32492:133:0;;;;;:::i;:::-;;:::i;27561:52::-;;;;;;;;;;-1:-1:-1;27561:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33043:207;;;;;;;;;;-1:-1:-1;33043:207:0;;;;;:::i;:::-;;:::i;26947:29::-;;;;;;;;;;-1:-1:-1;26947:29:0;;;;-1:-1:-1;;;26947:29:0;;;;;;14501:118;;;;;;;;;;-1:-1:-1;14501:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14593:18:0;14566:7;14593:18;;;:9;:18;;;;;;;14501:118;27238:21;;;;;;;;;;;;;;;;25218:103;;;;;;;;;;;;;:::i;31813:373::-;;;;;;;;;;-1:-1:-1;31813:373:0;;;;;:::i;:::-;;:::i;27108:25::-;;;;;;;;;;;;;;;;24543:87;;;;;;;;;;-1:-1:-1;24589:7:0;24616:6;-1:-1:-1;;;;;24616:6:0;24543:87;;33906:232;;;;;;;;;;-1:-1:-1;33906:232:0;;;;;:::i;:::-;;:::i;13447:95::-;;;;;;;;;;;;;:::i;35489:234::-;;;;;;;;;;-1:-1:-1;35489:234:0;;;;;:::i;:::-;;:::i;34908:573::-;;;;;;;;;;-1:-1:-1;34908:573:0;;;;;:::i;:::-;;:::i;14824:182::-;;;;;;;;;;-1:-1:-1;14824:182:0;;;;;:::i;:::-;;:::i;27425:26::-;;;;;;;;;;;;;;;;34418:235;;;;;;;;;;-1:-1:-1;34418:235:0;;;;;:::i;:::-;;:::i;33258:408::-;;;;;;;;;;-1:-1:-1;33258:408:0;;;;;:::i;:::-;;:::i;27620:57::-;;;;;;;;;;-1:-1:-1;27620:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27266:22;;;;;;;;;;;;;;;;27193:36;;;;;;;;;;;;27227:2;27193:36;;26872:32;;;;;;;;;;-1:-1:-1;26872:32:0;;;;-1:-1:-1;;;;;26872:32:0;;;35731:674;;;;;;;;;;-1:-1:-1;35731:674:0;;;;;:::i;:::-;;:::i;27075:26::-;;;;;;;;;;;;;;;;34146:264;;;;;;;;;;-1:-1:-1;34146:264:0;;;;;:::i;:::-;;:::i;26913:27::-;;;;;;;;;;-1:-1:-1;26913:27:0;;;;-1:-1:-1;;;26913:27:0;;;;;;33674:224;;;;;;;;;;-1:-1:-1;33674:224:0;;;;;:::i;:::-;;:::i;15069:183::-;;;;;;;;;;-1:-1:-1;15069:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;15217:18:0;;;15185:7;15217:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15069:183;27328:33;;;;;;;;;;;;;;;;26983:24;;;;;;;;;;-1:-1:-1;26983:24:0;;;;-1:-1:-1;;;26983:24:0;;;;;;31441:364;;;;;;;;;;-1:-1:-1;31441:364:0;;;;;:::i;:::-;;:::i;32836:199::-;;;;;;;;;;-1:-1:-1;32836:199:0;;;;;:::i;:::-;;:::i;25476:220::-;;;;;;;;;;-1:-1:-1;25476:220:0;;;;;:::i;:::-;;:::i;32633:195::-;;;;;;;;;;-1:-1:-1;32633:195:0;;;;;:::i;:::-;;:::i;27295:24::-;;;;;;;;;;;;;;;;26834:31;;;;;;;;;;-1:-1:-1;26834:31:0;;;;-1:-1:-1;;;;;26834:31:0;;;31210:223;24429:13;:11;:13::i;:::-;31267:10:::1;::::0;-1:-1:-1;;;31267:10:0;::::1;;;31266:11;31258:39;;;;-1:-1:-1::0;;;31258:39:0::1;;;;;;;;;;;;31308:10;:17:::0;;-1:-1:-1;;;;31308:17:0::1;-1:-1:-1::0;;;31308:17:0::1;::::0;;31350:12:::1;31336:11;:26:::0;31386:15:::1;31373:10;:28:::0;31417:8:::1;::::0;::::1;::::0;31308:17;;31417:8:::1;31210:223::o:0;13237:91::-;13282:13;13315:5;13308:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13237:91;:::o;15571:222::-;15671:4;4532:10;15732:31;4532:10;15748:7;15757:5;15732:8;:31::i;:::-;15781:4;15774:11;;;15571:222;;;;;:::o;34661:239::-;24429:13;:11;:13::i;:::-;34787:9:::1;34782:111;34802:19:::0;;::::1;34782:111;;;34843:38;34862:8;;34871:1;34862:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34875:5;34843:18;:38::i;:::-;34823:3;;34782:111;;;;34661:239:::0;;;:::o;16371:283::-;16492:4;4532:10;16550:37;16566:4;4532:10;16581:5;16550:15;:37::i;:::-;16598:26;16608:4;16614:2;16618:5;16598:9;:26::i;:::-;-1:-1:-1;16642:4:0;;16371:283;-1:-1:-1;;;;16371:283:0:o;32194:138::-;24429:13;:11;:13::i;:::-;32262:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;32262:23:0::1;-1:-1:-1::0;;;;32262:23:0;;::::1;;::::0;;32301::::1;::::0;::::1;::::0;::::1;::::0;32280:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32301:23:0::1;;;;;;;;32194:138:::0;:::o;32340:144::-;24429:13;:11;:13::i;:::-;32410:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;32410:25:0::1;-1:-1:-1::0;;;;32410:25:0;;::::1;;::::0;;32451::::1;::::0;::::1;::::0;::::1;::::0;32430:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32492:133:0;24429:13;:11;:13::i;:::-;32559:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;32559:20:0::1;-1:-1:-1::0;;;;32559:20:0;;::::1;;::::0;;32595:22:::1;::::0;::::1;::::0;::::1;::::0;32574:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;33043:207:0;24429:13;:11;:13::i;:::-;33152:4:::1;33131:13;14418:12:::0;;;14339:99;33131:13:::1;:17;::::0;33147:1:::1;33131:17;:::i;:::-;33130:26;;;;:::i;:::-;33119:6;:38;;33111:63;;;;-1:-1:-1::0;;;33111:63:0::1;;;;;;;;;;;;33185:9;:18:::0;;;33219:23:::1;::::0;2388:25:1;;;33219:23:0::1;::::0;2376:2:1;2361:18;33219:23:0::1;2242:177:1::0;25218:103:0;24429:13;:11;:13::i;:::-;25283:30:::1;25310:1;25283:18;:30::i;:::-;25218:103::o:0;31813:373::-;31913:17;;-1:-1:-1;;;;;31913:17:0;31899:10;:31;31891:57;;;;-1:-1:-1;;;31891:57:0;;;;;;;;;;;;-1:-1:-1;;;;;31967:32:0;;31959:56;;;;-1:-1:-1;;;31959:56:0;;;;;;;;;;;;32046:17;;;-1:-1:-1;;;;;32074:38:0;;;-1:-1:-1;;;;;;32074:38:0;;;;;;;32128:50;;;6061:51:1;;;32046:17:0;;6143:2:1;6128:18;;6121:60;;;32046:17:0;32128:50;;6034:18:1;32128:50:0;;;;;;;;31880:306;31813:373;:::o;33906:232::-;24429:13;:11;:13::i;:::-;27227:2:::1;33983:8;:19;;33975:42;;;;-1:-1:-1::0;;;33975:42:0::1;;;;;;;;;;;;34047:7;::::0;;34065:18;;;;34099:31:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34099:31:0::1;::::0;6339:18:1;34099:31:0::1;6192:248:1::0;13447:95:0;13494:13;13527:7;13520:14;;;;;:::i;35489:234::-;24429:13;:11;:13::i;:::-;-1:-1:-1;;;;;35614:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;::::1;;35613:32;35605:58;;;;-1:-1:-1::0;;;35605:58:0::1;;;;;;;;;;;;35674:41;35703:4;35709:5;35674:28;:41::i;:::-;35489:234:::0;;:::o;34908:573::-;24429:13;:11;:13::i;:::-;35024:9:::1;35019:455;35039:19:::0;;::::1;35019:455;;;35104:25;:38;35130:8;;35139:1;35130:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35104:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35104:38:0;;::::1;;35103:39;35102:103:::0;::::1;;;;35188:15;-1:-1:-1::0;;;;;35165:39:0::1;:8;;35174:1;35165:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35165:39:0::1;;;35102:103;:154;;;;-1:-1:-1::0;35250:4:0::1;35227:8:::0;;35236:1;35227:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35227:28:0::1;;;35102:154;:202;;;;-1:-1:-1::0;35301:1:0::1;35278:8:::0;;35287:1;35278:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35278:25:0::1;;;35102:202;:316;;;;;35327:18;:31;35346:8;;35355:1;35346:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35327:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35327:31:0;;::::1;;35326:32;:91:::0;::::1;;;;35384:20;:33;35405:8;;35414:1;35405:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35384:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35384:33:0;;::::1;;35383:34;35326:91;35080:382;;;35434:28;35443:8;;35452:1;35443:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35456:5;35434:8;:28::i;:::-;35060:3;;35019:455;;14824:182:::0;14893:4;4532:10;14949:27;4532:10;14966:2;14970:5;14949:9;:27::i;34418:235::-;24429:13;:11;:13::i;:::-;34542:9:::1;34537:109;34557:19:::0;;::::1;34537:109;;;34598:36;34615:8;;34624:1;34615:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34628:5;34598:16;:36::i;:::-;34578:3;;34537:109;;33258:408:::0;24429:13;:11;:13::i;:::-;33335:20:::1;33358:13;14418:12:::0;;;14339:99;33358:13:::1;33335:36:::0;-1:-1:-1;33421:7:0::1;33401:16;33335:36:::0;33416:1:::1;33401:16;:::i;:::-;33400:28;;;;:::i;:::-;33390:6;:38;;33382:63;;;;-1:-1:-1::0;;;33382:63:0::1;;;;;;;;;;;;33495:4;33475:16;:12:::0;33490:1:::1;33475:16;:::i;:::-;33474:25;;;;:::i;:::-;33464:6;:35;;33456:61;;;;-1:-1:-1::0;;;33456:61:0::1;;;;;;;;;;;;33547:18;::::0;;33576:27;;;;33619:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33619:39:0::1;::::0;6339:18:1;33619:39:0::1;;;;;;;;33324:342;;33258:408:::0;:::o;35731:674::-;24429:13;:11;:13::i;:::-;35823:10:::1;35806:14;-1:-1:-1::0;;;;;35873:20:0;::::1;35869:478;;-1:-1:-1::0;35946:21:0::1;35910:12;35990:10:::0;35982:37:::1;;;;-1:-1:-1::0;;;35982:37:0::1;;;;;;;;;;;;36048:39;::::0;-1:-1:-1;;;;;36048:20:0;::::1;::::0;36076:6;;36048:39:::1;::::0;;;36076:6;36048:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36034:53;;;;;36110:7;36102:48;;;;-1:-1:-1::0;;;36102:48:0::1;;;;;;;;;;;;35895:267;35869:478;;;36192:39;::::0;-1:-1:-1;;;36192:39:0;;36225:4:::1;36192:39;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;36192:24:0;::::1;::::0;::::1;::::0;2153:18:1;;36192:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36183:48;;36263:1;36254:6;:10;36246:31;;;;-1:-1:-1::0;;;36246:31:0::1;;;;;;;;;;;;36292:43;::::0;-1:-1:-1;;;36292:43:0;;36316:10:::1;36292:43;::::0;::::1;7018:51:1::0;7085:18;;;7078:34;;;-1:-1:-1;;;;;36292:23:0;::::1;::::0;::::1;::::0;6991:18:1;;36292:43:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35869:478;36362:35;::::0;;-1:-1:-1;;;;;7036:32:1;;7018:51;;7100:2;7085:18;;7078:34;;;36362:35:0::1;::::0;6991:18:1;36362:35:0::1;6844:274:1::0;34146:264:0;24429:13;:11;:13::i;:::-;27227:2:::1;34231:12;:23;;34223:46;;;;-1:-1:-1::0;;;34223:46:0::1;;;;;;;;;;;;34299:11;::::0;;34321:26;;;;34363:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34363:39:0::1;::::0;6339:18:1;34363:39:0::1;6192:248:1::0;33674:224:0;24429:13;:11;:13::i;:::-;27227:2:::1;33749:7;:18;;33741:41;;;;-1:-1:-1::0;;;33741:41:0::1;;;;;;;;;;;;33812:6;::::0;;33829:16;;;;33861:29:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33861:29:0::1;::::0;6339:18:1;33861:29:0::1;6192:248:1::0;31441:364:0;31539:16;;-1:-1:-1;;;;;31539:16:0;31525:10;:30;31517:56;;;;-1:-1:-1;;;31517:56:0;;;;;;;;;;;;-1:-1:-1;;;;;31592:31:0;;31584:55;;;;-1:-1:-1;;;31584:55:0;;;;;;;;;;;;31670:16;;;-1:-1:-1;;;;;31697:36:0;;;-1:-1:-1;;;;;;31697:36:0;;;;;;;31749:48;;;6061:51:1;;;31670:16:0;;6143:2:1;6128:18;;6121:60;;;31670:16:0;31749:48;;6034:18:1;31749:48:0;5887:300:1;32836:199:0;24429:13;:11;:13::i;:::-;32943:4:::1;32922:13;14418:12:::0;;;14339:99;32922:13:::1;:17;::::0;32938:1:::1;32922:17;:::i;:::-;32921:26;;;;:::i;:::-;32910:6;:38;;32902:63;;;;-1:-1:-1::0;;;32902:63:0::1;;;;;;;;;;;;32976:7;:16:::0;;;33008:19:::1;::::0;2388:25:1;;;33008:19:0::1;::::0;2376:2:1;2361:18;33008:19:0::1;2242:177:1::0;25476:220:0;24429:13;:11;:13::i;:::-;-1:-1:-1;;;;;25561:22:0;::::1;25557:93;;25607:31;::::0;-1:-1:-1;;;25607:31:0;;25635:1:::1;25607:31;::::0;::::1;2180:51:1::0;2153:18;;25607:31:0::1;;;;;;;;25557:93;25660:28;25679:8;25660:18;:28::i;:::-;25476:220:::0;:::o;32633:195::-;24429:13;:11;:13::i;:::-;32739:4:::1;32718:13;14418:12:::0;;;14339:99;32718:13:::1;:17;::::0;32734:1:::1;32718:17;:::i;:::-;32717:26;;;;:::i;:::-;32706:6;:38;;32698:63;;;;-1:-1:-1::0;;;32698:63:0::1;;;;;;;;;;;;32772:6;:15:::0;;;32803:17:::1;::::0;2388:25:1;;;32803:17:0::1;::::0;2376:2:1;2361:18;32803:17:0::1;2242:177:1::0;24708:166:0;24589:7;24616:6;-1:-1:-1;;;;;24616:6:0;4532:10;24768:23;24764:103;;24815:40;;-1:-1:-1;;;24815:40:0;;4532:10;24815:40;;;2180:51:1;2153:18;;24815:40:0;2010:227:1;20532:164:0;20651:37;20660:5;20667:7;20676:5;20683:4;20651:8;:37::i;:::-;20532:164;;;:::o;41747:179::-;-1:-1:-1;;;;;41832:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;41832:37:0;;;;;;;;;;41885:33;;7541:51:1;;;7608:18;;;7601:50;41885:33:0;;7514:18:1;41885:33:0;7373:284:1;22325:603:0;-1:-1:-1;;;;;15217:18:0;;;22459:24;15217:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22526:37:0;;22522:399;;22603:5;22584:16;:24;22580:214;;;22636:142;;-1:-1:-1;;;22636:142:0;;-1:-1:-1;;;;;7882:32:1;;22636:142:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;22636:142:0;7662:345:1;22580:214:0;22837:57;22846:5;22853:7;22881:5;22862:16;:24;22888:5;22837:8;:57::i;17039:342::-;-1:-1:-1;;;;;17157:18:0;;17153:88;;17199:30;;-1:-1:-1;;;17199:30:0;;17226:1;17199:30;;;2180:51:1;2153:18;;17199:30:0;2010:227:1;17153:88:0;-1:-1:-1;;;;;17255:16:0;;17251:88;;17295:32;;-1:-1:-1;;;17295:32:0;;17324:1;17295:32;;;2180:51:1;2153:18;;17295:32:0;2010:227:1;17251:88:0;17349:24;17357:4;17363:2;17367:5;17349:7;:24::i;36413:398::-;36496:16;24616:6;-1:-1:-1;;;;;24616:6:0;36537:22;;36533:138;;36576:33;36593:8;36603:5;36576:16;:33::i;:::-;36624:35;36643:8;36653:5;36624:18;:35::i;:::-;36681:32;36698:8;36708:4;36681:16;:32::i;:::-;36724:34;36743:8;36753:4;36724:18;:34::i;:::-;36769;36794:8;36769:24;:34::i;42086:218::-;-1:-1:-1;;;;;42201:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;42201:39:0;;;;;;;;;;42256:40;;7541:51:1;;;7608:18;;;7601:50;42256:40:0;;7514:18:1;42256:40:0;7373:284:1;41934:144:0;-1:-1:-1;;;;;42009:14:0;;;;;;:5;:14;;;;;;;;;:22;;-1:-1:-1;;42009:22:0;;;;;;;;;;42047:23;;7541:51:1;;;7608:18;;;7601:50;42047:23:0;;7514:18:1;42047:23:0;7373:284:1;41566:173:0;-1:-1:-1;;;;;41649:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;41649:35:0;;;;;;;;;;41700:31;;7541:51:1;;;7608:18;;;7601:50;41700:31:0;;7514:18:1;41700:31:0;7373:284:1;21547:486:0;-1:-1:-1;;;;;21703:19:0;;21699:91;;21746:32;;-1:-1:-1;;;21746:32:0;;21775:1;21746:32;;;2180:51:1;2153:18;;21746:32:0;2010:227:1;21699:91:0;-1:-1:-1;;;;;21804:21:0;;21800:92;;21849:31;;-1:-1:-1;;;21849:31:0;;21877:1;21849:31;;;2180:51:1;2153:18;;21849:31:0;2010:227:1;21800:92:0;-1:-1:-1;;;;;21902:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21948:78;;;;21999:7;-1:-1:-1;;;;;21983:31:0;21992:5;-1:-1:-1;;;;;21983:31:0;;22008:5;21983:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;21983:31:0;;;;;;;;21547:486;;;;:::o;36819:3748::-;-1:-1:-1;;;;;37080:11:0;;36949:14;37080:11;;;:5;:11;;;;;;36966:10;;37004:9;;37046:12;;37080:11;;37079:12;37071:36;;;;-1:-1:-1;;;37071:36:0;;;;;;;;;;;;37136:4;-1:-1:-1;;;;;37126:14:0;:6;-1:-1:-1;;;;;37126:14:0;;:32;;;-1:-1:-1;;;;;;37145:13:0;;;;;;:5;:13;;;;;;;;37144:14;37126:32;37118:56;;;;-1:-1:-1;;;37118:56:0;;;;;;;;;;;;37217:4;-1:-1:-1;;;;;37207:14:0;:6;-1:-1:-1;;;;;37207:14:0;;:34;;;;37235:6;-1:-1:-1;;;;;37225:16:0;:6;-1:-1:-1;;;;;37225:16:0;;37207:34;:52;;;-1:-1:-1;;;;;;37246:13:0;;;;;;:5;:13;;;;;;;;37245:14;37207:52;37185:113;;;;-1:-1:-1;;;37185:113:0;;;;;;;;;;;;37333:10;;-1:-1:-1;;;37333:10:0;;;;;:57;;-1:-1:-1;;;;;;37364:26:0;;;;;;:20;:26;;;;;;;;37333:57;:102;;;-1:-1:-1;;;;;;37411:24:0;;;;;;:20;:24;;;;;;;;37333:102;37311:163;;;;-1:-1:-1;;;37311:163:0;;;;;;;;;;;;37501:15;;37487:11;;-1:-1:-1;;;37501:15:0;;;;:43;;;;-1:-1:-1;37534:10:0;;-1:-1:-1;;;37534:10:0;;;;37533:11;37501:43;:117;;;;-1:-1:-1;;;;;;37563:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;37593:24:0;;;;;;:20;:24;;;;;;;;37563:54;37561:57;37501:117;37487:131;;37633:6;37629:1688;;;24589:7;24616:6;-1:-1:-1;;;;;37678:15:0;;;24616:6;;37678:15;;;;:49;;-1:-1:-1;24589:7:0;24616:6;-1:-1:-1;;;;;37714:13:0;;;24616:6;;37714:13;;37678:49;:86;;;;-1:-1:-1;;;;;;37748:16:0;;;;37678:86;:128;;;;-1:-1:-1;;;;;;37785:21:0;;37799:6;37785:21;;37678:128;37656:1650;;;37845:17;;-1:-1:-1;;;37845:17:0;;;;37841:643;;;37905:15;-1:-1:-1;;;;;37891:30:0;:2;-1:-1:-1;;;;;37891:30:0;;;:53;;;;;37931:13;-1:-1:-1;;;;;37925:19:0;:2;-1:-1:-1;;;;;37925:19:0;;;37891:53;37887:578;;;38083:15;38097:1;38083:11;:15;:::i;:::-;-1:-1:-1;;;;;38011:36:0;;;;;;:28;:36;;;;;;:87;:207;;;;-1:-1:-1;38203:15:0;38217:1;38203:11;:15;:::i;:::-;-1:-1:-1;;;;;38135:32:0;;;;;;:28;:32;;;;;;:83;38011:207;37973:318;;;;-1:-1:-1;;;37973:318:0;;;;;;;;;;;;-1:-1:-1;;;;;38318:36:0;;;;;;;:28;:36;;;;;;:50;;;38395:32;;;;;;:46;;;37887:578;-1:-1:-1;;;;;38530:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;38566:24:0;;;;;;:20;:24;;;;;;;;38565:25;38530:60;38504:787;;;38651:6;;38641;:16;;38633:47;;;;-1:-1:-1;;;38633:47:0;;;;;;;;;;;;38763:9;;-1:-1:-1;;;;;14593:18:0;;14566:7;14593:18;;;:9;:18;;;;;;38737:22;;:6;:22;:::i;:::-;:35;;38703:142;;;;-1:-1:-1;;;38703:142:0;;;;;;;;;;;;38504:787;;;-1:-1:-1;;;;;38897:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;38931:26:0;;;;;;:20;:26;;;;;;;;38930:27;38897:60;38871:420;;;39018:7;;39008:6;:17;;39000:49;;;;-1:-1:-1;;;39000:49:0;;;;;;;;;;;38871:420;-1:-1:-1;;;;;39080:24:0;;;;;;:20;:24;;;;;;;;39075:216;;39189:9;;-1:-1:-1;;;;;14593:18:0;;14566:7;14593:18;;;:9;:18;;;;;;39163:22;;:6;:22;:::i;:::-;:35;;39129:142;;;;-1:-1:-1;;;39129:142:0;;;;;;;;;;;;39344:12;;39329;;-1:-1:-1;;;39344:12:0;;;;:40;;;;-1:-1:-1;39374:10:0;;-1:-1:-1;;;39374:10:0;;;;39373:11;39344:40;:110;;;;-1:-1:-1;;;;;;39403:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;39431:22:0;;;;;;:18;:22;;;;;;;;39403:50;39401:53;39344:110;39329:125;;39471:7;39467:679;;;-1:-1:-1;;;;;39530:29:0;;39495:12;39530:29;;;:25;:29;;;;;;;;:44;;;;;39573:1;39563:7;;:11;39530:44;39526:471;;;39623:3;39612:7;;39603:6;:16;;;;:::i;:::-;39602:24;;;;:::i;:::-;39595:31;;39526:471;;;-1:-1:-1;;;;;39652:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;39696:1;39687:6;;:10;39652:45;39648:349;;;39745:3;39735:6;;39726;:15;;;;:::i;39648:349::-;-1:-1:-1;;;;;39793:29:0;;;;;;:25;:29;;;;;;;;39792:30;:83;;;;-1:-1:-1;;;;;;39844:31:0;;;;;;:25;:31;;;;;;;;39843:32;39792:83;:119;;;;;39910:1;39896:11;;:15;39792:119;39770:227;;;39978:3;39963:11;;39954:6;:20;;;;:::i;:::-;39953:28;;;;:::i;:::-;39946:35;;39770:227;40017:8;;40013:122;;40046:14;40056:4;40046:14;;:::i;:::-;;;40079:40;40093:4;40107;40114;40079:13;:40::i;:::-;39480:666;39467:679;40194:4;40158:15;14593:18;;;:9;:18;;;;;;40240;;40229:29;;;40273:7;:43;;;;-1:-1:-1;;;;;;40285:31:0;;;;;;:25;:31;;;;;;;;40284:32;40273:43;:57;;;;;40320:10;40273:57;40269:247;;;40365:26;;40351:11;:40;40347:158;;;40412:18;40422:7;40412:9;:18::i;:::-;40449:26;:40;;;40347:158;40528:31;40542:4;40548:2;40552:6;40528:13;:31::i;:::-;36938:3629;;;;;;;36819:3748;;;:::o;25856:191::-;25930:16;25949:6;;-1:-1:-1;;;;;25966:17:0;;;-1:-1:-1;;;;;;25966:17:0;;;;;;25999:40;;25949:6;;;;;;;25999:40;;25930:16;25999:40;25919:128;25856:191;:::o;17705:1169::-;-1:-1:-1;;;;;17829:18:0;;17825:552;;17983:5;17967:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17825:552:0;;-1:-1:-1;17825:552:0;;-1:-1:-1;;;;;18043:15:0;;18021:19;18043:15;;;:9;:15;;;;;;18077:19;;;18073:117;;;18124:50;;-1:-1:-1;;;18124:50:0;;-1:-1:-1;;;;;7882:32:1;;18124:50:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;18124:50:0;7662:345:1;18073:117:0;-1:-1:-1;;;;;18313:15:0;;;;;;:9;:15;;;;;18331:19;;;;18313:37;;17825:552;-1:-1:-1;;;;;18393:16:0;;18389:435;;18559:12;:21;;;;;;;18389:435;;;-1:-1:-1;;;;;18775:13:0;;;;;;:9;:13;;;;;:22;;;;;;18389:435;18856:2;-1:-1:-1;;;;;18841:25:0;18850:4;-1:-1:-1;;;;;18841:25:0;;18860:5;18841:25;;;;2388::1;;2376:2;2361:18;;2242:177;18841:25:0;;;;;;;;17705:1169;;;:::o;40575:983::-;29235:10;:17;;-1:-1:-1;;;;29235:17:0;-1:-1:-1;;;29235:17:0;;;40699:16:::1;::::0;;40713:1:::1;40699:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;40699:16:0;40713:1;40699:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40699:16:0::1;40675:40;;40744:4;40726;40731:1;40726:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;40726:23:0::1;;;-1:-1:-1::0;;;;;40726:23:0::1;;;::::0;::::1;40770:15;-1:-1:-1::0;;;;;40770:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40760:4;40765:1;40760:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;40760:32:0::1;;;-1:-1:-1::0;;;;;40760:32:0::1;;;::::0;::::1;40805:21;40829:18;;40850:2;40829:23;;;;:::i;:::-;40805:47;;40879:13;40869:7;:23;40865:79;;;40919:13;40909:23;;40865:79;40956:192;::::0;-1:-1:-1;;;40956:192:0;;-1:-1:-1;;;;;40956:15:0::1;:66;::::0;::::1;::::0;:192:::1;::::0;41037:7;;41059:1:::1;::::0;41075:4;;41102::::1;::::0;41122:15:::1;::::0;40956:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;41182:21:0::1;::::0;-1:-1:-1;41161:18:0::1;::::0;-1:-1:-1;41244:14:0::1;::::0;-1:-1:-1;41257:1:0::1;41182:21:::0;41244:14:::1;:::i;:::-;41216:42:::0;-1:-1:-1;41271:24:0::1;41298:30;41216:42:::0;41298:10;:30:::1;:::i;:::-;41363:16;::::0;41355:83:::1;::::0;41271:57;;-1:-1:-1;;;;;;41363:16:0::1;::::0;41271:57;;41355:83:::1;::::0;;;41271:57;41363:16;41355:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;41473:17:0::1;::::0;41465:85:::1;::::0;41341:97;;-1:-1:-1;;;;;;41473:17:0::1;::::0;41504;;41465:85:::1;::::0;;;41504:17;41473;41465:85:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29275:10:0;:18;;-1:-1:-1;;;;29275:18:0;;;-1:-1:-1;;;;;;;;40575:983:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2424:508::-;2501:6;2509;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;-1:-1:-1;2751:2:1;2736:18;;2723:32;2764:33;2723:32;2764:33;:::i;:::-;2424:508;;2816:7;;-1:-1:-1;;;2896:2:1;2881:18;;;;2868:32;;2424:508::o;3126:247::-;3185:6;3238:2;3226:9;3217:7;3213:23;3209:32;3206:52;;;3254:1;3251;3244:12;3206:52;3293:9;3280:23;3312:31;3337:5;3312:31;:::i;:::-;3362:5;3126:247;-1:-1:-1;;;3126:247:1:o;3378:241::-;3434:6;3487:2;3475:9;3466:7;3462:23;3458:32;3455:52;;;3503:1;3500;3493:12;3455:52;3542:9;3529:23;3561:28;3583:5;3561:28;:::i;3832:226::-;3891:6;3944:2;3932:9;3923:7;3919:23;3915:32;3912:52;;;3960:1;3957;3950:12;3912:52;-1:-1:-1;4005:23:1;;3832:226;-1:-1:-1;3832:226:1:o;4063:382::-;4128:6;4136;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4244:9;4231:23;4263:31;4288:5;4263:31;:::i;:::-;4313:5;-1:-1:-1;4370:2:1;4355:18;;4342:32;4383:30;4342:32;4383:30;:::i;:::-;4432:7;4422:17;;;4063:382;;;;;:::o;4450:388::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:31;4678:5;4653:31;:::i;:::-;4703:5;-1:-1:-1;4760:2:1;4745:18;;4732:32;4773:33;4732:32;4773:33;:::i;4843:380::-;4922:1;4918:12;;;;4965;;;4986:61;;5040:4;5032:6;5028:17;5018:27;;4986:61;5093:2;5085:6;5082:14;5062:18;5059:38;5056:161;;5139:10;5134:3;5130:20;5127:1;5120:31;5174:4;5171:1;5164:15;5202:4;5199:1;5192:15;5056:161;;4843:380;;;:::o;5228:127::-;5289:10;5284:3;5280:20;5277:1;5270:31;5320:4;5317:1;5310:15;5344:4;5341:1;5334:15;5360:127;5421:10;5416:3;5412:20;5409:1;5402:31;5452:4;5449:1;5442:15;5476:4;5473:1;5466:15;5492:168;5565:9;;;5596;;5613:15;;;5607:22;;5593:37;5583:71;;5634:18;;:::i;5665:217::-;5705:1;5731;5721:132;;5775:10;5770:3;5766:20;5763:1;5756:31;5810:4;5807:1;5800:15;5838:4;5835:1;5828:15;5721:132;-1:-1:-1;5867:9:1;;5665:217::o;6655:184::-;6725:6;6778:2;6766:9;6757:7;6753:23;6749:32;6746:52;;;6794:1;6791;6784:12;6746:52;-1:-1:-1;6817:16:1;;6655:184;-1:-1:-1;6655:184:1:o;7123:245::-;7190:6;7243:2;7231:9;7222:7;7218:23;7214:32;7211:52;;;7259:1;7256;7249:12;7211:52;7291:9;7285:16;7310:28;7332:5;7310:28;:::i;8012:128::-;8079:9;;;8100:11;;;8097:37;;;8114:18;;:::i;8145:125::-;8210:9;;;8231:10;;;8228:36;;;8244:18;;:::i;8407:251::-;8477:6;8530:2;8518:9;8509:7;8505:23;8501:32;8498:52;;;8546:1;8543;8536:12;8498:52;8578:9;8572:16;8597:31;8622:5;8597:31;:::i;8663:959::-;8925:4;8973:3;8962:9;8958:19;9004:6;8993:9;8986:25;9047:6;9042:2;9031:9;9027:18;9020:34;9090:3;9085:2;9074:9;9070:18;9063:31;9114:6;9149;9143:13;9180:6;9172;9165:22;9218:3;9207:9;9203:19;9196:26;;9257:2;9249:6;9245:15;9231:29;;9278:1;9288:195;9302:6;9299:1;9296:13;9288:195;;;9367:13;;-1:-1:-1;;;;;9363:39:1;9351:52;;9432:2;9458:15;;;;9423:12;;;;9399:1;9317:9;9288:195;;;-1:-1:-1;;;;;;;9539:32:1;;;;9534:2;9519:18;;9512:60;-1:-1:-1;;9603:3:1;9588:19;9581:35;9500:3;8663:959;-1:-1:-1;;;8663:959:1:o

Swarm Source

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