ETH Price: $3,270.88 (-0.75%)

Token

HODLytics (HODL)
 

Overview

Max Total Supply

10,000,000 HODL

Holders

125

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
csrpure.eth
Balance
10,575.936543165756044649 HODL

Value
$0.00
0xE820a286BFaa9861F0766F2e6daE55CC4F5219D5
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:
Hodlytics

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2025-01-02
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.20;


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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.20;

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

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

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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.20;





/**
 * @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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.20;


/**
 * @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);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol


pragma solidity >=0.5.0;

/// @title The interface for the Uniswap V3 Factory
/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees
interface IUniswapV3Factory {
    /// @notice Emitted when the owner of the factory is changed
    /// @param oldOwner The owner before the owner was changed
    /// @param newOwner The owner after the owner was changed
    event OwnerChanged(address indexed oldOwner, address indexed newOwner);

    /// @notice Emitted when a pool is created
    /// @param token0 The first token of the pool by address sort order
    /// @param token1 The second token of the pool by address sort order
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks
    /// @param pool The address of the created pool
    event PoolCreated(
        address indexed token0,
        address indexed token1,
        uint24 indexed fee,
        int24 tickSpacing,
        address pool
    );

    /// @notice Emitted when a new fee amount is enabled for pool creation via the factory
    /// @param fee The enabled fee, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee
    event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing);

    /// @notice Returns the current owner of the factory
    /// @dev Can be changed by the current owner via setOwner
    /// @return The address of the factory owner
    function owner() external view returns (address);

    /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled
    /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context
    /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee
    /// @return The tick spacing
    function feeAmountTickSpacing(uint24 fee) external view returns (int24);

    /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist
    /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order
    /// @param tokenA The contract address of either token0 or token1
    /// @param tokenB The contract address of the other token
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @return pool The pool address
    function getPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external view returns (address pool);

    /// @notice Creates a pool for the given two tokens and fee
    /// @param tokenA One of the two tokens in the desired pool
    /// @param tokenB The other of the two tokens in the desired pool
    /// @param fee The desired fee for the pool
    /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved
    /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments
    /// are invalid.
    /// @return pool The address of the newly created pool
    function createPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external returns (address pool);

    /// @notice Updates the owner of the factory
    /// @dev Must be called by the current owner
    /// @param _owner The new owner of the factory
    function setOwner(address _owner) external;

    /// @notice Enables a fee amount with the given tickSpacing
    /// @dev Fee amounts may never be removed once enabled
    /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)
    /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount
    function enableFeeAmount(uint24 fee, int24 tickSpacing) external;
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolImmutables.sol


pragma solidity >=0.5.0;

/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
    /// @return The contract address
    function factory() external view returns (address);

    /// @notice The first of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token0() external view returns (address);

    /// @notice The second of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token1() external view returns (address);

    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
    /// @return The fee
    function fee() external view returns (uint24);

    /// @notice The pool tick spacing
    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
    /// This value is an int24 to avoid casting even though it is always positive.
    /// @return The tick spacing
    function tickSpacing() external view returns (int24);

    /// @notice The maximum amount of position liquidity that can use any tick in the range
    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
    /// @return The max amount of liquidity per tick
    function maxLiquidityPerTick() external view returns (uint128);
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolState.sol


pragma solidity >=0.5.0;

/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
    /// when accessed externally.
    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.
    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
    /// boundary.
    /// observationIndex The index of the last oracle observation that was written,
    /// observationCardinality The current maximum number of observations stored in the pool,
    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// feeProtocol The protocol fee for both tokens of the pool.
    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
    /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
    /// unlocked Whether the pool is currently locked to reentrancy
    function slot0()
        external
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );

    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal0X128() external view returns (uint256);

    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal1X128() external view returns (uint256);

    /// @notice The amounts of token0 and token1 that are owed to the protocol
    /// @dev Protocol fees will never exceed uint128 max in either token
    function protocolFees() external view returns (uint128 token0, uint128 token1);

    /// @notice The currently in range liquidity available to the pool
    /// @dev This value has no relationship to the total liquidity across all ticks
    function liquidity() external view returns (uint128);

    /// @notice Look up information about a specific tick in the pool
    /// @param tick The tick to look up
    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
    /// tick upper,
    /// liquidityNet how much liquidity changes when the pool price crosses the tick,
    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
    /// secondsOutside the seconds spent on the other side of the tick from the current tick,
    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
    /// a specific position.
    function ticks(int24 tick)
        external
        view
        returns (
            uint128 liquidityGross,
            int128 liquidityNet,
            uint256 feeGrowthOutside0X128,
            uint256 feeGrowthOutside1X128,
            int56 tickCumulativeOutside,
            uint160 secondsPerLiquidityOutsideX128,
            uint32 secondsOutside,
            bool initialized
        );

    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
    function tickBitmap(int16 wordPosition) external view returns (uint256);

    /// @notice Returns the information about a position by the position's key
    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
    /// @return _liquidity The amount of liquidity in the position,
    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
    function positions(bytes32 key)
        external
        view
        returns (
            uint128 _liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    /// @notice Returns data about a specific observation index
    /// @param index The element of the observations array to fetch
    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
    /// ago, rather than at a specific index in the array.
    /// @return blockTimestamp The timestamp of the observation,
    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
    /// Returns initialized whether the observation has been initialized and the values are safe to use
    function observations(uint256 index)
        external
        view
        returns (
            uint32 blockTimestamp,
            int56 tickCumulative,
            uint160 secondsPerLiquidityCumulativeX128,
            bool initialized
        );
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolDerivedState.sol


pragma solidity >=0.5.0;

/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
    /// you must call it with secondsAgos = [3600, 0].
    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
    /// timestamp
    function observe(uint32[] calldata secondsAgos)
        external
        view
        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);

    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
    /// snapshot is taken and the second snapshot is taken.
    /// @param tickLower The lower tick of the range
    /// @param tickUpper The upper tick of the range
    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
    /// @return secondsInside The snapshot of seconds per liquidity for the range
    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            int56 tickCumulativeInside,
            uint160 secondsPerLiquidityInsideX128,
            uint32 secondsInside
        );
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolActions.sol


pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
    /// @notice Sets the initial price for the pool
    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
    function initialize(uint160 sqrtPriceX96) external;

    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
    /// on tickLower, tickUpper, the amount of liquidity, and the current price.
    /// @param recipient The address for which the liquidity will be created
    /// @param tickLower The lower tick of the position in which to add liquidity
    /// @param tickUpper The upper tick of the position in which to add liquidity
    /// @param amount The amount of liquidity to mint
    /// @param data Any data that should be passed through to the callback
    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
    function mint(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount,
        bytes calldata data
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Collects tokens owed to a position
    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
    /// @param recipient The address which should receive the fees collected
    /// @param tickLower The lower tick of the position for which to collect fees
    /// @param tickUpper The upper tick of the position for which to collect fees
    /// @param amount0Requested How much token0 should be withdrawn from the fees owed
    /// @param amount1Requested How much token1 should be withdrawn from the fees owed
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);

    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
    /// @dev Fees must be collected separately via a call to #collect
    /// @param tickLower The lower tick of the position for which to burn liquidity
    /// @param tickUpper The upper tick of the position for which to burn liquidity
    /// @param amount How much liquidity to burn
    /// @return amount0 The amount of token0 sent to the recipient
    /// @return amount1 The amount of token1 sent to the recipient
    function burn(
        int24 tickLower,
        int24 tickUpper,
        uint128 amount
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Swap token0 for token1, or token1 for token0
    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
    /// @param recipient The address to receive the output of the swap
    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
    /// @param data Any data to be passed through to the callback
    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
    function swap(
        address recipient,
        bool zeroForOne,
        int256 amountSpecified,
        uint160 sqrtPriceLimitX96,
        bytes calldata data
    ) external returns (int256 amount0, int256 amount1);

    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
    /// with 0 amount{0,1} and sending the donation amount(s) from the callback
    /// @param recipient The address which will receive the token0 and token1 amounts
    /// @param amount0 The amount of token0 to send
    /// @param amount1 The amount of token1 to send
    /// @param data Any data to be passed through to the callback
    function flash(
        address recipient,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;

    /// @notice Increase the maximum number of price and liquidity observations that this pool will store
    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
    /// the input observationCardinalityNext.
    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolOwnerActions.sol


pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    /// @param feeProtocol0 new protocol fee for token0 of the pool
    /// @param feeProtocol1 new protocol fee for token1 of the pool
    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;

    /// @notice Collect the protocol fee accrued to the pool
    /// @param recipient The address to which collected protocol fees should be sent
    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
    /// @return amount0 The protocol fee collected in token0
    /// @return amount1 The protocol fee collected in token1
    function collectProtocol(
        address recipient,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);
}

// File: @uniswap/v3-core/contracts/interfaces/pool/IUniswapV3PoolEvents.sol


pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool
    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
    event Initialize(uint160 sqrtPriceX96, int24 tick);

    /// @notice Emitted when liquidity is minted for a given position
    /// @param sender The address that minted the liquidity
    /// @param owner The owner of the position and recipient of any minted liquidity
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity minted to the position range
    /// @param amount0 How much token0 was required for the minted liquidity
    /// @param amount1 How much token1 was required for the minted liquidity
    event Mint(
        address sender,
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees are collected by the owner of a position
    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
    /// @param owner The owner of the position for which fees are collected
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount0 The amount of token0 fees collected
    /// @param amount1 The amount of token1 fees collected
    event Collect(
        address indexed owner,
        address recipient,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount0,
        uint128 amount1
    );

    /// @notice Emitted when a position's liquidity is removed
    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
    /// @param owner The owner of the position for which liquidity is removed
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity to remove
    /// @param amount0 The amount of token0 withdrawn
    /// @param amount1 The amount of token1 withdrawn
    event Burn(
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted by the pool for any swaps between token0 and token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the output of the swap
    /// @param amount0 The delta of the token0 balance of the pool
    /// @param amount1 The delta of the token1 balance of the pool
    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
    /// @param liquidity The liquidity of the pool after the swap
    /// @param tick The log base 1.0001 of price of the pool after the swap
    event Swap(
        address indexed sender,
        address indexed recipient,
        int256 amount0,
        int256 amount1,
        uint160 sqrtPriceX96,
        uint128 liquidity,
        int24 tick
    );

    /// @notice Emitted by the pool for any flashes of token0/token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the tokens from flash
    /// @param amount0 The amount of token0 that was flashed
    /// @param amount1 The amount of token1 that was flashed
    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
    event Flash(
        address indexed sender,
        address indexed recipient,
        uint256 amount0,
        uint256 amount1,
        uint256 paid0,
        uint256 paid1
    );

    /// @notice Emitted by the pool for increases to the number of observations that can be stored
    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
    /// just before a mint/swap/burn.
    /// @param observationCardinalityNextOld The previous value of the next observation cardinality
    /// @param observationCardinalityNextNew The updated value of the next observation cardinality
    event IncreaseObservationCardinalityNext(
        uint16 observationCardinalityNextOld,
        uint16 observationCardinalityNextNew
    );

    /// @notice Emitted when the protocol fee is changed by the pool
    /// @param feeProtocol0Old The previous value of the token0 protocol fee
    /// @param feeProtocol1Old The previous value of the token1 protocol fee
    /// @param feeProtocol0New The updated value of the token0 protocol fee
    /// @param feeProtocol1New The updated value of the token1 protocol fee
    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);

    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
    /// @param sender The address that collects the protocol fees
    /// @param recipient The address that receives the collected protocol fees
    /// @param amount0 The amount of token0 protocol fees that is withdrawn
    /// @param amount0 The amount of token1 protocol fees that is withdrawn
    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

// File: @uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol


pragma solidity >=0.5.0;







/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
    IUniswapV3PoolImmutables,
    IUniswapV3PoolState,
    IUniswapV3PoolDerivedState,
    IUniswapV3PoolActions,
    IUniswapV3PoolOwnerActions,
    IUniswapV3PoolEvents
{

}

// File: @uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol


pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

// File: @uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol


pragma solidity >=0.7.5;


/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

// File: @uniswap/v3-periphery/contracts/interfaces/IQuoterV2.sol


pragma solidity >=0.7.5;

/// @title QuoterV2 Interface
/// @notice Supports quoting the calculated amounts from exact input or exact output swaps.
/// @notice For each pool also tells you the number of initialized ticks crossed and the sqrt price of the pool after the swap.
/// @dev These functions are not marked view because they rely on calling non-view functions and reverting
/// to compute the result. They are also not gas efficient and should not be called on-chain.
interface IQuoterV2 {
    /// @notice Returns the amount out received for a given exact input swap without executing the swap
    /// @param path The path of the swap, i.e. each token pair and the pool fee
    /// @param amountIn The amount of the first token to swap
    /// @return amountOut The amount of the last token that would be received
    /// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path
    /// @return initializedTicksCrossedList List of the initialized ticks that the swap crossed for each pool in the path
    /// @return gasEstimate The estimate of the gas that the swap consumes
    function quoteExactInput(bytes memory path, uint256 amountIn)
        external
        returns (
            uint256 amountOut,
            uint160[] memory sqrtPriceX96AfterList,
            uint32[] memory initializedTicksCrossedList,
            uint256 gasEstimate
        );

    struct QuoteExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint256 amountIn;
        uint24 fee;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Returns the amount out received for a given exact input but for a swap of a single pool
    /// @param params The params for the quote, encoded as `QuoteExactInputSingleParams`
    /// tokenIn The token being swapped in
    /// tokenOut The token being swapped out
    /// fee The fee of the token pool to consider for the pair
    /// amountIn The desired input amount
    /// sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap
    /// @return amountOut The amount of `tokenOut` that would be received
    /// @return sqrtPriceX96After The sqrt price of the pool after the swap
    /// @return initializedTicksCrossed The number of initialized ticks that the swap crossed
    /// @return gasEstimate The estimate of the gas that the swap consumes
    function quoteExactInputSingle(QuoteExactInputSingleParams memory params)
        external
        returns (
            uint256 amountOut,
            uint160 sqrtPriceX96After,
            uint32 initializedTicksCrossed,
            uint256 gasEstimate
        );

    /// @notice Returns the amount in required for a given exact output swap without executing the swap
    /// @param path The path of the swap, i.e. each token pair and the pool fee. Path must be provided in reverse order
    /// @param amountOut The amount of the last token to receive
    /// @return amountIn The amount of first token required to be paid
    /// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path
    /// @return initializedTicksCrossedList List of the initialized ticks that the swap crossed for each pool in the path
    /// @return gasEstimate The estimate of the gas that the swap consumes
    function quoteExactOutput(bytes memory path, uint256 amountOut)
        external
        returns (
            uint256 amountIn,
            uint160[] memory sqrtPriceX96AfterList,
            uint32[] memory initializedTicksCrossedList,
            uint256 gasEstimate
        );

    struct QuoteExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint256 amount;
        uint24 fee;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Returns the amount in required to receive the given exact output amount but for a swap of a single pool
    /// @param params The params for the quote, encoded as `QuoteExactOutputSingleParams`
    /// tokenIn The token being swapped in
    /// tokenOut The token being swapped out
    /// fee The fee of the token pool to consider for the pair
    /// amountOut The desired output amount
    /// sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap
    /// @return amountIn The amount required as the input for the swap in order to receive `amountOut`
    /// @return sqrtPriceX96After The sqrt price of the pool after the swap
    /// @return initializedTicksCrossed The number of initialized ticks that the swap crossed
    /// @return gasEstimate The estimate of the gas that the swap consumes
    function quoteExactOutputSingle(QuoteExactOutputSingleParams memory params)
        external
        returns (
            uint256 amountIn,
            uint160 sqrtPriceX96After,
            uint32 initializedTicksCrossed,
            uint256 gasEstimate
        );
}

// File: hodlytics_contract_mainnet.sol


pragma solidity ^0.8.20;








contract Hodlytics is ERC20, Ownable(msg.sender), ReentrancyGuard {
	uint256 public TAX_REDUCTION_START_TIME;
    uint256 private constant TOTAL_SUPPLY = 10000000 * 10**18;
    uint256 public immutable MIN_TAXABLE_AMOUNT = 1 * 10**18;
    uint256 public constant AUTO_RENOUNCE_PERIOD = 30 days;
    address constant QUOTER_ADDRESS = 0x61fFE014bA17989E743c5F6cB21bF9697530B21e; // checked
    uint256 public constant TAX_REDUCTION_PERIOD = 180 days; // Six months
    bool public isPaused;
    uint256 private failedSwapAmount;

    uint256 public buyTax = 5;
    uint256 public sellTax = 5;
    uint256 public slippageTolerance = 5;
	mapping(address => uint256) public lastBuyTime;
	uint256 public constant MAX_TOTAL_LIMIT = (TOTAL_SUPPLY * 2) / 100; // 2% total during limit period
    uint256 public constant MAX_BUY_LIMIT = (TOTAL_SUPPLY * 1) / 100; // 1% per transaction
    uint256 public constant LIMIT_PERIOD = 18 hours; // Buy limit duration

    address public buyTaxWallet;
    address public sellTaxWallet;
    address public immutable devWallet;
    address public immutable airdropWallet;

    // Uniswap V3 specific variables
    ISwapRouter public immutable swapRouter;
    address public immutable WETH9;
    uint24 public constant poolFee = 3000; // 0.3% fee tier
    IUniswapV3Pool public uniswapV3Pool;

    mapping(address => bool) private taxExempt;
    mapping(address => bool) public isAuthorizedPool;
    mapping(address => bool) public isExemptFromLimits;

    uint256 public launchTime;
    bool public tradingEnabled;
    bool private inSwap;

    event OwnershipRenounced();
    event SlippageToleranceUpdated(uint256 newTolerance);
    event TokensSwapped(uint256 tokensSwapped, uint256 ethReceived);
    event TokensDistributedForTax(uint256 taxAmount, address buyTaxWallet, address sellTaxWallet);
    event SwapError(bytes reason); // Add this line
    event BuyTaxUpdated(uint256 newTax);
    event SellTaxUpdated(uint256 newTax);
    event BuyTaxWalletUpdated(address newWallet);
    event SellTaxWalletUpdated(address newWallet);
    event TradingEnabled(uint256 timestamp);
    event LiquidityAdded(uint256 tokenAmount, uint256 ethAmount);

    modifier whenNotPaused() {
        require(!isPaused, "Contract is paused");
        _;
    }

    modifier autoRenounceCheck() {
        if (block.timestamp > launchTime + AUTO_RENOUNCE_PERIOD) {
            renounceOwnership(); // Automatically renounce ownership
            emit OwnershipRenounced();
        }
        _;
    }
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        address _devWallet,
        address _airdropWallet,
        address _buyTaxWallet,
        address _sellTaxWallet,
        address _liquidityLocker // Add this parameter
    ) ERC20("HODLytics", "HODL") {
        require(_devWallet != address(0), "Dev wallet cannot be zero address");
        require(
            _airdropWallet != address(0),
            "Airdrop wallet cannot be zero address"
        );
        require(
            _buyTaxWallet != address(0),
            "Buy tax wallet cannot be zero address"
        );
        require(
            _sellTaxWallet != address(0),
            "Sell tax wallet cannot be zero address"
        );
        require(
            _liquidityLocker != address(0),
            "Liquidity locker cannot be zero address"
        ); // New check

        devWallet = _devWallet;
        airdropWallet = _airdropWallet;
        buyTaxWallet = _buyTaxWallet;
        sellTaxWallet = _sellTaxWallet;
        
        swapRouter = ISwapRouter(0xE592427A0AEce92De3Edee1F18E0157C05861564);        
        WETH9 = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;//checked

        uint256 devTokens = (TOTAL_SUPPLY * 10) / 100;
        uint256 airdropTokens = (TOTAL_SUPPLY * 5) / 100;
        uint256 liquidityTokens = (TOTAL_SUPPLY * 85) / 100;

        _mint(address(this), TOTAL_SUPPLY);
        _transfer(address(this), _devWallet, devTokens);
        _transfer(address(this), _airdropWallet, airdropTokens);
        _transfer(address(this), _liquidityLocker, liquidityTokens); // Transfer to locker

        taxExempt[msg.sender] = true;
        taxExempt[address(this)] = true;
        taxExempt[_devWallet] = true;
        taxExempt[_airdropWallet] = true;

		TAX_REDUCTION_START_TIME = block.timestamp; 
		launchTime = block.timestamp;
    }

function _update(
    address from,
    address to,
    uint256 amount
) internal virtual override {
    uint256 taxAmount = 0;
    bool shouldSwap = false;
    bool withinLimitPeriod = block.timestamp < launchTime + LIMIT_PERIOD;

    if (amount >= MIN_TAXABLE_AMOUNT && !taxExempt[from] && !taxExempt[to]) {
        if (isAuthorizedPool[from] || isAuthorizedPool[to]) {
            taxAmount = (amount * _currentTaxRate()) / 100; // Use _currentTaxRate for both buy and sell

            // Limit transactions during the initial period
            if (withinLimitPeriod && !isExemptFromLimits[to]) {
                require(amount <= MAX_BUY_LIMIT, "Transaction amount exceeds 1% limit per transaction");

                // Check if the total balance after this transfer would exceed the 2% limit during the limit period
                if (lastBuyTime[to] + LIMIT_PERIOD > block.timestamp) {
                    require(balanceOf(to) + amount <= MAX_TOTAL_LIMIT, "Total balance exceeds 2% limit during limit period");
                } else {
                    // Reset the last buy time if the new LIMIT_PERIOD starts
                    lastBuyTime[to] = block.timestamp;
                }
            }
        }
        shouldSwap =
            !inSwap &&
            from != address(this) &&
            to != address(this);
    }

    uint256 amountAfterTax = amount - taxAmount;
    if (taxAmount > 0) {
        // Directly send the tax to the tax wallets
        uint256 halfTax = taxAmount / 2;
        super._update(from, buyTaxWallet, halfTax);
        super._update(from, sellTaxWallet, taxAmount - halfTax);
		emit TokensDistributedForTax(taxAmount, buyTaxWallet, sellTaxWallet);
    }
    super._update(from, to, amountAfterTax);

    // Remove the call to swapAndDistribute since we're no longer swapping
    // if (shouldSwap && taxAmount > 0) {
    //     swapAndDistribute();
    // }
}
function setAuthorizedPool(address pool, bool authorized) external onlyOwner {
    require(pool != address(0), "Invalid pool address");
    isAuthorizedPool[pool] = authorized;
}

    function _currentTaxRate() private view returns (uint256) {
        if (block.timestamp < TAX_REDUCTION_START_TIME + TAX_REDUCTION_PERIOD) {
            return 5; // 5% tax before six months
        } else {
            return 0; // 0% tax after six months
        }
    }

    function enableTrading() external onlyOwner autoRenounceCheck {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
        launchTime = block.timestamp;
        emit TradingEnabled(block.timestamp);
    }

    function setBuyTax(uint256 _buyTax) external onlyOwner autoRenounceCheck {
        require(_buyTax <= 5, "Tax too high");
        buyTax = _buyTax;
        emit BuyTaxUpdated(_buyTax);
    }

    function setSellTax(uint256 _sellTax) external onlyOwner autoRenounceCheck {
        require(_sellTax <= 5, "Tax too high");
        sellTax = _sellTax;
        emit SellTaxUpdated(_sellTax);
    }

    function setBuyTaxWallet(address _newWallet)
        external
        onlyOwner
        autoRenounceCheck
    {
        require(_newWallet != address(0), "Cannot be zero address");
        buyTaxWallet = _newWallet;
        emit BuyTaxWalletUpdated(_newWallet);
    }

    function setSellTaxWallet(address _newWallet)
        external
        onlyOwner
        autoRenounceCheck
    {
        require(_newWallet != address(0), "Cannot be zero address");
        sellTaxWallet = _newWallet;
        emit SellTaxWalletUpdated(_newWallet);
    }

    function setSlippageTolerance(uint256 _slippageTolerance)
        external
        onlyOwner
        autoRenounceCheck
    {
        require(_slippageTolerance <= 100, "Slippage tolerance too high");
        slippageTolerance = _slippageTolerance;
        emit SlippageToleranceUpdated(_slippageTolerance);
    }

    function addLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount,
        int24 tickLower,
        int24 tickUpper
    ) external onlyOwner nonReentrant {
        require(tradingEnabled, "Trading not enabled");
        require(
            balanceOf(address(this)) >= tokenAmount,
            "Not enough tokens in contract"
        );
        require(
            address(this).balance >= ethAmount,
            "Not enough ETH in contract"
        );

        // Approve token transfers for Uniswap pool
        _approve(address(this), address(uniswapV3Pool), tokenAmount);
        IERC20(WETH9).approve(address(uniswapV3Pool), ethAmount);

        // Add liquidity
        uniswapV3Pool.mint(
            address(this), // Address receiving the liquidity position
            tickLower, // Price range lower bound
            tickUpper, // Price range upper bound
            uint128(tokenAmount), // Liquidity amount (converted to uint128)
            abi.encodePacked(ethAmount) // Additional data (optional)
        );

        emit LiquidityAdded(tokenAmount, ethAmount);
    }

    function manualRenounceOwnership() external onlyOwner {
        renounceOwnership();
        emit OwnershipRenounced();
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"},{"internalType":"address","name":"_buyTaxWallet","type":"address"},{"internalType":"address","name":"_sellTaxWallet","type":"address"},{"internalType":"address","name":"_liquidityLocker","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"uint256","name":"newTax","type":"uint256"}],"name":"BuyTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"BuyTaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTax","type":"uint256"}],"name":"SellTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"SellTaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTolerance","type":"uint256"}],"name":"SlippageToleranceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"reason","type":"bytes"}],"name":"SwapError","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyTaxWallet","type":"address"},{"indexed":false,"internalType":"address","name":"sellTaxWallet","type":"address"}],"name":"TokensDistributedForTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"TokensSwapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AUTO_RENOUNCE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMIT_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_TAXABLE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_REDUCTION_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_REDUCTION_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropWallet","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAuthorizedPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExemptFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastBuyTime","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":"manualRenounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"setAuthorizedPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setBuyTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setSellTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slippageTolerance","type":"uint256"}],"name":"setSlippageTolerance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slippageTolerance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"uniswapV3Pool","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610120604052670de0b6b3a76400006080908152506005600a556005600b556005600c553480156200002f575f80fd5b506040516200500038038062005000833981810160405281019062000055919062001202565b336040518060400160405280600981526020017f484f444c797469637300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484f444c000000000000000000000000000000000000000000000000000000008152508160039081620000d39190620014ea565b508060049081620000e59190620014ea565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200015b575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001529190620015df565b60405180910390fd5b6200016c816200076a60201b60201c565b5060016006819055505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603620001e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001dd906200167e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000257576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024e9062001712565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bf90620017a6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000330906200183a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a190620018ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505082600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e592427a0aece92de3edee1f18e0157c0586156473ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250505f6064600a6a084595161401484a0000006200054091906200191b565b6200054c919062001992565b90505f606460056a084595161401484a0000006200056b91906200191b565b62000577919062001992565b90505f606460556a084595161401484a0000006200059691906200191b565b620005a2919062001992565b9050620005c1306a084595161401484a0000006200082d60201b60201c565b620005d4308985620008b760201b60201c565b620005e7308884620008b760201b60201c565b620005fa308583620008b760201b60201c565b600160115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055504260078190555042601481905550505050505050505062001c07565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008a0575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008979190620015df565b60405180910390fd5b620008b35f8383620009b560201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200092a575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401620009219190620015df565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200099d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620009949190620015df565b60405180910390fd5b620009b0838383620009b560201b60201c565b505050565b5f805f61fd20601454620009ca9190620019c9565b42109050608051841015801562000a28575060115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801562000a7c575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1562000dc95760125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168062000b1e575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1562000d4357606462000b3662000f0760201b60201c565b8562000b4391906200191b565b62000b4f919062001992565b925080801562000ba6575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1562000d4257606460016a084595161401484a00000062000bc891906200191b565b62000bd4919062001992565b84111562000c19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c109062001a77565b60405180910390fd5b4261fd20600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205462000c679190620019c9565b111562000cfe57606460026a084595161401484a00000062000c8a91906200191b565b62000c96919062001992565b8462000ca88762000f3460201b60201c565b62000cb49190620019c9565b111562000cf8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cef9062001b0b565b60405180910390fd5b62000d41565b42600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b601560019054906101000a900460ff1615801562000d8d57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b801562000dc657503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b91505b5f838562000dd8919062001b2b565b90505f84111562000eeb575f60028562000df3919062001992565b905062000e2988600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000f7960201b60201c565b62000e6a88600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838862000e5e919062001b2b565b62000f7960201b60201c565b7f1715ef594b015a00b37dd31e4c75b5a5c2722fc2c97cd01b180e9d169427048485600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405162000ee19392919062001b76565b60405180910390a1505b62000efe87878362000f7960201b60201c565b50505050505050565b5f62ed4e0060075462000f1b9190620019c9565b42101562000f2d576005905062000f31565b5f90505b90565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000fcd578060025f82825462000fc09190620019c9565b925050819055506200109e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562001059578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620010509392919062001bb1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620010e7578060025f828254039250508190555062001131565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001190919062001bec565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620011cc82620011a1565b9050919050565b620011de81620011c0565b8114620011e9575f80fd5b50565b5f81519050620011fc81620011d3565b92915050565b5f805f805f60a086880312156200121e576200121d6200119d565b5b5f6200122d88828901620011ec565b95505060206200124088828901620011ec565b94505060406200125388828901620011ec565b93505060606200126688828901620011ec565b92505060806200127988828901620011ec565b9150509295509295909350565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200130257607f821691505b602082108103620013185762001317620012bd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200137c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200133f565b6200138886836200133f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620013d2620013cc620013c684620013a0565b620013a9565b620013a0565b9050919050565b5f819050919050565b620013ed83620013b2565b62001405620013fc82620013d9565b8484546200134b565b825550505050565b5f90565b6200141b6200140d565b62001428818484620013e2565b505050565b5b818110156200144f57620014435f8262001411565b6001810190506200142e565b5050565b601f8211156200149e5762001468816200131e565b620014738462001330565b8101602085101562001483578190505b6200149b620014928562001330565b8301826200142d565b50505b505050565b5f82821c905092915050565b5f620014c05f1984600802620014a3565b1980831691505092915050565b5f620014da8383620014af565b9150826002028217905092915050565b620014f58262001286565b67ffffffffffffffff81111562001511576200151062001290565b5b6200151d8254620012ea565b6200152a82828562001453565b5f60209050601f83116001811462001560575f84156200154b578287015190505b620015578582620014cd565b865550620015c6565b601f19841662001570866200131e565b5f5b82811015620015995784890151825560018201915060208501945060208101905062001572565b86831015620015b95784890151620015b5601f891682620014af565b8355505b6001600288020188555050505b505050505050565b620015d981620011c0565b82525050565b5f602082019050620015f45f830184620015ce565b92915050565b5f82825260208201905092915050565b7f4465762077616c6c65742063616e6e6f74206265207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f62001666602183620015fa565b915062001673826200160a565b604082019050919050565b5f6020820190508181035f830152620016978162001658565b9050919050565b7f41697264726f702077616c6c65742063616e6e6f74206265207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f620016fa602583620015fa565b915062001707826200169e565b604082019050919050565b5f6020820190508181035f8301526200172b81620016ec565b9050919050565b7f427579207461782077616c6c65742063616e6e6f74206265207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6200178e602583620015fa565b91506200179b8262001732565b604082019050919050565b5f6020820190508181035f830152620017bf8162001780565b9050919050565b7f53656c6c207461782077616c6c65742063616e6e6f74206265207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f62001822602683620015fa565b91506200182f82620017c6565b604082019050919050565b5f6020820190508181035f830152620018538162001814565b9050919050565b7f4c6971756964697479206c6f636b65722063616e6e6f74206265207a65726f205f8201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b5f620018b6602783620015fa565b9150620018c3826200185a565b604082019050919050565b5f6020820190508181035f830152620018e781620018a8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200192782620013a0565b91506200193483620013a0565b92508282026200194481620013a0565b915082820484148315176200195e576200195d620018ee565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200199e82620013a0565b9150620019ab83620013a0565b925082620019be57620019bd62001965565b5b828204905092915050565b5f620019d582620013a0565b9150620019e283620013a0565b9250828201905080821115620019fd57620019fc620018ee565b5b92915050565b7f5472616e73616374696f6e20616d6f756e742065786365656473203125206c695f8201527f6d697420706572207472616e73616374696f6e00000000000000000000000000602082015250565b5f62001a5f603383620015fa565b915062001a6c8262001a03565b604082019050919050565b5f6020820190508181035f83015262001a908162001a51565b9050919050565b7f546f74616c2062616c616e63652065786365656473203225206c696d697420645f8201527f7572696e67206c696d697420706572696f640000000000000000000000000000602082015250565b5f62001af3603283620015fa565b915062001b008262001a97565b604082019050919050565b5f6020820190508181035f83015262001b248162001ae5565b9050919050565b5f62001b3782620013a0565b915062001b4483620013a0565b925082820390508181111562001b5f5762001b5e620018ee565b5b92915050565b62001b7081620013a0565b82525050565b5f60608201905062001b8b5f83018662001b65565b62001b9a6020830185620015ce565b62001ba96040830184620015ce565b949350505050565b5f60608201905062001bc65f830186620015ce565b62001bd5602083018562001b65565b62001be4604083018462001b65565b949350505050565b5f60208201905062001c015f83018462001b65565b92915050565b60805160a05160c05160e051610100516133ad62001c535f395f8181610f3e015261110401525f61165c01525f6115e701525f6114e801525f81816115330152611e8101526133ad5ff3fe608060405260043610610275575f3560e01c80638a8c523c1161014e578063c31c9c07116100c0578063dc0404a911610079578063dc0404a91461091c578063dc1052e214610946578063dd62ed3e1461096e578063f2fde38b146109aa578063f55ebd2a146109d2578063f5ea8d4f146109fc5761027c565b8063c31c9c0714610822578063cc1776d31461084c578063cd2c6a9914610876578063d03153aa146108b2578063d177f868146108dc578063d8bac0d3146109065761027c565b806393c09a971161011257806393c09a971461070257806395d89b411461072c578063a14779c914610756578063a9059cbb14610780578063b187bd26146107bc578063b4a744dd146107e65761027c565b80638a8c523c146106465780638cd09d501461065c5780638da5cb5b146106845780638ea5220f146106ae5780638edb562e146106d85761027c565b80633fecc2e2116101e757806350d895b5116101ab57806350d895b51461054e5780636fba50351461057857806370a08231146105a2578063715018a6146105de578063715244e0146105f4578063790ca4131461061c5761027c565b80633fecc2e21461046c57806348cce9f8146104a85780634aa4a4fc146104d05780634ada218b146104fa5780634f7041a5146105245761027c565b80630bd01a02116102395780630bd01a0214610362578063117da1ee1461038c57806318160ddd146103b457806323b872dd146103de578063313ce5671461041a5780633b12153b146104445761027c565b806306fdde0314610280578063074b2dd5146102aa578063080ff299146102d4578063089fe6aa146102fc578063095ea7b3146103265761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a26565b6040516102a19190612650565b60405180910390f35b3480156102b5575f80fd5b506102be610ab6565b6040516102cb9190612688565b60405180910390f35b3480156102df575f80fd5b506102fa60048036038101906102f591906126ff565b610abd565b005b348015610307575f80fd5b50610310610bfa565b60405161031d9190612747565b60405180910390f35b348015610331575f80fd5b5061034c6004803603810190610347919061278a565b610c00565b60405161035991906127e2565b60405180910390f35b34801561036d575f80fd5b50610376610c22565b6040516103839190612688565b60405180910390f35b348015610397575f80fd5b506103b260048036038101906103ad91906127fb565b610c28565b005b3480156103bf575f80fd5b506103c8610d02565b6040516103d59190612688565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff9190612826565b610d0b565b60405161041191906127e2565b60405180910390f35b348015610425575f80fd5b5061042e610d39565b60405161043b9190612891565b60405180910390f35b34801561044f575f80fd5b5061046a600480360381019061046591906128d4565b610d41565b005b348015610477575f80fd5b50610492600480360381019061048d91906126ff565b610e0f565b60405161049f9190612688565b60405180910390f35b3480156104b3575f80fd5b506104ce60048036038101906104c99190612948565b610e24565b005b3480156104db575f80fd5b506104e4611102565b6040516104f191906129bb565b60405180910390f35b348015610505575f80fd5b5061050e611126565b60405161051b91906127e2565b60405180910390f35b34801561052f575f80fd5b50610538611138565b6040516105459190612688565b60405180910390f35b348015610559575f80fd5b5061056261113e565b60405161056f9190612688565b60405180910390f35b348015610583575f80fd5b5061058c611144565b6040516105999190612688565b60405180910390f35b3480156105ad575f80fd5b506105c860048036038101906105c391906126ff565b61114b565b6040516105d59190612688565b60405180910390f35b3480156105e9575f80fd5b506105f2611190565b005b3480156105ff575f80fd5b5061061a600480360381019061061591906126ff565b6111a3565b005b348015610627575f80fd5b506106306112e0565b60405161063d9190612688565b60405180910390f35b348015610651575f80fd5b5061065a6112e6565b005b348015610667575f80fd5b50610682600480360381019061067d91906127fb565b6113e4565b005b34801561068f575f80fd5b506106986114be565b6040516106a591906129bb565b60405180910390f35b3480156106b9575f80fd5b506106c26114e6565b6040516106cf91906129bb565b60405180910390f35b3480156106e3575f80fd5b506106ec61150a565b6040516106f99190612688565b60405180910390f35b34801561070d575f80fd5b50610716611531565b6040516107239190612688565b60405180910390f35b348015610737575f80fd5b50610740611555565b60405161074d9190612650565b60405180910390f35b348015610761575f80fd5b5061076a6115e5565b60405161077791906129bb565b60405180910390f35b34801561078b575f80fd5b506107a660048036038101906107a1919061278a565b611609565b6040516107b391906127e2565b60405180910390f35b3480156107c7575f80fd5b506107d061162b565b6040516107dd91906127e2565b60405180910390f35b3480156107f1575f80fd5b5061080c600480360381019061080791906126ff565b61163d565b60405161081991906127e2565b60405180910390f35b34801561082d575f80fd5b5061083661165a565b6040516108439190612a2f565b60405180910390f35b348015610857575f80fd5b5061086061167e565b60405161086d9190612688565b60405180910390f35b348015610881575f80fd5b5061089c600480360381019061089791906126ff565b611684565b6040516108a991906127e2565b60405180910390f35b3480156108bd575f80fd5b506108c66116a1565b6040516108d39190612688565b60405180910390f35b3480156108e7575f80fd5b506108f06116a7565b6040516108fd91906129bb565b60405180910390f35b348015610911575f80fd5b5061091a6116cc565b005b348015610927575f80fd5b5061093061170a565b60405161093d9190612688565b60405180910390f35b348015610951575f80fd5b5061096c600480360381019061096791906127fb565b611731565b005b348015610979575f80fd5b50610994600480360381019061098f9190612a48565b61180b565b6040516109a19190612688565b60405180910390f35b3480156109b5575f80fd5b506109d060048036038101906109cb91906126ff565b61188d565b005b3480156109dd575f80fd5b506109e6611911565b6040516109f39190612aa6565b60405180910390f35b348015610a07575f80fd5b50610a10611936565b604051610a1d91906129bb565b60405180910390f35b606060038054610a3590612aec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6190612aec565b8015610aac5780601f10610a8357610100808354040283529160200191610aac565b820191905f5260205f20905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b62ed4e0081565b610ac561195b565b62278d00601454610ad69190612b49565b421115610b1257610ae5611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790612bc6565b60405180910390fd5b80600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f301a631cfeda987f78299c923f3b163e1fcb55191ff894d1165fdc706d025ff781604051610bef91906129bb565b60405180910390a150565b610bb881565b5f80610c0a6119e2565b9050610c178185856119e9565b600191505092915050565b60075481565b610c3061195b565b62278d00601454610c419190612b49565b421115610c7d57610c50611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b6064811115610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890612c2e565b60405180910390fd5b80600c819055507fa3370f7fc7573d713f27ae89ba2f193d4b43991622ff969b0475e2f911aacf1a81604051610cf79190612688565b60405180910390a150565b5f600254905090565b5f80610d156119e2565b9050610d228582856119fb565b610d2d858585611a8d565b60019150509392505050565b5f6012905090565b610d4961195b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90612c96565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600d602052805f5260405f205f915090505481565b610e2c61195b565b610e34611b7d565b60155f9054906101000a900460ff16610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612cfe565b60405180910390fd5b83610e8c3061114b565b1015610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612d66565b60405180910390fd5b82471015610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790612dce565b60405180910390fd5b610f3c3060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866119e9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b360105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610fb8929190612dec565b6020604051808303815f875af1158015610fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ff89190612e27565b5060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633c8a7d8d308484888860405160200161104b9190612e72565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161107a959493929190612f17565b60408051808303815f875af1158015611095573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b99190612f83565b50507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b84846040516110ec929190612fc1565b60405180910390a16110fc611bcc565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60155f9054906101000a900460ff1681565b600a5481565b61fd2081565b62278d0081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61119861195b565b6111a15f611bd6565b565b6111ab61195b565b62278d006014546111bc9190612b49565b4211156111f8576111cb611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612bc6565b60405180910390fd5b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fd5fd31fbc0fb285335ee2c93b02876266faf6e603a8d2de9371b89fadadedafb816040516112d591906129bb565b60405180910390a150565b60145481565b6112ee61195b565b62278d006014546112ff9190612b49565b42111561133b5761130e611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b60155f9054906101000a900460ff161561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613032565b60405180910390fd5b600160155f6101000a81548160ff021916908315150217905550426014819055507fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e923426040516113da9190612688565b60405180910390a1565b6113ec61195b565b62278d006014546113fd9190612b49565b4211156114395761140c611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b600581111561147d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114749061309a565b60405180910390fd5b80600b819055507fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11816040516114b39190612688565b60405180910390a150565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b606460016a084595161401484a00000061152491906130b8565b61152e9190613126565b81565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606004805461156490612aec565b80601f016020809104026020016040519081016040528092919081815260200182805461159090612aec565b80156115db5780601f106115b2576101008083540402835291602001916115db565b820191905f5260205f20905b8154815290600101906020018083116115be57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f806116136119e2565b9050611620818585611a8d565b600191505092915050565b60085f9054906101000a900460ff1681565b6012602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b6013602052805f5260405f205f915054906101000a900460ff1681565b600c5481565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116d461195b565b6116dc611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a1565b606460026a084595161401484a00000061172491906130b8565b61172e9190613126565b81565b61173961195b565b62278d0060145461174a9190612b49565b42111561178657611759611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b60058111156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061309a565b60405180910390fd5b80600a819055507f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce816040516118009190612688565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61189561195b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611905575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118fc91906129bb565b60405180910390fd5b61190e81611bd6565b50565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119636119e2565b73ffffffffffffffffffffffffffffffffffffffff166119816114be565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576119a46119e2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119d791906129bb565b60405180910390fd5b565b5f33905090565b6119f68383836001611c99565b505050565b5f611a06848461180b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a875781811015611a78578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611a6f93929190613156565b60405180910390fd5b611a8684848484035f611c99565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611afd575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611af491906129bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b6d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611b6491906129bb565b60405180910390fd5b611b78838383611e68565b505050565b600260065403611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906131d5565b60405180910390fd5b6002600681905550565b6001600681905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d09575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611d0091906129bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d79575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611d7091906129bb565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611e62578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611e599190612688565b60405180910390a35b50505050565b5f805f61fd20601454611e7b9190612b49565b421090507f00000000000000000000000000000000000000000000000000000000000000008410158015611ef6575060115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611f49575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156122675760125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611fe9575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156121e3576064611ff8612384565b8561200391906130b8565b61200d9190613126565b9250808015612063575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121e257606460016a084595161401484a00000061208291906130b8565b61208c9190613126565b8411156120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c590613263565b60405180910390fd5b4261fd20600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461211a9190612b49565b111561219e57606460026a084595161401484a00000061213a91906130b8565b6121449190613126565b8461214e8761114b565b6121589190612b49565b1115612199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612190906132f1565b60405180910390fd5b6121e1565b42600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b601560019054906101000a900460ff1615801561222c57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b801561226457503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b91505b5f8385612274919061330f565b90505f841115612370575f60028561228c9190613126565b90506122ba88600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836123ad565b6122f188600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683886122ec919061330f565b6123ad565b7f1715ef594b015a00b37dd31e4c75b5a5c2722fc2c97cd01b180e9d169427048485600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161236693929190613342565b60405180910390a1505b61237b8787836123ad565b50505050505050565b5f62ed4e006007546123969190612b49565b4210156123a657600590506123aa565b5f90505b90565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123fd578060025f8282546123f19190612b49565b925050819055506124cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612486578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161247d93929190613156565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612512578060025f828254039250508190555061255c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125b99190612688565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156125fd5780820151818401526020810190506125e2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612622826125c6565b61262c81856125d0565b935061263c8185602086016125e0565b61264581612608565b840191505092915050565b5f6020820190508181035f8301526126688184612618565b905092915050565b5f819050919050565b61268281612670565b82525050565b5f60208201905061269b5f830184612679565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126ce826126a5565b9050919050565b6126de816126c4565b81146126e8575f80fd5b50565b5f813590506126f9816126d5565b92915050565b5f60208284031215612714576127136126a1565b5b5f612721848285016126eb565b91505092915050565b5f62ffffff82169050919050565b6127418161272a565b82525050565b5f60208201905061275a5f830184612738565b92915050565b61276981612670565b8114612773575f80fd5b50565b5f8135905061278481612760565b92915050565b5f80604083850312156127a05761279f6126a1565b5b5f6127ad858286016126eb565b92505060206127be85828601612776565b9150509250929050565b5f8115159050919050565b6127dc816127c8565b82525050565b5f6020820190506127f55f8301846127d3565b92915050565b5f602082840312156128105761280f6126a1565b5b5f61281d84828501612776565b91505092915050565b5f805f6060848603121561283d5761283c6126a1565b5b5f61284a868287016126eb565b935050602061285b868287016126eb565b925050604061286c86828701612776565b9150509250925092565b5f60ff82169050919050565b61288b81612876565b82525050565b5f6020820190506128a45f830184612882565b92915050565b6128b3816127c8565b81146128bd575f80fd5b50565b5f813590506128ce816128aa565b92915050565b5f80604083850312156128ea576128e96126a1565b5b5f6128f7858286016126eb565b9250506020612908858286016128c0565b9150509250929050565b5f8160020b9050919050565b61292781612912565b8114612931575f80fd5b50565b5f813590506129428161291e565b92915050565b5f805f80608085870312156129605761295f6126a1565b5b5f61296d87828801612776565b945050602061297e87828801612776565b935050604061298f87828801612934565b92505060606129a087828801612934565b91505092959194509250565b6129b5816126c4565b82525050565b5f6020820190506129ce5f8301846129ac565b92915050565b5f819050919050565b5f6129f76129f26129ed846126a5565b6129d4565b6126a5565b9050919050565b5f612a08826129dd565b9050919050565b5f612a19826129fe565b9050919050565b612a2981612a0f565b82525050565b5f602082019050612a425f830184612a20565b92915050565b5f8060408385031215612a5e57612a5d6126a1565b5b5f612a6b858286016126eb565b9250506020612a7c858286016126eb565b9150509250929050565b5f612a90826129fe565b9050919050565b612aa081612a86565b82525050565b5f602082019050612ab95f830184612a97565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b0357607f821691505b602082108103612b1657612b15612abf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612b5382612670565b9150612b5e83612670565b9250828201905080821115612b7657612b75612b1c565b5b92915050565b7f43616e6e6f74206265207a65726f2061646472657373000000000000000000005f82015250565b5f612bb06016836125d0565b9150612bbb82612b7c565b602082019050919050565b5f6020820190508181035f830152612bdd81612ba4565b9050919050565b7f536c69707061676520746f6c6572616e636520746f6f206869676800000000005f82015250565b5f612c18601b836125d0565b9150612c2382612be4565b602082019050919050565b5f6020820190508181035f830152612c4581612c0c565b9050919050565b7f496e76616c696420706f6f6c20616464726573730000000000000000000000005f82015250565b5f612c806014836125d0565b9150612c8b82612c4c565b602082019050919050565b5f6020820190508181035f830152612cad81612c74565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f612ce86013836125d0565b9150612cf382612cb4565b602082019050919050565b5f6020820190508181035f830152612d1581612cdc565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000005f82015250565b5f612d50601d836125d0565b9150612d5b82612d1c565b602082019050919050565b5f6020820190508181035f830152612d7d81612d44565b9050919050565b7f4e6f7420656e6f7567682045544820696e20636f6e74726163740000000000005f82015250565b5f612db8601a836125d0565b9150612dc382612d84565b602082019050919050565b5f6020820190508181035f830152612de581612dac565b9050919050565b5f604082019050612dff5f8301856129ac565b612e0c6020830184612679565b9392505050565b5f81519050612e21816128aa565b92915050565b5f60208284031215612e3c57612e3b6126a1565b5b5f612e4984828501612e13565b91505092915050565b5f819050919050565b612e6c612e6782612670565b612e52565b82525050565b5f612e7d8284612e5b565b60208201915081905092915050565b612e9581612912565b82525050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b612ebf81612e9b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f612ee982612ec5565b612ef38185612ecf565b9350612f038185602086016125e0565b612f0c81612608565b840191505092915050565b5f60a082019050612f2a5f8301886129ac565b612f376020830187612e8c565b612f446040830186612e8c565b612f516060830185612eb6565b8181036080830152612f638184612edf565b90509695505050505050565b5f81519050612f7d81612760565b92915050565b5f8060408385031215612f9957612f986126a1565b5b5f612fa685828601612f6f565b9250506020612fb785828601612f6f565b9150509250929050565b5f604082019050612fd45f830185612679565b612fe16020830184612679565b9392505050565b7f54726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f61301c6017836125d0565b915061302782612fe8565b602082019050919050565b5f6020820190508181035f83015261304981613010565b9050919050565b7f54617820746f6f206869676800000000000000000000000000000000000000005f82015250565b5f613084600c836125d0565b915061308f82613050565b602082019050919050565b5f6020820190508181035f8301526130b181613078565b9050919050565b5f6130c282612670565b91506130cd83612670565b92508282026130db81612670565b915082820484148315176130f2576130f1612b1c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61313082612670565b915061313b83612670565b92508261314b5761314a6130f9565b5b828204905092915050565b5f6060820190506131695f8301866129ac565b6131766020830185612679565b6131836040830184612679565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6131bf601f836125d0565b91506131ca8261318b565b602082019050919050565b5f6020820190508181035f8301526131ec816131b3565b9050919050565b7f5472616e73616374696f6e20616d6f756e742065786365656473203125206c695f8201527f6d697420706572207472616e73616374696f6e00000000000000000000000000602082015250565b5f61324d6033836125d0565b9150613258826131f3565b604082019050919050565b5f6020820190508181035f83015261327a81613241565b9050919050565b7f546f74616c2062616c616e63652065786365656473203225206c696d697420645f8201527f7572696e67206c696d697420706572696f640000000000000000000000000000602082015250565b5f6132db6032836125d0565b91506132e682613281565b604082019050919050565b5f6020820190508181035f830152613308816132cf565b9050919050565b5f61331982612670565b915061332483612670565b925082820390508181111561333c5761333b612b1c565b5b92915050565b5f6060820190506133555f830186612679565b61336260208301856129ac565b61336f60408301846129ac565b94935050505056fea2646970667358221220badae7c9e2e782511fd5bfc90f2c6a61ffd716bd1ee9fb8e89f91638305ca3fc64736f6c63430008140033000000000000000000000000c2197ffba56879ea8584469e63cccdf832155f54000000000000000000000000dc63221e6589a336df26b561d72b6232ee0c5ed2000000000000000000000000be5edb1b4187b070086a06aa29df51f93442e0cc00000000000000000000000072f430063b8bd0d36144e7e7929443b65970aaa40000000000000000000000000ebb7468f59560c258a3f1089c9a2070c40027ec

Deployed Bytecode

0x608060405260043610610275575f3560e01c80638a8c523c1161014e578063c31c9c07116100c0578063dc0404a911610079578063dc0404a91461091c578063dc1052e214610946578063dd62ed3e1461096e578063f2fde38b146109aa578063f55ebd2a146109d2578063f5ea8d4f146109fc5761027c565b8063c31c9c0714610822578063cc1776d31461084c578063cd2c6a9914610876578063d03153aa146108b2578063d177f868146108dc578063d8bac0d3146109065761027c565b806393c09a971161011257806393c09a971461070257806395d89b411461072c578063a14779c914610756578063a9059cbb14610780578063b187bd26146107bc578063b4a744dd146107e65761027c565b80638a8c523c146106465780638cd09d501461065c5780638da5cb5b146106845780638ea5220f146106ae5780638edb562e146106d85761027c565b80633fecc2e2116101e757806350d895b5116101ab57806350d895b51461054e5780636fba50351461057857806370a08231146105a2578063715018a6146105de578063715244e0146105f4578063790ca4131461061c5761027c565b80633fecc2e21461046c57806348cce9f8146104a85780634aa4a4fc146104d05780634ada218b146104fa5780634f7041a5146105245761027c565b80630bd01a02116102395780630bd01a0214610362578063117da1ee1461038c57806318160ddd146103b457806323b872dd146103de578063313ce5671461041a5780633b12153b146104445761027c565b806306fdde0314610280578063074b2dd5146102aa578063080ff299146102d4578063089fe6aa146102fc578063095ea7b3146103265761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a26565b6040516102a19190612650565b60405180910390f35b3480156102b5575f80fd5b506102be610ab6565b6040516102cb9190612688565b60405180910390f35b3480156102df575f80fd5b506102fa60048036038101906102f591906126ff565b610abd565b005b348015610307575f80fd5b50610310610bfa565b60405161031d9190612747565b60405180910390f35b348015610331575f80fd5b5061034c6004803603810190610347919061278a565b610c00565b60405161035991906127e2565b60405180910390f35b34801561036d575f80fd5b50610376610c22565b6040516103839190612688565b60405180910390f35b348015610397575f80fd5b506103b260048036038101906103ad91906127fb565b610c28565b005b3480156103bf575f80fd5b506103c8610d02565b6040516103d59190612688565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff9190612826565b610d0b565b60405161041191906127e2565b60405180910390f35b348015610425575f80fd5b5061042e610d39565b60405161043b9190612891565b60405180910390f35b34801561044f575f80fd5b5061046a600480360381019061046591906128d4565b610d41565b005b348015610477575f80fd5b50610492600480360381019061048d91906126ff565b610e0f565b60405161049f9190612688565b60405180910390f35b3480156104b3575f80fd5b506104ce60048036038101906104c99190612948565b610e24565b005b3480156104db575f80fd5b506104e4611102565b6040516104f191906129bb565b60405180910390f35b348015610505575f80fd5b5061050e611126565b60405161051b91906127e2565b60405180910390f35b34801561052f575f80fd5b50610538611138565b6040516105459190612688565b60405180910390f35b348015610559575f80fd5b5061056261113e565b60405161056f9190612688565b60405180910390f35b348015610583575f80fd5b5061058c611144565b6040516105999190612688565b60405180910390f35b3480156105ad575f80fd5b506105c860048036038101906105c391906126ff565b61114b565b6040516105d59190612688565b60405180910390f35b3480156105e9575f80fd5b506105f2611190565b005b3480156105ff575f80fd5b5061061a600480360381019061061591906126ff565b6111a3565b005b348015610627575f80fd5b506106306112e0565b60405161063d9190612688565b60405180910390f35b348015610651575f80fd5b5061065a6112e6565b005b348015610667575f80fd5b50610682600480360381019061067d91906127fb565b6113e4565b005b34801561068f575f80fd5b506106986114be565b6040516106a591906129bb565b60405180910390f35b3480156106b9575f80fd5b506106c26114e6565b6040516106cf91906129bb565b60405180910390f35b3480156106e3575f80fd5b506106ec61150a565b6040516106f99190612688565b60405180910390f35b34801561070d575f80fd5b50610716611531565b6040516107239190612688565b60405180910390f35b348015610737575f80fd5b50610740611555565b60405161074d9190612650565b60405180910390f35b348015610761575f80fd5b5061076a6115e5565b60405161077791906129bb565b60405180910390f35b34801561078b575f80fd5b506107a660048036038101906107a1919061278a565b611609565b6040516107b391906127e2565b60405180910390f35b3480156107c7575f80fd5b506107d061162b565b6040516107dd91906127e2565b60405180910390f35b3480156107f1575f80fd5b5061080c600480360381019061080791906126ff565b61163d565b60405161081991906127e2565b60405180910390f35b34801561082d575f80fd5b5061083661165a565b6040516108439190612a2f565b60405180910390f35b348015610857575f80fd5b5061086061167e565b60405161086d9190612688565b60405180910390f35b348015610881575f80fd5b5061089c600480360381019061089791906126ff565b611684565b6040516108a991906127e2565b60405180910390f35b3480156108bd575f80fd5b506108c66116a1565b6040516108d39190612688565b60405180910390f35b3480156108e7575f80fd5b506108f06116a7565b6040516108fd91906129bb565b60405180910390f35b348015610911575f80fd5b5061091a6116cc565b005b348015610927575f80fd5b5061093061170a565b60405161093d9190612688565b60405180910390f35b348015610951575f80fd5b5061096c600480360381019061096791906127fb565b611731565b005b348015610979575f80fd5b50610994600480360381019061098f9190612a48565b61180b565b6040516109a19190612688565b60405180910390f35b3480156109b5575f80fd5b506109d060048036038101906109cb91906126ff565b61188d565b005b3480156109dd575f80fd5b506109e6611911565b6040516109f39190612aa6565b60405180910390f35b348015610a07575f80fd5b50610a10611936565b604051610a1d91906129bb565b60405180910390f35b606060038054610a3590612aec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6190612aec565b8015610aac5780601f10610a8357610100808354040283529160200191610aac565b820191905f5260205f20905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b62ed4e0081565b610ac561195b565b62278d00601454610ad69190612b49565b421115610b1257610ae5611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790612bc6565b60405180910390fd5b80600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f301a631cfeda987f78299c923f3b163e1fcb55191ff894d1165fdc706d025ff781604051610bef91906129bb565b60405180910390a150565b610bb881565b5f80610c0a6119e2565b9050610c178185856119e9565b600191505092915050565b60075481565b610c3061195b565b62278d00601454610c419190612b49565b421115610c7d57610c50611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b6064811115610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890612c2e565b60405180910390fd5b80600c819055507fa3370f7fc7573d713f27ae89ba2f193d4b43991622ff969b0475e2f911aacf1a81604051610cf79190612688565b60405180910390a150565b5f600254905090565b5f80610d156119e2565b9050610d228582856119fb565b610d2d858585611a8d565b60019150509392505050565b5f6012905090565b610d4961195b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90612c96565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600d602052805f5260405f205f915090505481565b610e2c61195b565b610e34611b7d565b60155f9054906101000a900460ff16610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612cfe565b60405180910390fd5b83610e8c3061114b565b1015610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612d66565b60405180910390fd5b82471015610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790612dce565b60405180910390fd5b610f3c3060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866119e9565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663095ea7b360105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610fb8929190612dec565b6020604051808303815f875af1158015610fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ff89190612e27565b5060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633c8a7d8d308484888860405160200161104b9190612e72565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161107a959493929190612f17565b60408051808303815f875af1158015611095573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b99190612f83565b50507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b84846040516110ec929190612fc1565b60405180910390a16110fc611bcc565b50505050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b60155f9054906101000a900460ff1681565b600a5481565b61fd2081565b62278d0081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61119861195b565b6111a15f611bd6565b565b6111ab61195b565b62278d006014546111bc9190612b49565b4211156111f8576111cb611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612bc6565b60405180910390fd5b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fd5fd31fbc0fb285335ee2c93b02876266faf6e603a8d2de9371b89fadadedafb816040516112d591906129bb565b60405180910390a150565b60145481565b6112ee61195b565b62278d006014546112ff9190612b49565b42111561133b5761130e611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b60155f9054906101000a900460ff161561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613032565b60405180910390fd5b600160155f6101000a81548160ff021916908315150217905550426014819055507fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e923426040516113da9190612688565b60405180910390a1565b6113ec61195b565b62278d006014546113fd9190612b49565b4211156114395761140c611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b600581111561147d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114749061309a565b60405180910390fd5b80600b819055507fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11816040516114b39190612688565b60405180910390a150565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000c2197ffba56879ea8584469e63cccdf832155f5481565b606460016a084595161401484a00000061152491906130b8565b61152e9190613126565b81565b7f0000000000000000000000000000000000000000000000000de0b6b3a764000081565b60606004805461156490612aec565b80601f016020809104026020016040519081016040528092919081815260200182805461159090612aec565b80156115db5780601f106115b2576101008083540402835291602001916115db565b820191905f5260205f20905b8154815290600101906020018083116115be57829003601f168201915b5050505050905090565b7f000000000000000000000000dc63221e6589a336df26b561d72b6232ee0c5ed281565b5f806116136119e2565b9050611620818585611a8d565b600191505092915050565b60085f9054906101000a900460ff1681565b6012602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156481565b600b5481565b6013602052805f5260405f205f915054906101000a900460ff1681565b600c5481565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116d461195b565b6116dc611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a1565b606460026a084595161401484a00000061172491906130b8565b61172e9190613126565b81565b61173961195b565b62278d0060145461174a9190612b49565b42111561178657611759611190565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a15b60058111156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061309a565b60405180910390fd5b80600a819055507f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce816040516118009190612688565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61189561195b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611905575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118fc91906129bb565b60405180910390fd5b61190e81611bd6565b50565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119636119e2565b73ffffffffffffffffffffffffffffffffffffffff166119816114be565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576119a46119e2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119d791906129bb565b60405180910390fd5b565b5f33905090565b6119f68383836001611c99565b505050565b5f611a06848461180b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a875781811015611a78578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611a6f93929190613156565b60405180910390fd5b611a8684848484035f611c99565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611afd575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611af491906129bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b6d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611b6491906129bb565b60405180910390fd5b611b78838383611e68565b505050565b600260065403611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906131d5565b60405180910390fd5b6002600681905550565b6001600681905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d09575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611d0091906129bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d79575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611d7091906129bb565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611e62578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611e599190612688565b60405180910390a35b50505050565b5f805f61fd20601454611e7b9190612b49565b421090507f0000000000000000000000000000000000000000000000000de0b6b3a76400008410158015611ef6575060115f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611f49575060115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156122675760125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611fe9575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156121e3576064611ff8612384565b8561200391906130b8565b61200d9190613126565b9250808015612063575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121e257606460016a084595161401484a00000061208291906130b8565b61208c9190613126565b8411156120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c590613263565b60405180910390fd5b4261fd20600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461211a9190612b49565b111561219e57606460026a084595161401484a00000061213a91906130b8565b6121449190613126565b8461214e8761114b565b6121589190612b49565b1115612199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612190906132f1565b60405180910390fd5b6121e1565b42600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b601560019054906101000a900460ff1615801561222c57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b801561226457503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b91505b5f8385612274919061330f565b90505f841115612370575f60028561228c9190613126565b90506122ba88600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836123ad565b6122f188600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683886122ec919061330f565b6123ad565b7f1715ef594b015a00b37dd31e4c75b5a5c2722fc2c97cd01b180e9d169427048485600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161236693929190613342565b60405180910390a1505b61237b8787836123ad565b50505050505050565b5f62ed4e006007546123969190612b49565b4210156123a657600590506123aa565b5f90505b90565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123fd578060025f8282546123f19190612b49565b925050819055506124cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612486578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161247d93929190613156565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612512578060025f828254039250508190555061255c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125b99190612688565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156125fd5780820151818401526020810190506125e2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612622826125c6565b61262c81856125d0565b935061263c8185602086016125e0565b61264581612608565b840191505092915050565b5f6020820190508181035f8301526126688184612618565b905092915050565b5f819050919050565b61268281612670565b82525050565b5f60208201905061269b5f830184612679565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126ce826126a5565b9050919050565b6126de816126c4565b81146126e8575f80fd5b50565b5f813590506126f9816126d5565b92915050565b5f60208284031215612714576127136126a1565b5b5f612721848285016126eb565b91505092915050565b5f62ffffff82169050919050565b6127418161272a565b82525050565b5f60208201905061275a5f830184612738565b92915050565b61276981612670565b8114612773575f80fd5b50565b5f8135905061278481612760565b92915050565b5f80604083850312156127a05761279f6126a1565b5b5f6127ad858286016126eb565b92505060206127be85828601612776565b9150509250929050565b5f8115159050919050565b6127dc816127c8565b82525050565b5f6020820190506127f55f8301846127d3565b92915050565b5f602082840312156128105761280f6126a1565b5b5f61281d84828501612776565b91505092915050565b5f805f6060848603121561283d5761283c6126a1565b5b5f61284a868287016126eb565b935050602061285b868287016126eb565b925050604061286c86828701612776565b9150509250925092565b5f60ff82169050919050565b61288b81612876565b82525050565b5f6020820190506128a45f830184612882565b92915050565b6128b3816127c8565b81146128bd575f80fd5b50565b5f813590506128ce816128aa565b92915050565b5f80604083850312156128ea576128e96126a1565b5b5f6128f7858286016126eb565b9250506020612908858286016128c0565b9150509250929050565b5f8160020b9050919050565b61292781612912565b8114612931575f80fd5b50565b5f813590506129428161291e565b92915050565b5f805f80608085870312156129605761295f6126a1565b5b5f61296d87828801612776565b945050602061297e87828801612776565b935050604061298f87828801612934565b92505060606129a087828801612934565b91505092959194509250565b6129b5816126c4565b82525050565b5f6020820190506129ce5f8301846129ac565b92915050565b5f819050919050565b5f6129f76129f26129ed846126a5565b6129d4565b6126a5565b9050919050565b5f612a08826129dd565b9050919050565b5f612a19826129fe565b9050919050565b612a2981612a0f565b82525050565b5f602082019050612a425f830184612a20565b92915050565b5f8060408385031215612a5e57612a5d6126a1565b5b5f612a6b858286016126eb565b9250506020612a7c858286016126eb565b9150509250929050565b5f612a90826129fe565b9050919050565b612aa081612a86565b82525050565b5f602082019050612ab95f830184612a97565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612b0357607f821691505b602082108103612b1657612b15612abf565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612b5382612670565b9150612b5e83612670565b9250828201905080821115612b7657612b75612b1c565b5b92915050565b7f43616e6e6f74206265207a65726f2061646472657373000000000000000000005f82015250565b5f612bb06016836125d0565b9150612bbb82612b7c565b602082019050919050565b5f6020820190508181035f830152612bdd81612ba4565b9050919050565b7f536c69707061676520746f6c6572616e636520746f6f206869676800000000005f82015250565b5f612c18601b836125d0565b9150612c2382612be4565b602082019050919050565b5f6020820190508181035f830152612c4581612c0c565b9050919050565b7f496e76616c696420706f6f6c20616464726573730000000000000000000000005f82015250565b5f612c806014836125d0565b9150612c8b82612c4c565b602082019050919050565b5f6020820190508181035f830152612cad81612c74565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f612ce86013836125d0565b9150612cf382612cb4565b602082019050919050565b5f6020820190508181035f830152612d1581612cdc565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000005f82015250565b5f612d50601d836125d0565b9150612d5b82612d1c565b602082019050919050565b5f6020820190508181035f830152612d7d81612d44565b9050919050565b7f4e6f7420656e6f7567682045544820696e20636f6e74726163740000000000005f82015250565b5f612db8601a836125d0565b9150612dc382612d84565b602082019050919050565b5f6020820190508181035f830152612de581612dac565b9050919050565b5f604082019050612dff5f8301856129ac565b612e0c6020830184612679565b9392505050565b5f81519050612e21816128aa565b92915050565b5f60208284031215612e3c57612e3b6126a1565b5b5f612e4984828501612e13565b91505092915050565b5f819050919050565b612e6c612e6782612670565b612e52565b82525050565b5f612e7d8284612e5b565b60208201915081905092915050565b612e9581612912565b82525050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b612ebf81612e9b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f612ee982612ec5565b612ef38185612ecf565b9350612f038185602086016125e0565b612f0c81612608565b840191505092915050565b5f60a082019050612f2a5f8301886129ac565b612f376020830187612e8c565b612f446040830186612e8c565b612f516060830185612eb6565b8181036080830152612f638184612edf565b90509695505050505050565b5f81519050612f7d81612760565b92915050565b5f8060408385031215612f9957612f986126a1565b5b5f612fa685828601612f6f565b9250506020612fb785828601612f6f565b9150509250929050565b5f604082019050612fd45f830185612679565b612fe16020830184612679565b9392505050565b7f54726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f61301c6017836125d0565b915061302782612fe8565b602082019050919050565b5f6020820190508181035f83015261304981613010565b9050919050565b7f54617820746f6f206869676800000000000000000000000000000000000000005f82015250565b5f613084600c836125d0565b915061308f82613050565b602082019050919050565b5f6020820190508181035f8301526130b181613078565b9050919050565b5f6130c282612670565b91506130cd83612670565b92508282026130db81612670565b915082820484148315176130f2576130f1612b1c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61313082612670565b915061313b83612670565b92508261314b5761314a6130f9565b5b828204905092915050565b5f6060820190506131695f8301866129ac565b6131766020830185612679565b6131836040830184612679565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6131bf601f836125d0565b91506131ca8261318b565b602082019050919050565b5f6020820190508181035f8301526131ec816131b3565b9050919050565b7f5472616e73616374696f6e20616d6f756e742065786365656473203125206c695f8201527f6d697420706572207472616e73616374696f6e00000000000000000000000000602082015250565b5f61324d6033836125d0565b9150613258826131f3565b604082019050919050565b5f6020820190508181035f83015261327a81613241565b9050919050565b7f546f74616c2062616c616e63652065786365656473203225206c696d697420645f8201527f7572696e67206c696d697420706572696f640000000000000000000000000000602082015250565b5f6132db6032836125d0565b91506132e682613281565b604082019050919050565b5f6020820190508181035f830152613308816132cf565b9050919050565b5f61331982612670565b915061332483612670565b925082820390508181111561333c5761333b612b1c565b5b92915050565b5f6060820190506133555f830186612679565b61336260208301856129ac565b61336f60408301846129ac565b94935050505056fea2646970667358221220badae7c9e2e782511fd5bfc90f2c6a61ffd716bd1ee9fb8e89f91638305ca3fc64736f6c63430008140033

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

000000000000000000000000c2197ffba56879ea8584469e63cccdf832155f54000000000000000000000000dc63221e6589a336df26b561d72b6232ee0c5ed2000000000000000000000000be5edb1b4187b070086a06aa29df51f93442e0cc00000000000000000000000072f430063b8bd0d36144e7e7929443b65970aaa40000000000000000000000000ebb7468f59560c258a3f1089c9a2070c40027ec

-----Decoded View---------------
Arg [0] : _devWallet (address): 0xC2197ffba56879eA8584469E63CCCDf832155f54
Arg [1] : _airdropWallet (address): 0xDc63221E6589a336Df26b561d72b6232eE0C5eD2
Arg [2] : _buyTaxWallet (address): 0xBE5EDb1b4187b070086a06aa29df51F93442e0cc
Arg [3] : _sellTaxWallet (address): 0x72f430063b8Bd0d36144e7E7929443b65970AaA4
Arg [4] : _liquidityLocker (address): 0x0eBB7468f59560C258a3f1089c9A2070C40027Ec

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000c2197ffba56879ea8584469e63cccdf832155f54
Arg [1] : 000000000000000000000000dc63221e6589a336df26b561d72b6232ee0c5ed2
Arg [2] : 000000000000000000000000be5edb1b4187b070086a06aa29df51f93442e0cc
Arg [3] : 00000000000000000000000072f430063b8bd0d36144e7e7929443b65970aaa4
Arg [4] : 0000000000000000000000000ebb7468f59560c258a3f1089c9a2070c40027ec


Deployed Bytecode Sourcemap

67722:9837:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12901:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68120:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75359:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68973:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15194:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67792:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75928:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14003:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15994:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13854:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74215:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68369:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76256:1127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68936:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69273:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68264:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68617:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67965:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14165:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24624:103;;;;;;;;;;;;;:::i;:::-;;75642:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69241:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74690:250;;;;;;;;;;;;;:::i;:::-;;75150:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23949:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68764:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68524:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67902:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13111:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68805:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14488:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68196:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69127:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68890:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68296:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69182:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68329:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68695:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77391:128;;;;;;;;;;;;;:::i;:::-;;68419:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74948:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14733:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24882:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69034:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68729:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12901:91;12946:13;12979:5;12972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12901:91;:::o;68120:55::-;68167:8;68120:55;:::o;75359:275::-;23835:13;:11;:13::i;:::-;68012:7:::1;70118:10;;:33;;;;:::i;:::-;70100:15;:51;70096:179;;;70168:19;:17;:19::i;:::-;70243:20;;;;;;;;;;70096:179;75514:1:::2;75492:24;;:10;:24;;::::0;75484:59:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;75569:10;75554:12;;:25;;;;;;;;;;;;;;;;;;75595:31;75615:10;75595:31;;;;;;:::i;:::-;;;;;;;;75359:275:::0;:::o;68973:37::-;69006:4;68973:37;:::o;15194:190::-;15267:4;15284:13;15300:12;:10;:12::i;:::-;15284:28;;15323:31;15332:5;15339:7;15348:5;15323:8;:31::i;:::-;15372:4;15365:11;;;15194:190;;;;:::o;67792:39::-;;;;:::o;75928:320::-;23835:13;:11;:13::i;:::-;68012:7:::1;70118:10;;:33;;;;:::i;:::-;70100:15;:51;70096:179;;;70168:19;:17;:19::i;:::-;70243:20;;;;;;;;;;70096:179;76096:3:::2;76074:18;:25;;76066:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;76162:18;76142:17;:38;;;;76196:44;76221:18;76196:44;;;;;;:::i;:::-;;;;;;;;75928:320:::0;:::o;14003:99::-;14055:7;14082:12;;14075:19;;14003:99;:::o;15994:249::-;16081:4;16098:15;16116:12;:10;:12::i;:::-;16098:30;;16139:37;16155:4;16161:7;16170:5;16139:15;:37::i;:::-;16187:26;16197:4;16203:2;16207:5;16187:9;:26::i;:::-;16231:4;16224:11;;;15994:249;;;;;:::o;13854:84::-;13903:5;13928:2;13921:9;;13854:84;:::o;74215:181::-;23835:13;:11;:13::i;:::-;74323:1:::1;74307:18;;:4;:18;;::::0;74299:51:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;74382:10;74357:16;:22;74374:4;74357:22;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;74215:181:::0;;:::o;68369:46::-;;;;;;;;;;;;;;;;;:::o;76256:1127::-;23835:13;:11;:13::i;:::-;27805:21:::1;:19;:21::i;:::-;76446:14:::2;;;;;;;;;;;76438:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76545:11;76517:24;76535:4;76517:9;:24::i;:::-;:39;;76495:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;76671:9;76646:21;:34;;76624:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;76800:60;76817:4;76832:13;;;;;;;;;;;76848:11;76800:8;:60::i;:::-;76878:5;76871:21;;;76901:13;;;;;;;;;;;76917:9;76871:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;76966:13;;;;;;;;;;;:18;;;77007:4;77071:9;77122;77181:11;77268:9;77251:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;76966:353;;;;;;;;;;;;;;;;;;;:::i;:::-;;::::0;::::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;77337:38;77352:11;77365:9;77337:38;;;;;;;:::i;:::-;;;;;;;;27849:20:::1;:18;:20::i;:::-;76256:1127:::0;;;;:::o;68936:30::-;;;:::o;69273:26::-;;;;;;;;;;;;;:::o;68264:25::-;;;;:::o;68617:47::-;68656:8;68617:47;:::o;67965:54::-;68012:7;67965:54;:::o;14165:118::-;14230:7;14257:9;:18;14267:7;14257:18;;;;;;;;;;;;;;;;14250:25;;14165:118;;;:::o;24624:103::-;23835:13;:11;:13::i;:::-;24689:30:::1;24716:1;24689:18;:30::i;:::-;24624:103::o:0;75642:278::-;23835:13;:11;:13::i;:::-;68012:7:::1;70118:10;;:33;;;;:::i;:::-;70100:15;:51;70096:179;;;70168:19;:17;:19::i;:::-;70243:20;;;;;;;;;;70096:179;75798:1:::2;75776:24;;:10;:24;;::::0;75768:59:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;75854:10;75838:13;;:26;;;;;;;;;;;;;;;;;;75880:32;75901:10;75880:32;;;;;;:::i;:::-;;;;;;;;75642:278:::0;:::o;69241:25::-;;;;:::o;74690:250::-;23835:13;:11;:13::i;:::-;68012:7:::1;70118:10;;:33;;;;:::i;:::-;70100:15;:51;70096:179;;;70168:19;:17;:19::i;:::-;70243:20;;;;;;;;;;70096:179;74772:14:::2;;;;;;;;;;;74771:15;74763:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;74842:4;74825:14;;:21;;;;;;;;;;;;;;;;;;74870:15;74857:10;:28;;;;74901:31;74916:15;74901:31;;;;;;:::i;:::-;;;;;;;;74690:250::o:0;75150:201::-;23835:13;:11;:13::i;:::-;68012:7:::1;70118:10;;:33;;;;:::i;:::-;70100:15;:51;70096:179;;;70168:19;:17;:19::i;:::-;70243:20;;;;;;;;;;70096:179;75256:1:::2;75244:8;:13;;75236:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;75295:8;75285:7;:18;;;;75319:24;75334:8;75319:24;;;;;;:::i;:::-;;;;;;;;75150:201:::0;:::o;23949:87::-;23995:7;24022:6;;;;;;;;;;;24015:13;;23949:87;:::o;68764:34::-;;;:::o;68524:64::-;68585:3;68580:1;67878:17;68565:16;;;;:::i;:::-;68564:24;;;;:::i;:::-;68524:64;:::o;67902:56::-;;;:::o;13111:95::-;13158:13;13191:7;13184:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13111:95;:::o;68805:38::-;;;:::o;14488:182::-;14557:4;14574:13;14590:12;:10;:12::i;:::-;14574:28;;14613:27;14623:5;14630:2;14634:5;14613:9;:27::i;:::-;14658:4;14651:11;;;14488:182;;;;:::o;68196:20::-;;;;;;;;;;;;;:::o;69127:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;68890:39::-;;;:::o;68296:26::-;;;;:::o;69182:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;68329:36::-;;;;:::o;68695:27::-;;;;;;;;;;;;;:::o;77391:128::-;23835:13;:11;:13::i;:::-;77456:19:::1;:17;:19::i;:::-;77491:20;;;;;;;;;;77391:128::o:0;68419:66::-;68482:3;68477:1;67878:17;68462:16;;;;:::i;:::-;68461:24;;;;:::i;:::-;68419:66;:::o;74948:194::-;23835:13;:11;:13::i;:::-;68012:7:::1;70118:10;;:33;;;;:::i;:::-;70100:15;:51;70096:179;;;70168:19;:17;:19::i;:::-;70243:20;;;;;;;;;;70096:179;75051:1:::2;75040:7;:12;;75032:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;75089:7;75080:6;:16;;;;75112:22;75126:7;75112:22;;;;;;:::i;:::-;;;;;;;;74948:194:::0;:::o;14733:142::-;14813:7;14840:11;:18;14852:5;14840:18;;;;;;;;;;;;;;;:27;14859:7;14840:27;;;;;;;;;;;;;;;;14833:34;;14733:142;;;;:::o;24882:220::-;23835:13;:11;:13::i;:::-;24987:1:::1;24967:22;;:8;:22;;::::0;24963:93:::1;;25041:1;25013:31;;;;;;;;;;;:::i;:::-;;;;;;;;24963:93;25066:28;25085:8;25066:18;:28::i;:::-;24882:220:::0;:::o;69034:35::-;;;;;;;;;;;;;:::o;68729:28::-;;;;;;;;;;;;;:::o;24114:166::-;24185:12;:10;:12::i;:::-;24174:23;;:7;:5;:7::i;:::-;:23;;;24170:103;;24248:12;:10;:12::i;:::-;24221:40;;;;;;;;;;;:::i;:::-;;;;;;;;24170:103;24114:166::o;4200:98::-;4253:7;4280:10;4273:17;;4200:98;:::o;20053:130::-;20138:37;20147:5;20154:7;20163:5;20170:4;20138:8;:37::i;:::-;20053:130;;;:::o;21785:487::-;21885:24;21912:25;21922:5;21929:7;21912:9;:25::i;:::-;21885:52;;21972:17;21952:16;:37;21948:317;;22029:5;22010:16;:24;22006:132;;;22089:7;22098:16;22116:5;22062:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22006:132;22181:57;22190:5;22197:7;22225:5;22206:16;:24;22232:5;22181:8;:57::i;:::-;21948:317;21874:398;21785:487;;;:::o;16628:308::-;16728:1;16712:18;;:4;:18;;;16708:88;;16781:1;16754:30;;;;;;;;;;;:::i;:::-;;;;;;;;16708:88;16824:1;16810:16;;:2;:16;;;16806:88;;16879:1;16850:32;;;;;;;;;;;:::i;:::-;;;;;;;;16806:88;16904:24;16912:4;16918:2;16922:5;16904:7;:24::i;:::-;16628:308;;;:::o;27885:293::-;27287:1;28019:7;;:19;28011:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27287:1;28152:7;:18;;;;27885:293::o;28186:213::-;27243:1;28369:7;:22;;;;28186:213::o;25262:191::-;25336:16;25355:6;;;;;;;;;;;25336:25;;25381:8;25372:6;;:17;;;;;;;;;;;;;;;;;;25436:8;25405:40;;25426:8;25405:40;;;;;;;;;;;;25325:128;25262:191;:::o;21050:443::-;21180:1;21163:19;;:5;:19;;;21159:91;;21235:1;21206:32;;;;;;;;;;;:::i;:::-;;;;;;;;21159:91;21283:1;21264:21;;:7;:21;;;21260:92;;21337:1;21309:31;;;;;;;;;;;:::i;:::-;;;;;;;;21260:92;21392:5;21362:11;:18;21374:5;21362:18;;;;;;;;;;;;;;;:27;21381:7;21362:27;;;;;;;;;;;;;;;:35;;;;21412:9;21408:78;;;21459:7;21443:31;;21452:5;21443:31;;;21468:5;21443:31;;;;;;:::i;:::-;;;;;;;;21408:78;21050:443;;;;:::o;72257:1956::-;72367:17;72395:15;72425:22;68656:8;72468:10;;:25;;;;:::i;:::-;72450:15;:43;72425:68;;72516:18;72506:6;:28;;:48;;;;;72539:9;:15;72549:4;72539:15;;;;;;;;;;;;;;;;;;;;;;;;;72538:16;72506:48;:66;;;;;72559:9;:13;72569:2;72559:13;;;;;;;;;;;;;;;;;;;;;;;;;72558:14;72506:66;72502:1126;;;72589:16;:22;72606:4;72589:22;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;72615:16;:20;72632:2;72615:20;;;;;;;;;;;;;;;;;;;;;;;;;72589:46;72585:918;;;72695:3;72674:17;:15;:17::i;:::-;72665:6;:26;;;;:::i;:::-;72664:34;;;;:::i;:::-;72652:46;;72825:17;:44;;;;;72847:18;:22;72866:2;72847:22;;;;;;;;;;;;;;;;;;;;;;;;;72846:23;72825:44;72821:671;;;68585:3;68580:1;67878:17;68565:16;;;;:::i;:::-;68564:24;;;;:::i;:::-;72898:6;:23;;72890:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;73152:15;68656:8;73119:11;:15;73131:2;73119:15;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:48;73115:362;;;68482:3;68477:1;67878:17;68462:16;;;;:::i;:::-;68461:24;;;;:::i;:::-;73216:6;73200:13;73210:2;73200:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;73192:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;73115:362;;;73442:15;73424:11;:15;73436:2;73424:15;;;;;;;;;;;;;;;:33;;;;73115:362;72821:671;72585:918;73540:6;;;;;;;;;;;73539:7;:45;;;;;73579:4;73563:21;;:4;:21;;;;73539:45;:81;;;;;73615:4;73601:19;;:2;:19;;;;73539:81;73513:107;;72502:1126;73636:22;73670:9;73661:6;:18;;;;:::i;:::-;73636:43;;73702:1;73690:9;:13;73686:314;;;73769:15;73799:1;73787:9;:13;;;;:::i;:::-;73769:31;;73811:42;73825:4;73831:12;;;;;;;;;;;73845:7;73811:13;:42::i;:::-;73864:55;73878:4;73884:13;;;;;;;;;;;73911:7;73899:9;:19;;;;:::i;:::-;73864:13;:55::i;:::-;73929:63;73953:9;73964:12;;;;;;;;;;;73978:13;;;;;;;;;;;73929:63;;;;;;;;:::i;:::-;;;;;;;;73705:295;73686:314;74006:39;74020:4;74026:2;74030:14;74006:13;:39::i;:::-;72360:1853;;;;72257:1956;;;:::o;74404:278::-;74453:7;68167:8;74495:24;;:47;;;;:::i;:::-;74477:15;:65;74473:202;;;74566:1;74559:8;;;;74473:202;74635:1;74628:8;;74404:278;;:::o;17260:1135::-;17366:1;17350:18;;:4;:18;;;17346:552;;17504:5;17488:12;;:21;;;;;;;:::i;:::-;;;;;;;;17346:552;;;17542:19;17564:9;:15;17574:4;17564:15;;;;;;;;;;;;;;;;17542:37;;17612:5;17598:11;:19;17594:117;;;17670:4;17676:11;17689:5;17645:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17594:117;17866:5;17852:11;:19;17834:9;:15;17844:4;17834:15;;;;;;;;;;;;;;;:37;;;;17527:371;17346:552;17928:1;17914:16;;:2;:16;;;17910:435;;18096:5;18080:12;;:21;;;;;;;;;;;17910:435;;;18313:5;18296:9;:13;18306:2;18296:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17910:435;18377:2;18362:25;;18371:4;18362:25;;;18381:5;18362:25;;;;;;:::i;:::-;;;;;;;;17260:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:77::-;1386:7;1415:5;1404:16;;1349:77;;;:::o;1432:118::-;1519:24;1537:5;1519:24;:::i;:::-;1514:3;1507:37;1432:118;;:::o;1556:222::-;1649:4;1687:2;1676:9;1672:18;1664:26;;1700:71;1768:1;1757:9;1753:17;1744:6;1700:71;:::i;:::-;1556:222;;;;:::o;1865:117::-;1974:1;1971;1964:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:329::-;2677:6;2726:2;2714:9;2705:7;2701:23;2697:32;2694:119;;;2732:79;;:::i;:::-;2694:119;2852:1;2877:53;2922:7;2913:6;2902:9;2898:22;2877:53;:::i;:::-;2867:63;;2823:117;2618:329;;;;:::o;2953:91::-;2989:7;3029:8;3022:5;3018:20;3007:31;;2953:91;;;:::o;3050:115::-;3135:23;3152:5;3135:23;:::i;:::-;3130:3;3123:36;3050:115;;:::o;3171:218::-;3262:4;3300:2;3289:9;3285:18;3277:26;;3313:69;3379:1;3368:9;3364:17;3355:6;3313:69;:::i;:::-;3171:218;;;;:::o;3395:122::-;3468:24;3486:5;3468:24;:::i;:::-;3461:5;3458:35;3448:63;;3507:1;3504;3497:12;3448:63;3395:122;:::o;3523:139::-;3569:5;3607:6;3594:20;3585:29;;3623:33;3650:5;3623:33;:::i;:::-;3523:139;;;;:::o;3668:474::-;3736:6;3744;3793:2;3781:9;3772:7;3768:23;3764:32;3761:119;;;3799:79;;:::i;:::-;3761:119;3919:1;3944:53;3989:7;3980:6;3969:9;3965:22;3944:53;:::i;:::-;3934:63;;3890:117;4046:2;4072:53;4117:7;4108:6;4097:9;4093:22;4072:53;:::i;:::-;4062:63;;4017:118;3668:474;;;;;:::o;4148:90::-;4182:7;4225:5;4218:13;4211:21;4200:32;;4148:90;;;:::o;4244:109::-;4325:21;4340:5;4325:21;:::i;:::-;4320:3;4313:34;4244:109;;:::o;4359:210::-;4446:4;4484:2;4473:9;4469:18;4461:26;;4497:65;4559:1;4548:9;4544:17;4535:6;4497:65;:::i;:::-;4359:210;;;;:::o;4575:329::-;4634:6;4683:2;4671:9;4662:7;4658:23;4654:32;4651:119;;;4689:79;;:::i;:::-;4651:119;4809:1;4834:53;4879:7;4870:6;4859:9;4855:22;4834:53;:::i;:::-;4824:63;;4780:117;4575:329;;;;:::o;4910:619::-;4987:6;4995;5003;5052:2;5040:9;5031:7;5027:23;5023:32;5020:119;;;5058:79;;:::i;:::-;5020:119;5178:1;5203:53;5248:7;5239:6;5228:9;5224:22;5203:53;:::i;:::-;5193:63;;5149:117;5305:2;5331:53;5376:7;5367:6;5356:9;5352:22;5331:53;:::i;:::-;5321:63;;5276:118;5433:2;5459:53;5504:7;5495:6;5484:9;5480:22;5459:53;:::i;:::-;5449:63;;5404:118;4910:619;;;;;:::o;5535:86::-;5570:7;5610:4;5603:5;5599:16;5588:27;;5535:86;;;:::o;5627:112::-;5710:22;5726:5;5710:22;:::i;:::-;5705:3;5698:35;5627:112;;:::o;5745:214::-;5834:4;5872:2;5861:9;5857:18;5849:26;;5885:67;5949:1;5938:9;5934:17;5925:6;5885:67;:::i;:::-;5745:214;;;;:::o;5965:116::-;6035:21;6050:5;6035:21;:::i;:::-;6028:5;6025:32;6015:60;;6071:1;6068;6061:12;6015:60;5965:116;:::o;6087:133::-;6130:5;6168:6;6155:20;6146:29;;6184:30;6208:5;6184:30;:::i;:::-;6087:133;;;;:::o;6226:468::-;6291:6;6299;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:53;6544:7;6535:6;6524:9;6520:22;6499:53;:::i;:::-;6489:63;;6445:117;6601:2;6627:50;6669:7;6660:6;6649:9;6645:22;6627:50;:::i;:::-;6617:60;;6572:115;6226:468;;;;;:::o;6700:90::-;6735:7;6778:5;6775:1;6764:20;6753:31;;6700:90;;;:::o;6796:118::-;6867:22;6883:5;6867:22;:::i;:::-;6860:5;6857:33;6847:61;;6904:1;6901;6894:12;6847:61;6796:118;:::o;6920:135::-;6964:5;7002:6;6989:20;6980:29;;7018:31;7043:5;7018:31;:::i;:::-;6920:135;;;;:::o;7061:757::-;7143:6;7151;7159;7167;7216:3;7204:9;7195:7;7191:23;7187:33;7184:120;;;7223:79;;:::i;:::-;7184:120;7343:1;7368:53;7413:7;7404:6;7393:9;7389:22;7368:53;:::i;:::-;7358:63;;7314:117;7470:2;7496:53;7541:7;7532:6;7521:9;7517:22;7496:53;:::i;:::-;7486:63;;7441:118;7598:2;7624:51;7667:7;7658:6;7647:9;7643:22;7624:51;:::i;:::-;7614:61;;7569:116;7724:2;7750:51;7793:7;7784:6;7773:9;7769:22;7750:51;:::i;:::-;7740:61;;7695:116;7061:757;;;;;;;:::o;7824:118::-;7911:24;7929:5;7911:24;:::i;:::-;7906:3;7899:37;7824:118;;:::o;7948:222::-;8041:4;8079:2;8068:9;8064:18;8056:26;;8092:71;8160:1;8149:9;8145:17;8136:6;8092:71;:::i;:::-;7948:222;;;;:::o;8176:60::-;8204:3;8225:5;8218:12;;8176:60;;;:::o;8242:142::-;8292:9;8325:53;8343:34;8352:24;8370:5;8352:24;:::i;:::-;8343:34;:::i;:::-;8325:53;:::i;:::-;8312:66;;8242:142;;;:::o;8390:126::-;8440:9;8473:37;8504:5;8473:37;:::i;:::-;8460:50;;8390:126;;;:::o;8522:146::-;8592:9;8625:37;8656:5;8625:37;:::i;:::-;8612:50;;8522:146;;;:::o;8674:171::-;8781:57;8832:5;8781:57;:::i;:::-;8776:3;8769:70;8674:171;;:::o;8851:262::-;8964:4;9002:2;8991:9;8987:18;8979:26;;9015:91;9103:1;9092:9;9088:17;9079:6;9015:91;:::i;:::-;8851:262;;;;:::o;9119:474::-;9187:6;9195;9244:2;9232:9;9223:7;9219:23;9215:32;9212:119;;;9250:79;;:::i;:::-;9212:119;9370:1;9395:53;9440:7;9431:6;9420:9;9416:22;9395:53;:::i;:::-;9385:63;;9341:117;9497:2;9523:53;9568:7;9559:6;9548:9;9544:22;9523:53;:::i;:::-;9513:63;;9468:118;9119:474;;;;;:::o;9599:149::-;9672:9;9705:37;9736:5;9705:37;:::i;:::-;9692:50;;9599:149;;;:::o;9754:177::-;9864:60;9918:5;9864:60;:::i;:::-;9859:3;9852:73;9754:177;;:::o;9937:268::-;10053:4;10091:2;10080:9;10076:18;10068:26;;10104:94;10195:1;10184:9;10180:17;10171:6;10104:94;:::i;:::-;9937:268;;;;:::o;10211:180::-;10259:77;10256:1;10249:88;10356:4;10353:1;10346:15;10380:4;10377:1;10370:15;10397:320;10441:6;10478:1;10472:4;10468:12;10458:22;;10525:1;10519:4;10515:12;10546:18;10536:81;;10602:4;10594:6;10590:17;10580:27;;10536:81;10664:2;10656:6;10653:14;10633:18;10630:38;10627:84;;10683:18;;:::i;:::-;10627:84;10448:269;10397:320;;;:::o;10723:180::-;10771:77;10768:1;10761:88;10868:4;10865:1;10858:15;10892:4;10889:1;10882:15;10909:191;10949:3;10968:20;10986:1;10968:20;:::i;:::-;10963:25;;11002:20;11020:1;11002:20;:::i;:::-;10997:25;;11045:1;11042;11038:9;11031:16;;11066:3;11063:1;11060:10;11057:36;;;11073:18;;:::i;:::-;11057:36;10909:191;;;;:::o;11106:172::-;11246:24;11242:1;11234:6;11230:14;11223:48;11106:172;:::o;11284:366::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11284:366;;;:::o;11656:419::-;11822:4;11860:2;11849:9;11845:18;11837:26;;11909:9;11903:4;11899:20;11895:1;11884:9;11880:17;11873:47;11937:131;12063:4;11937:131;:::i;:::-;11929:139;;11656:419;;;:::o;12081:177::-;12221:29;12217:1;12209:6;12205:14;12198:53;12081:177;:::o;12264:366::-;12406:3;12427:67;12491:2;12486:3;12427:67;:::i;:::-;12420:74;;12503:93;12592:3;12503:93;:::i;:::-;12621:2;12616:3;12612:12;12605:19;;12264:366;;;:::o;12636:419::-;12802:4;12840:2;12829:9;12825:18;12817:26;;12889:9;12883:4;12879:20;12875:1;12864:9;12860:17;12853:47;12917:131;13043:4;12917:131;:::i;:::-;12909:139;;12636:419;;;:::o;13061:170::-;13201:22;13197:1;13189:6;13185:14;13178:46;13061:170;:::o;13237:366::-;13379:3;13400:67;13464:2;13459:3;13400:67;:::i;:::-;13393:74;;13476:93;13565:3;13476:93;:::i;:::-;13594:2;13589:3;13585:12;13578:19;;13237:366;;;:::o;13609:419::-;13775:4;13813:2;13802:9;13798:18;13790:26;;13862:9;13856:4;13852:20;13848:1;13837:9;13833:17;13826:47;13890:131;14016:4;13890:131;:::i;:::-;13882:139;;13609:419;;;:::o;14034:169::-;14174:21;14170:1;14162:6;14158:14;14151:45;14034:169;:::o;14209:366::-;14351:3;14372:67;14436:2;14431:3;14372:67;:::i;:::-;14365:74;;14448:93;14537:3;14448:93;:::i;:::-;14566:2;14561:3;14557:12;14550:19;;14209:366;;;:::o;14581:419::-;14747:4;14785:2;14774:9;14770:18;14762:26;;14834:9;14828:4;14824:20;14820:1;14809:9;14805:17;14798:47;14862:131;14988:4;14862:131;:::i;:::-;14854:139;;14581:419;;;:::o;15006:179::-;15146:31;15142:1;15134:6;15130:14;15123:55;15006:179;:::o;15191:366::-;15333:3;15354:67;15418:2;15413:3;15354:67;:::i;:::-;15347:74;;15430:93;15519:3;15430:93;:::i;:::-;15548:2;15543:3;15539:12;15532:19;;15191:366;;;:::o;15563:419::-;15729:4;15767:2;15756:9;15752:18;15744:26;;15816:9;15810:4;15806:20;15802:1;15791:9;15787:17;15780:47;15844:131;15970:4;15844:131;:::i;:::-;15836:139;;15563:419;;;:::o;15988:176::-;16128:28;16124:1;16116:6;16112:14;16105:52;15988:176;:::o;16170:366::-;16312:3;16333:67;16397:2;16392:3;16333:67;:::i;:::-;16326:74;;16409:93;16498:3;16409:93;:::i;:::-;16527:2;16522:3;16518:12;16511:19;;16170:366;;;:::o;16542:419::-;16708:4;16746:2;16735:9;16731:18;16723:26;;16795:9;16789:4;16785:20;16781:1;16770:9;16766:17;16759:47;16823:131;16949:4;16823:131;:::i;:::-;16815:139;;16542:419;;;:::o;16967:332::-;17088:4;17126:2;17115:9;17111:18;17103:26;;17139:71;17207:1;17196:9;17192:17;17183:6;17139:71;:::i;:::-;17220:72;17288:2;17277:9;17273:18;17264:6;17220:72;:::i;:::-;16967:332;;;;;:::o;17305:137::-;17359:5;17390:6;17384:13;17375:22;;17406:30;17430:5;17406:30;:::i;:::-;17305:137;;;;:::o;17448:345::-;17515:6;17564:2;17552:9;17543:7;17539:23;17535:32;17532:119;;;17570:79;;:::i;:::-;17532:119;17690:1;17715:61;17768:7;17759:6;17748:9;17744:22;17715:61;:::i;:::-;17705:71;;17661:125;17448:345;;;;:::o;17799:79::-;17838:7;17867:5;17856:16;;17799:79;;;:::o;17884:157::-;17989:45;18009:24;18027:5;18009:24;:::i;:::-;17989:45;:::i;:::-;17984:3;17977:58;17884:157;;:::o;18047:256::-;18159:3;18174:75;18245:3;18236:6;18174:75;:::i;:::-;18274:2;18269:3;18265:12;18258:19;;18294:3;18287:10;;18047:256;;;;:::o;18309:112::-;18392:22;18408:5;18392:22;:::i;:::-;18387:3;18380:35;18309:112;;:::o;18427:118::-;18464:7;18504:34;18497:5;18493:46;18482:57;;18427:118;;;:::o;18551:::-;18638:24;18656:5;18638:24;:::i;:::-;18633:3;18626:37;18551:118;;:::o;18675:98::-;18726:6;18760:5;18754:12;18744:22;;18675:98;;;:::o;18779:168::-;18862:11;18896:6;18891:3;18884:19;18936:4;18931:3;18927:14;18912:29;;18779:168;;;;:::o;18953:373::-;19039:3;19067:38;19099:5;19067:38;:::i;:::-;19121:70;19184:6;19179:3;19121:70;:::i;:::-;19114:77;;19200:65;19258:6;19253:3;19246:4;19239:5;19235:16;19200:65;:::i;:::-;19290:29;19312:6;19290:29;:::i;:::-;19285:3;19281:39;19274:46;;19043:283;18953:373;;;;:::o;19332:735::-;19547:4;19585:3;19574:9;19570:19;19562:27;;19599:71;19667:1;19656:9;19652:17;19643:6;19599:71;:::i;:::-;19680:68;19744:2;19733:9;19729:18;19720:6;19680:68;:::i;:::-;19758;19822:2;19811:9;19807:18;19798:6;19758:68;:::i;:::-;19836:72;19904:2;19893:9;19889:18;19880:6;19836:72;:::i;:::-;19956:9;19950:4;19946:20;19940:3;19929:9;19925:19;19918:49;19984:76;20055:4;20046:6;19984:76;:::i;:::-;19976:84;;19332:735;;;;;;;;:::o;20073:143::-;20130:5;20161:6;20155:13;20146:22;;20177:33;20204:5;20177:33;:::i;:::-;20073:143;;;;:::o;20222:507::-;20301:6;20309;20358:2;20346:9;20337:7;20333:23;20329:32;20326:119;;;20364:79;;:::i;:::-;20326:119;20484:1;20509:64;20565:7;20556:6;20545:9;20541:22;20509:64;:::i;:::-;20499:74;;20455:128;20622:2;20648:64;20704:7;20695:6;20684:9;20680:22;20648:64;:::i;:::-;20638:74;;20593:129;20222:507;;;;;:::o;20735:332::-;20856:4;20894:2;20883:9;20879:18;20871:26;;20907:71;20975:1;20964:9;20960:17;20951:6;20907:71;:::i;:::-;20988:72;21056:2;21045:9;21041:18;21032:6;20988:72;:::i;:::-;20735:332;;;;;:::o;21073:173::-;21213:25;21209:1;21201:6;21197:14;21190:49;21073:173;:::o;21252:366::-;21394:3;21415:67;21479:2;21474:3;21415:67;:::i;:::-;21408:74;;21491:93;21580:3;21491:93;:::i;:::-;21609:2;21604:3;21600:12;21593:19;;21252:366;;;:::o;21624:419::-;21790:4;21828:2;21817:9;21813:18;21805:26;;21877:9;21871:4;21867:20;21863:1;21852:9;21848:17;21841:47;21905:131;22031:4;21905:131;:::i;:::-;21897:139;;21624:419;;;:::o;22049:162::-;22189:14;22185:1;22177:6;22173:14;22166:38;22049:162;:::o;22217:366::-;22359:3;22380:67;22444:2;22439:3;22380:67;:::i;:::-;22373:74;;22456:93;22545:3;22456:93;:::i;:::-;22574:2;22569:3;22565:12;22558:19;;22217:366;;;:::o;22589:419::-;22755:4;22793:2;22782:9;22778:18;22770:26;;22842:9;22836:4;22832:20;22828:1;22817:9;22813:17;22806:47;22870:131;22996:4;22870:131;:::i;:::-;22862:139;;22589:419;;;:::o;23014:410::-;23054:7;23077:20;23095:1;23077:20;:::i;:::-;23072:25;;23111:20;23129:1;23111:20;:::i;:::-;23106:25;;23166:1;23163;23159:9;23188:30;23206:11;23188:30;:::i;:::-;23177:41;;23367:1;23358:7;23354:15;23351:1;23348:22;23328:1;23321:9;23301:83;23278:139;;23397:18;;:::i;:::-;23278:139;23062:362;23014:410;;;;:::o;23430:180::-;23478:77;23475:1;23468:88;23575:4;23572:1;23565:15;23599:4;23596:1;23589:15;23616:185;23656:1;23673:20;23691:1;23673:20;:::i;:::-;23668:25;;23707:20;23725:1;23707:20;:::i;:::-;23702:25;;23746:1;23736:35;;23751:18;;:::i;:::-;23736:35;23793:1;23790;23786:9;23781:14;;23616:185;;;;:::o;23807:442::-;23956:4;23994:2;23983:9;23979:18;23971:26;;24007:71;24075:1;24064:9;24060:17;24051:6;24007:71;:::i;:::-;24088:72;24156:2;24145:9;24141:18;24132:6;24088:72;:::i;:::-;24170;24238:2;24227:9;24223:18;24214:6;24170:72;:::i;:::-;23807:442;;;;;;:::o;24255:181::-;24395:33;24391:1;24383:6;24379:14;24372:57;24255:181;:::o;24442:366::-;24584:3;24605:67;24669:2;24664:3;24605:67;:::i;:::-;24598:74;;24681:93;24770:3;24681:93;:::i;:::-;24799:2;24794:3;24790:12;24783:19;;24442:366;;;:::o;24814:419::-;24980:4;25018:2;25007:9;25003:18;24995:26;;25067:9;25061:4;25057:20;25053:1;25042:9;25038:17;25031:47;25095:131;25221:4;25095:131;:::i;:::-;25087:139;;24814:419;;;:::o;25239:238::-;25379:34;25375:1;25367:6;25363:14;25356:58;25448:21;25443:2;25435:6;25431:15;25424:46;25239:238;:::o;25483:366::-;25625:3;25646:67;25710:2;25705:3;25646:67;:::i;:::-;25639:74;;25722:93;25811:3;25722:93;:::i;:::-;25840:2;25835:3;25831:12;25824:19;;25483:366;;;:::o;25855:419::-;26021:4;26059:2;26048:9;26044:18;26036:26;;26108:9;26102:4;26098:20;26094:1;26083:9;26079:17;26072:47;26136:131;26262:4;26136:131;:::i;:::-;26128:139;;25855:419;;;:::o;26280:237::-;26420:34;26416:1;26408:6;26404:14;26397:58;26489:20;26484:2;26476:6;26472:15;26465:45;26280:237;:::o;26523:366::-;26665:3;26686:67;26750:2;26745:3;26686:67;:::i;:::-;26679:74;;26762:93;26851:3;26762:93;:::i;:::-;26880:2;26875:3;26871:12;26864:19;;26523:366;;;:::o;26895:419::-;27061:4;27099:2;27088:9;27084:18;27076:26;;27148:9;27142:4;27138:20;27134:1;27123:9;27119:17;27112:47;27176:131;27302:4;27176:131;:::i;:::-;27168:139;;26895:419;;;:::o;27320:194::-;27360:4;27380:20;27398:1;27380:20;:::i;:::-;27375:25;;27414:20;27432:1;27414:20;:::i;:::-;27409:25;;27458:1;27455;27451:9;27443:17;;27482:1;27476:4;27473:11;27470:37;;;27487:18;;:::i;:::-;27470:37;27320:194;;;;:::o;27520:442::-;27669:4;27707:2;27696:9;27692:18;27684:26;;27720:71;27788:1;27777:9;27773:17;27764:6;27720:71;:::i;:::-;27801:72;27869:2;27858:9;27854:18;27845:6;27801:72;:::i;:::-;27883;27951:2;27940:9;27936:18;27927:6;27883:72;:::i;:::-;27520:442;;;;;;:::o

Swarm Source

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