ETH Price: $3,373.32 (+5.70%)
Gas: 15 Gwei

Token

NekoSensei (NESE)
 

Overview

Max Total Supply

1,400 NESE

Holders

340

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NESE
0x81ea9db63e4a750f092885b23014bc61a1d3f976
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:
NekoSensei

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-21
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract NekoSensei is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.001 ether;
  uint public          maxPerTx          = 1;
  uint public          maxPerWallet      = 1;
  uint public          totalFree         = 300;
  uint public          maxSupply         = 2800;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  using Strings for uint256;
  string public        baseExtension     = ".json";

constructor(
            string memory _name,
            string memory _symbol
    )
    ERC721A (_name, _symbol) {
    }

  function publicMint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
    }
    require(msg.sender == tx.origin,"Be yourself.");
    require(msg.value >= amt * cost,"Please send the right amount.");
    require(totalSupply() + amt < maxSupply + 1,"sold out");
    require(mintEnabled, "Minting is not live yet, hold on.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!");
    require( amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

  function ownerBatchMint(uint256 amt) external onlyOwner
  {
    require(totalSupply() + amt < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

//overwrite tokenURI

 function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }



  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c68000600a556001600b556001600c5561012c600d55610af0600e556040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506011908051906020019062000072929190620001da565b503480156200008057600080fd5b506040516200562b3803806200562b8339818101604052810190620000a6919062000308565b81818160019080519060200190620000c0929190620001da565b508060029080519060200190620000d9929190620001da565b505050620000fc620000f06200010c60201b60201c565b6200011460201b60201c565b6001600881905550505062000511565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e89062000422565b90600052602060002090601f0160209004810192826200020c576000855562000258565b82601f106200022757805160ff191683800117855562000258565b8280016001018555821562000258579182015b82811115620002575782518255916020019190600101906200023a565b5b5090506200026791906200026b565b5090565b5b80821115620002865760008160009055506001016200026c565b5090565b6000620002a16200029b84620003b6565b6200038d565b905082815260208101848484011115620002c057620002bf620004f1565b5b620002cd848285620003ec565b509392505050565b600082601f830112620002ed57620002ec620004ec565b5b8151620002ff8482602086016200028a565b91505092915050565b60008060408385031215620003225762000321620004fb565b5b600083015167ffffffffffffffff811115620003435762000342620004f6565b5b6200035185828601620002d5565b925050602083015167ffffffffffffffff811115620003755762000374620004f6565b5b6200038385828601620002d5565b9150509250929050565b600062000399620003ac565b9050620003a7828262000458565b919050565b6000604051905090565b600067ffffffffffffffff821115620003d457620003d3620004bd565b5b620003df8262000500565b9050602081019050919050565b60005b838110156200040c578082015181840152602081019050620003ef565b838111156200041c576000848401525b50505050565b600060028204905060018216806200043b57607f821691505b602082108114156200045257620004516200048e565b5b50919050565b620004638262000500565b810181811067ffffffffffffffff82111715620004855762000484620004bd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61510a80620005216000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063c6682862116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063c668286214610772578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b80639231ab2a116100fd5780639231ab2a1461068d57806395d89b41146106ca578063a035b1fe146106f5578063a22cb46514610720578063b88d4fde1461074957610246565b8063715018a6146105e25780637d55094d146105f95780638da5cb5b146106105780638db89f071461063b57806391b7f5ed1461066457610246565b8063333e44e6116101c757806355f804b31161018b57806355f804b3146104eb578063563aaf11146105145780636352211e1461053d5780636c0360eb1461057a57806370a08231146105a557610246565b8063333e44e6146104185780633ccfd60b1461044357806342842e0e1461045a578063453c2310146104835780634f6ccce7146104ae57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632db11544146103bf5780632f745c59146103db57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906137e1565b61097b565b60405161027f9190613f81565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190613f9c565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613888565b610b57565b6040516102e79190613f1a565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906137a1565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b91906143d9565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613888565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f919061368b565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613888565b610d94565b005b6103d960048036038101906103d49190613888565b610e72565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906137a1565b6110c9565b60405161040f91906143d9565b60405180910390f35b34801561042457600080fd5b5061042d6112bb565b60405161043a91906143d9565b60405180910390f35b34801561044f57600080fd5b506104586112c1565b005b34801561046657600080fd5b50610481600480360381019061047c919061368b565b611442565b005b34801561048f57600080fd5b50610498611462565b6040516104a591906143d9565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613888565b611468565b6040516104e291906143d9565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d919061383b565b6114bb565b005b34801561052057600080fd5b5061053b60048036038101906105369190613888565b61154d565b005b34801561054957600080fd5b50610564600480360381019061055f9190613888565b6115d3565b6040516105719190613f1a565b60405180910390f35b34801561058657600080fd5b5061058f6115e9565b60405161059c9190613f9c565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061361e565b611677565b6040516105d991906143d9565b60405180910390f35b3480156105ee57600080fd5b506105f7611760565b005b34801561060557600080fd5b5061060e6117e8565b005b34801561061c57600080fd5b50610625611890565b6040516106329190613f1a565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613888565b6118ba565b005b34801561067057600080fd5b5061068b60048036038101906106869190613888565b6119a5565b005b34801561069957600080fd5b506106b460048036038101906106af9190613888565b611a2b565b6040516106c191906143be565b60405180910390f35b3480156106d657600080fd5b506106df611a43565b6040516106ec9190613f9c565b60405180910390f35b34801561070157600080fd5b5061070a611ad5565b60405161071791906143d9565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613761565b611adb565b005b34801561075557600080fd5b50610770600480360381019061076b91906136de565b611c5c565b005b34801561077e57600080fd5b50610787611cb8565b6040516107949190613f9c565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613888565b611d46565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613888565b611dcc565b6040516107fa9190613f9c565b60405180910390f35b34801561080f57600080fd5b50610818611e76565b6040516108259190613f81565b60405180910390f35b34801561083a57600080fd5b50610843611e89565b60405161085091906143d9565b60405180910390f35b34801561086557600080fd5b5061086e611e8f565b60405161087b91906143d9565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a6919061361e565b611e95565b6040516108b891906143d9565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613888565b611ea7565b005b3480156108f657600080fd5b50610911600480360381019061090c919061364b565b611f2d565b60405161091e9190613f81565b60405180910390f35b34801561093357600080fd5b5061094e6004803603810190610949919061361e565b611fc1565b005b34801561095c57600080fd5b506109656120b9565b60405161097291906143d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd826120bf565b5b9050919050565b606060018054610ad49061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b009061468c565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b6282612129565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061439e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be7826115d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061425e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77612136565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0612136565b611f2d565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc9061413e565b60405180910390fd5b610cf083838361213e565b505050565b60008054905090565b610d06612136565b73ffffffffffffffffffffffffffffffffffffffff16610d24611890565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906141be565b60405180910390fd5b80600e8190555050565b610d8f8383836121f0565b505050565b610d9c612136565b73ffffffffffffffffffffffffffffffffffffffff16610dba611890565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906141be565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061435e565b60405180910390fd5b6002600881905550610e6781612730565b600160088190555050565b6000600a5490506001600d54610e8891906144ad565b82610e91610cf5565b610e9b91906144ad565b1015610ea657600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b9061429e565b60405180910390fd5b8082610f209190614534565b341015610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061405e565b60405180910390fd5b6001600e54610f7191906144ad565b82610f7a610cf5565b610f8491906144ad565b10610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb906140de565b60405180910390fd5b601060009054906101000a900460ff16611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906141de565b60405180910390fd5b600c548261102033611e95565b61102a91906144ad565b111561106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061403e565b60405180910390fd5b6001600b5461107a91906144ad565b82106110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061431e565b60405180910390fd5b6110c53383612962565b5050565b60006110d483611677565b8210611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90613fbe565b60405180910390fd5b600061111f610cf5565b905060008060005b83811015611279576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461121957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126b57868414156112625781955050505050506112b5565b83806001019450505b508080600101915050611127565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac9061433e565b60405180910390fd5b92915050565b600d5481565b6112c9612136565b73ffffffffffffffffffffffffffffffffffffffff166112e7611890565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906141be565b60405180910390fd5b60026008541415611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a9061435e565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516113b190613f05565b60006040518083038185875af1925050503d80600081146113ee576040519150601f19603f3d011682016040523d82523d6000602084013e6113f3565b606091505b5050905080611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e9061427e565b60405180910390fd5b506001600881905550565b61145d83838360405180602001604052806000815250611c5c565b505050565b600c5481565b6000611472610cf5565b82106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa9061407e565b60405180910390fd5b819050919050565b6114c3612136565b73ffffffffffffffffffffffffffffffffffffffff166114e1611890565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e906141be565b60405180910390fd5b818160099190611548929190613412565b505050565b611555612136565b73ffffffffffffffffffffffffffffffffffffffff16611573611890565b73ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906141be565b60405180910390fd5b80600d8190555050565b60006115de82612980565b600001519050919050565b600980546115f69061468c565b80601f01602080910402602001604051908101604052809291908181526020018280546116229061468c565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df9061417e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611768612136565b73ffffffffffffffffffffffffffffffffffffffff16611786611890565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d3906141be565b60405180910390fd5b6117e66000612b1a565b565b6117f0612136565b73ffffffffffffffffffffffffffffffffffffffff1661180e611890565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906141be565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118c2612136565b73ffffffffffffffffffffffffffffffffffffffff166118e0611890565b73ffffffffffffffffffffffffffffffffffffffff1614611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d906141be565b60405180910390fd5b6001600e5461194591906144ad565b8161194e610cf5565b61195891906144ad565b10611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061411e565b60405180910390fd5b6119a23382612962565b50565b6119ad612136565b73ffffffffffffffffffffffffffffffffffffffff166119cb611890565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906141be565b60405180910390fd5b80600a8190555050565b611a33613498565b611a3c82612980565b9050919050565b606060028054611a529061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7e9061468c565b8015611acb5780601f10611aa057610100808354040283529160200191611acb565b820191906000526020600020905b815481529060010190602001808311611aae57829003601f168201915b5050505050905090565b600a5481565b611ae3612136565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b489061421e565b60405180910390fd5b8060066000611b5e612136565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c0b612136565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c509190613f81565b60405180910390a35050565b611c678484846121f0565b611c7384848484612be0565b611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca9906142be565b60405180910390fd5b50505050565b60118054611cc59061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf19061468c565b8015611d3e5780601f10611d1357610100808354040283529160200191611d3e565b820191906000526020600020905b815481529060010190602001808311611d2157829003601f168201915b505050505081565b611d4e612136565b73ffffffffffffffffffffffffffffffffffffffff16611d6c611890565b73ffffffffffffffffffffffffffffffffffffffff1614611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906141be565b60405180910390fd5b80600b8190555050565b6060611dd782612129565b611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d906141fe565b60405180910390fd5b6000611e20612d77565b90506000815111611e405760405180602001604052806000815250611e6e565b80611e4a84612e09565b6011604051602001611e5e93929190613ed4565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611ea082612f6a565b9050919050565b611eaf612136565b73ffffffffffffffffffffffffffffffffffffffff16611ecd611890565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a906141be565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fc9612136565b73ffffffffffffffffffffffffffffffffffffffff16611fe7611890565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612034906141be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613fde565b60405180910390fd5b6120b681612b1a565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121fb82612980565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612222612136565b73ffffffffffffffffffffffffffffffffffffffff16148061227e5750612247612136565b73ffffffffffffffffffffffffffffffffffffffff1661226684610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229a57506122998260000151612294612136565b611f2d565b5b9050806122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d39061423e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123459061419e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b59061409e565b60405180910390fd5b6123cb8585856001613053565b6123db600084846000015161213e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126c05761261f81612129565b156126bf5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127298585856001613059565b5050505050565b6000811415612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b9061415e565b60405180910390fd5b6000805414156127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b09061401e565b60405180910390fd5b6000600f5490506000548110612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb906140fe565b60405180910390fd5b600060018383010390506000546001820111156128245760016000540390505b60008290505b81811161295257600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129455760006128a782612980565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b808060010191505061282a565b5060018101600f81905550505050565b61297c82826040518060200160405280600081525061305f565b5050565b612988613498565b61299182612129565b6129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c790613ffe565b60405180910390fd5b60008290505b60008110612ad9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aca578092505050612b15565b508080600190039150506129d6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c9061437e565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c018473ffffffffffffffffffffffffffffffffffffffff16613071565b15612d6a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2a612136565b8786866040518563ffffffff1660e01b8152600401612c4c9493929190613f35565b602060405180830381600087803b158015612c6657600080fd5b505af1925050508015612c9757506040513d601f19601f82011682018060405250810190612c94919061380e565b60015b612d1a573d8060008114612cc7576040519150601f19603f3d011682016040523d82523d6000602084013e612ccc565b606091505b50600081511415612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d09906142be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d6f565b600190505b949350505050565b606060098054612d869061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054612db29061468c565b8015612dff5780601f10612dd457610100808354040283529160200191612dff565b820191906000526020600020905b815481529060010190602001808311612de257829003601f168201915b5050505050905090565b60606000821415612e51576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f65565b600082905060005b60008214612e83578080612e6c906146ef565b915050600a82612e7c9190614503565b9150612e59565b60008167ffffffffffffffff811115612e9f57612e9e614825565b5b6040519080825280601f01601f191660200182016040528015612ed15781602001600182028036833780820191505090505b5090505b60008514612f5e57600182612eea919061458e565b9150600a85612ef99190614738565b6030612f0591906144ad565b60f81b818381518110612f1b57612f1a6147f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f579190614503565b9450612ed5565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd2906140be565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61306c8383836001613094565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561310a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613101906142de565b60405180910390fd5b600084141561314e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613145906142fe565b60405180910390fd5b61315b6000868387613053565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133f557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133e0576133a06000888488612be0565b6133df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d6906142be565b60405180910390fd5b5b81806001019250508080600101915050613329565b50806000819055505061340b6000868387613059565b5050505050565b82805461341e9061468c565b90600052602060002090601f0160209004810192826134405760008555613487565b82601f1061345957803560ff1916838001178555613487565b82800160010185558215613487579182015b8281111561348657823582559160200191906001019061346b565b5b50905061349491906134d2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134eb5760008160009055506001016134d3565b5090565b60006135026134fd84614419565b6143f4565b90508281526020810184848401111561351e5761351d614863565b5b61352984828561464a565b509392505050565b60008135905061354081615078565b92915050565b6000813590506135558161508f565b92915050565b60008135905061356a816150a6565b92915050565b60008151905061357f816150a6565b92915050565b600082601f83011261359a57613599614859565b5b81356135aa8482602086016134ef565b91505092915050565b60008083601f8401126135c9576135c8614859565b5b8235905067ffffffffffffffff8111156135e6576135e5614854565b5b6020830191508360018202830111156136025761360161485e565b5b9250929050565b600081359050613618816150bd565b92915050565b6000602082840312156136345761363361486d565b5b600061364284828501613531565b91505092915050565b600080604083850312156136625761366161486d565b5b600061367085828601613531565b925050602061368185828601613531565b9150509250929050565b6000806000606084860312156136a4576136a361486d565b5b60006136b286828701613531565b93505060206136c386828701613531565b92505060406136d486828701613609565b9150509250925092565b600080600080608085870312156136f8576136f761486d565b5b600061370687828801613531565b945050602061371787828801613531565b935050604061372887828801613609565b925050606085013567ffffffffffffffff81111561374957613748614868565b5b61375587828801613585565b91505092959194509250565b600080604083850312156137785761377761486d565b5b600061378685828601613531565b925050602061379785828601613546565b9150509250929050565b600080604083850312156137b8576137b761486d565b5b60006137c685828601613531565b92505060206137d785828601613609565b9150509250929050565b6000602082840312156137f7576137f661486d565b5b60006138058482850161355b565b91505092915050565b6000602082840312156138245761382361486d565b5b600061383284828501613570565b91505092915050565b600080602083850312156138525761385161486d565b5b600083013567ffffffffffffffff8111156138705761386f614868565b5b61387c858286016135b3565b92509250509250929050565b60006020828403121561389e5761389d61486d565b5b60006138ac84828501613609565b91505092915050565b6138be816145c2565b82525050565b6138cd816145c2565b82525050565b6138dc816145d4565b82525050565b60006138ed8261445f565b6138f78185614475565b9350613907818560208601614659565b61391081614872565b840191505092915050565b60006139268261446a565b6139308185614491565b9350613940818560208601614659565b61394981614872565b840191505092915050565b600061395f8261446a565b61396981856144a2565b9350613979818560208601614659565b80840191505092915050565b600081546139928161468c565b61399c81866144a2565b945060018216600081146139b757600181146139c8576139fb565b60ff198316865281860193506139fb565b6139d18561444a565b60005b838110156139f3578154818901526001820191506020810190506139d4565b838801955050505b50505092915050565b6000613a11602283614491565b9150613a1c82614883565b604082019050919050565b6000613a34602683614491565b9150613a3f826148d2565b604082019050919050565b6000613a57602a83614491565b9150613a6282614921565b604082019050919050565b6000613a7a601483614491565b9150613a8582614970565b602082019050919050565b6000613a9d601483614491565b9150613aa882614999565b602082019050919050565b6000613ac0601d83614491565b9150613acb826149c2565b602082019050919050565b6000613ae3602383614491565b9150613aee826149eb565b604082019050919050565b6000613b06602583614491565b9150613b1182614a3a565b604082019050919050565b6000613b29603183614491565b9150613b3482614a89565b604082019050919050565b6000613b4c600883614491565b9150613b5782614ad8565b602082019050919050565b6000613b6f601c83614491565b9150613b7a82614b01565b602082019050919050565b6000613b92600983614491565b9150613b9d82614b2a565b602082019050919050565b6000613bb5603983614491565b9150613bc082614b53565b604082019050919050565b6000613bd8601883614491565b9150613be382614ba2565b602082019050919050565b6000613bfb602b83614491565b9150613c0682614bcb565b604082019050919050565b6000613c1e602683614491565b9150613c2982614c1a565b604082019050919050565b6000613c41602083614491565b9150613c4c82614c69565b602082019050919050565b6000613c64602183614491565b9150613c6f82614c92565b604082019050919050565b6000613c87602f83614491565b9150613c9282614ce1565b604082019050919050565b6000613caa601a83614491565b9150613cb582614d30565b602082019050919050565b6000613ccd603283614491565b9150613cd882614d59565b604082019050919050565b6000613cf0602283614491565b9150613cfb82614da8565b604082019050919050565b6000613d13600083614486565b9150613d1e82614df7565b600082019050919050565b6000613d36601083614491565b9150613d4182614dfa565b602082019050919050565b6000613d59600c83614491565b9150613d6482614e23565b602082019050919050565b6000613d7c603383614491565b9150613d8782614e4c565b604082019050919050565b6000613d9f602183614491565b9150613daa82614e9b565b604082019050919050565b6000613dc2602883614491565b9150613dcd82614eea565b604082019050919050565b6000613de5601383614491565b9150613df082614f39565b602082019050919050565b6000613e08602e83614491565b9150613e1382614f62565b604082019050919050565b6000613e2b601f83614491565b9150613e3682614fb1565b602082019050919050565b6000613e4e602f83614491565b9150613e5982614fda565b604082019050919050565b6000613e71602d83614491565b9150613e7c82615029565b604082019050919050565b604082016000820151613e9d60008501826138b5565b506020820151613eb06020850182613ec5565b50505050565b613ebf8161462c565b82525050565b613ece81614636565b82525050565b6000613ee08286613954565b9150613eec8285613954565b9150613ef88284613985565b9150819050949350505050565b6000613f1082613d06565b9150819050919050565b6000602082019050613f2f60008301846138c4565b92915050565b6000608082019050613f4a60008301876138c4565b613f5760208301866138c4565b613f646040830185613eb6565b8181036060830152613f7681846138e2565b905095945050505050565b6000602082019050613f9660008301846138d3565b92915050565b60006020820190508181036000830152613fb6818461391b565b905092915050565b60006020820190508181036000830152613fd781613a04565b9050919050565b60006020820190508181036000830152613ff781613a27565b9050919050565b6000602082019050818103600083015261401781613a4a565b9050919050565b6000602082019050818103600083015261403781613a6d565b9050919050565b6000602082019050818103600083015261405781613a90565b9050919050565b6000602082019050818103600083015261407781613ab3565b9050919050565b6000602082019050818103600083015261409781613ad6565b9050919050565b600060208201905081810360008301526140b781613af9565b9050919050565b600060208201905081810360008301526140d781613b1c565b9050919050565b600060208201905081810360008301526140f781613b3f565b9050919050565b6000602082019050818103600083015261411781613b62565b9050919050565b6000602082019050818103600083015261413781613b85565b9050919050565b6000602082019050818103600083015261415781613ba8565b9050919050565b6000602082019050818103600083015261417781613bcb565b9050919050565b6000602082019050818103600083015261419781613bee565b9050919050565b600060208201905081810360008301526141b781613c11565b9050919050565b600060208201905081810360008301526141d781613c34565b9050919050565b600060208201905081810360008301526141f781613c57565b9050919050565b6000602082019050818103600083015261421781613c7a565b9050919050565b6000602082019050818103600083015261423781613c9d565b9050919050565b6000602082019050818103600083015261425781613cc0565b9050919050565b6000602082019050818103600083015261427781613ce3565b9050919050565b6000602082019050818103600083015261429781613d29565b9050919050565b600060208201905081810360008301526142b781613d4c565b9050919050565b600060208201905081810360008301526142d781613d6f565b9050919050565b600060208201905081810360008301526142f781613d92565b9050919050565b6000602082019050818103600083015261431781613db5565b9050919050565b6000602082019050818103600083015261433781613dd8565b9050919050565b6000602082019050818103600083015261435781613dfb565b9050919050565b6000602082019050818103600083015261437781613e1e565b9050919050565b6000602082019050818103600083015261439781613e41565b9050919050565b600060208201905081810360008301526143b781613e64565b9050919050565b60006040820190506143d36000830184613e87565b92915050565b60006020820190506143ee6000830184613eb6565b92915050565b60006143fe61440f565b905061440a82826146be565b919050565b6000604051905090565b600067ffffffffffffffff82111561443457614433614825565b5b61443d82614872565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144b88261462c565b91506144c38361462c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144f8576144f7614769565b5b828201905092915050565b600061450e8261462c565b91506145198361462c565b92508261452957614528614798565b5b828204905092915050565b600061453f8261462c565b915061454a8361462c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561458357614582614769565b5b828202905092915050565b60006145998261462c565b91506145a48361462c565b9250828210156145b7576145b6614769565b5b828203905092915050565b60006145cd8261460c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561467757808201518184015260208101905061465c565b83811115614686576000848401525b50505050565b600060028204905060018216806146a457607f821691505b602082108114156146b8576146b76147c7565b5b50919050565b6146c782614872565b810181811067ffffffffffffffff821117156146e6576146e5614825565b5b80604052505050565b60006146fa8261462c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472d5761472c614769565b5b600182019050919050565b60006147438261462c565b915061474e8361462c565b92508261475e5761475d614798565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f506c656173652073656e642074686520726967687420616d6f756e742e000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f426520796f757273656c662e0000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b615081816145c2565b811461508c57600080fd5b50565b615098816145d4565b81146150a357600080fd5b50565b6150af816145e0565b81146150ba57600080fd5b50565b6150c68161462c565b81146150d157600080fd5b5056fea26469706673582212201dfdbca694ecfee75a6c77e9a6fb2fbd620ba61fd1086ab326feb6d302e76fc464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a4e656b6f53656e7365690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e45534500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063c6682862116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063c668286214610772578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b80639231ab2a116100fd5780639231ab2a1461068d57806395d89b41146106ca578063a035b1fe146106f5578063a22cb46514610720578063b88d4fde1461074957610246565b8063715018a6146105e25780637d55094d146105f95780638da5cb5b146106105780638db89f071461063b57806391b7f5ed1461066457610246565b8063333e44e6116101c757806355f804b31161018b57806355f804b3146104eb578063563aaf11146105145780636352211e1461053d5780636c0360eb1461057a57806370a08231146105a557610246565b8063333e44e6146104185780633ccfd60b1461044357806342842e0e1461045a578063453c2310146104835780634f6ccce7146104ae57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632db11544146103bf5780632f745c59146103db57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906137e1565b61097b565b60405161027f9190613f81565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190613f9c565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613888565b610b57565b6040516102e79190613f1a565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906137a1565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b91906143d9565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613888565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f919061368b565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613888565b610d94565b005b6103d960048036038101906103d49190613888565b610e72565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906137a1565b6110c9565b60405161040f91906143d9565b60405180910390f35b34801561042457600080fd5b5061042d6112bb565b60405161043a91906143d9565b60405180910390f35b34801561044f57600080fd5b506104586112c1565b005b34801561046657600080fd5b50610481600480360381019061047c919061368b565b611442565b005b34801561048f57600080fd5b50610498611462565b6040516104a591906143d9565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613888565b611468565b6040516104e291906143d9565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d919061383b565b6114bb565b005b34801561052057600080fd5b5061053b60048036038101906105369190613888565b61154d565b005b34801561054957600080fd5b50610564600480360381019061055f9190613888565b6115d3565b6040516105719190613f1a565b60405180910390f35b34801561058657600080fd5b5061058f6115e9565b60405161059c9190613f9c565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061361e565b611677565b6040516105d991906143d9565b60405180910390f35b3480156105ee57600080fd5b506105f7611760565b005b34801561060557600080fd5b5061060e6117e8565b005b34801561061c57600080fd5b50610625611890565b6040516106329190613f1a565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613888565b6118ba565b005b34801561067057600080fd5b5061068b60048036038101906106869190613888565b6119a5565b005b34801561069957600080fd5b506106b460048036038101906106af9190613888565b611a2b565b6040516106c191906143be565b60405180910390f35b3480156106d657600080fd5b506106df611a43565b6040516106ec9190613f9c565b60405180910390f35b34801561070157600080fd5b5061070a611ad5565b60405161071791906143d9565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613761565b611adb565b005b34801561075557600080fd5b50610770600480360381019061076b91906136de565b611c5c565b005b34801561077e57600080fd5b50610787611cb8565b6040516107949190613f9c565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613888565b611d46565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613888565b611dcc565b6040516107fa9190613f9c565b60405180910390f35b34801561080f57600080fd5b50610818611e76565b6040516108259190613f81565b60405180910390f35b34801561083a57600080fd5b50610843611e89565b60405161085091906143d9565b60405180910390f35b34801561086557600080fd5b5061086e611e8f565b60405161087b91906143d9565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a6919061361e565b611e95565b6040516108b891906143d9565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613888565b611ea7565b005b3480156108f657600080fd5b50610911600480360381019061090c919061364b565b611f2d565b60405161091e9190613f81565b60405180910390f35b34801561093357600080fd5b5061094e6004803603810190610949919061361e565b611fc1565b005b34801561095c57600080fd5b506109656120b9565b60405161097291906143d9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd826120bf565b5b9050919050565b606060018054610ad49061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b009061468c565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b6282612129565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061439e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be7826115d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061425e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77612136565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0612136565b611f2d565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc9061413e565b60405180910390fd5b610cf083838361213e565b505050565b60008054905090565b610d06612136565b73ffffffffffffffffffffffffffffffffffffffff16610d24611890565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906141be565b60405180910390fd5b80600e8190555050565b610d8f8383836121f0565b505050565b610d9c612136565b73ffffffffffffffffffffffffffffffffffffffff16610dba611890565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906141be565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061435e565b60405180910390fd5b6002600881905550610e6781612730565b600160088190555050565b6000600a5490506001600d54610e8891906144ad565b82610e91610cf5565b610e9b91906144ad565b1015610ea657600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b9061429e565b60405180910390fd5b8082610f209190614534565b341015610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061405e565b60405180910390fd5b6001600e54610f7191906144ad565b82610f7a610cf5565b610f8491906144ad565b10610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb906140de565b60405180910390fd5b601060009054906101000a900460ff16611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906141de565b60405180910390fd5b600c548261102033611e95565b61102a91906144ad565b111561106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061403e565b60405180910390fd5b6001600b5461107a91906144ad565b82106110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061431e565b60405180910390fd5b6110c53383612962565b5050565b60006110d483611677565b8210611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c90613fbe565b60405180910390fd5b600061111f610cf5565b905060008060005b83811015611279576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461121957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126b57868414156112625781955050505050506112b5565b83806001019450505b508080600101915050611127565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac9061433e565b60405180910390fd5b92915050565b600d5481565b6112c9612136565b73ffffffffffffffffffffffffffffffffffffffff166112e7611890565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906141be565b60405180910390fd5b60026008541415611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a9061435e565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516113b190613f05565b60006040518083038185875af1925050503d80600081146113ee576040519150601f19603f3d011682016040523d82523d6000602084013e6113f3565b606091505b5050905080611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e9061427e565b60405180910390fd5b506001600881905550565b61145d83838360405180602001604052806000815250611c5c565b505050565b600c5481565b6000611472610cf5565b82106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa9061407e565b60405180910390fd5b819050919050565b6114c3612136565b73ffffffffffffffffffffffffffffffffffffffff166114e1611890565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e906141be565b60405180910390fd5b818160099190611548929190613412565b505050565b611555612136565b73ffffffffffffffffffffffffffffffffffffffff16611573611890565b73ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906141be565b60405180910390fd5b80600d8190555050565b60006115de82612980565b600001519050919050565b600980546115f69061468c565b80601f01602080910402602001604051908101604052809291908181526020018280546116229061468c565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df9061417e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611768612136565b73ffffffffffffffffffffffffffffffffffffffff16611786611890565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d3906141be565b60405180910390fd5b6117e66000612b1a565b565b6117f0612136565b73ffffffffffffffffffffffffffffffffffffffff1661180e611890565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906141be565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118c2612136565b73ffffffffffffffffffffffffffffffffffffffff166118e0611890565b73ffffffffffffffffffffffffffffffffffffffff1614611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d906141be565b60405180910390fd5b6001600e5461194591906144ad565b8161194e610cf5565b61195891906144ad565b10611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061411e565b60405180910390fd5b6119a23382612962565b50565b6119ad612136565b73ffffffffffffffffffffffffffffffffffffffff166119cb611890565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906141be565b60405180910390fd5b80600a8190555050565b611a33613498565b611a3c82612980565b9050919050565b606060028054611a529061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7e9061468c565b8015611acb5780601f10611aa057610100808354040283529160200191611acb565b820191906000526020600020905b815481529060010190602001808311611aae57829003601f168201915b5050505050905090565b600a5481565b611ae3612136565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b489061421e565b60405180910390fd5b8060066000611b5e612136565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c0b612136565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c509190613f81565b60405180910390a35050565b611c678484846121f0565b611c7384848484612be0565b611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca9906142be565b60405180910390fd5b50505050565b60118054611cc59061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf19061468c565b8015611d3e5780601f10611d1357610100808354040283529160200191611d3e565b820191906000526020600020905b815481529060010190602001808311611d2157829003601f168201915b505050505081565b611d4e612136565b73ffffffffffffffffffffffffffffffffffffffff16611d6c611890565b73ffffffffffffffffffffffffffffffffffffffff1614611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906141be565b60405180910390fd5b80600b8190555050565b6060611dd782612129565b611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d906141fe565b60405180910390fd5b6000611e20612d77565b90506000815111611e405760405180602001604052806000815250611e6e565b80611e4a84612e09565b6011604051602001611e5e93929190613ed4565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611ea082612f6a565b9050919050565b611eaf612136565b73ffffffffffffffffffffffffffffffffffffffff16611ecd611890565b73ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a906141be565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fc9612136565b73ffffffffffffffffffffffffffffffffffffffff16611fe7611890565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612034906141be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613fde565b60405180910390fd5b6120b681612b1a565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121fb82612980565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612222612136565b73ffffffffffffffffffffffffffffffffffffffff16148061227e5750612247612136565b73ffffffffffffffffffffffffffffffffffffffff1661226684610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229a57506122998260000151612294612136565b611f2d565b5b9050806122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d39061423e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461234e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123459061419e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b59061409e565b60405180910390fd5b6123cb8585856001613053565b6123db600084846000015161213e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126c05761261f81612129565b156126bf5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127298585856001613059565b5050505050565b6000811415612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b9061415e565b60405180910390fd5b6000805414156127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b09061401e565b60405180910390fd5b6000600f5490506000548110612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb906140fe565b60405180910390fd5b600060018383010390506000546001820111156128245760016000540390505b60008290505b81811161295257600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129455760006128a782612980565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b808060010191505061282a565b5060018101600f81905550505050565b61297c82826040518060200160405280600081525061305f565b5050565b612988613498565b61299182612129565b6129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c790613ffe565b60405180910390fd5b60008290505b60008110612ad9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aca578092505050612b15565b508080600190039150506129d6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c9061437e565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c018473ffffffffffffffffffffffffffffffffffffffff16613071565b15612d6a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2a612136565b8786866040518563ffffffff1660e01b8152600401612c4c9493929190613f35565b602060405180830381600087803b158015612c6657600080fd5b505af1925050508015612c9757506040513d601f19601f82011682018060405250810190612c94919061380e565b60015b612d1a573d8060008114612cc7576040519150601f19603f3d011682016040523d82523d6000602084013e612ccc565b606091505b50600081511415612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d09906142be565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d6f565b600190505b949350505050565b606060098054612d869061468c565b80601f0160208091040260200160405190810160405280929190818152602001828054612db29061468c565b8015612dff5780601f10612dd457610100808354040283529160200191612dff565b820191906000526020600020905b815481529060010190602001808311612de257829003601f168201915b5050505050905090565b60606000821415612e51576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f65565b600082905060005b60008214612e83578080612e6c906146ef565b915050600a82612e7c9190614503565b9150612e59565b60008167ffffffffffffffff811115612e9f57612e9e614825565b5b6040519080825280601f01601f191660200182016040528015612ed15781602001600182028036833780820191505090505b5090505b60008514612f5e57600182612eea919061458e565b9150600a85612ef99190614738565b6030612f0591906144ad565b60f81b818381518110612f1b57612f1a6147f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f579190614503565b9450612ed5565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd2906140be565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61306c8383836001613094565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561310a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613101906142de565b60405180910390fd5b600084141561314e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613145906142fe565b60405180910390fd5b61315b6000868387613053565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133f557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133e0576133a06000888488612be0565b6133df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d6906142be565b60405180910390fd5b5b81806001019250508080600101915050613329565b50806000819055505061340b6000868387613059565b5050505050565b82805461341e9061468c565b90600052602060002090601f0160209004810192826134405760008555613487565b82601f1061345957803560ff1916838001178555613487565b82800160010185558215613487579182015b8281111561348657823582559160200191906001019061346b565b5b50905061349491906134d2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134eb5760008160009055506001016134d3565b5090565b60006135026134fd84614419565b6143f4565b90508281526020810184848401111561351e5761351d614863565b5b61352984828561464a565b509392505050565b60008135905061354081615078565b92915050565b6000813590506135558161508f565b92915050565b60008135905061356a816150a6565b92915050565b60008151905061357f816150a6565b92915050565b600082601f83011261359a57613599614859565b5b81356135aa8482602086016134ef565b91505092915050565b60008083601f8401126135c9576135c8614859565b5b8235905067ffffffffffffffff8111156135e6576135e5614854565b5b6020830191508360018202830111156136025761360161485e565b5b9250929050565b600081359050613618816150bd565b92915050565b6000602082840312156136345761363361486d565b5b600061364284828501613531565b91505092915050565b600080604083850312156136625761366161486d565b5b600061367085828601613531565b925050602061368185828601613531565b9150509250929050565b6000806000606084860312156136a4576136a361486d565b5b60006136b286828701613531565b93505060206136c386828701613531565b92505060406136d486828701613609565b9150509250925092565b600080600080608085870312156136f8576136f761486d565b5b600061370687828801613531565b945050602061371787828801613531565b935050604061372887828801613609565b925050606085013567ffffffffffffffff81111561374957613748614868565b5b61375587828801613585565b91505092959194509250565b600080604083850312156137785761377761486d565b5b600061378685828601613531565b925050602061379785828601613546565b9150509250929050565b600080604083850312156137b8576137b761486d565b5b60006137c685828601613531565b92505060206137d785828601613609565b9150509250929050565b6000602082840312156137f7576137f661486d565b5b60006138058482850161355b565b91505092915050565b6000602082840312156138245761382361486d565b5b600061383284828501613570565b91505092915050565b600080602083850312156138525761385161486d565b5b600083013567ffffffffffffffff8111156138705761386f614868565b5b61387c858286016135b3565b92509250509250929050565b60006020828403121561389e5761389d61486d565b5b60006138ac84828501613609565b91505092915050565b6138be816145c2565b82525050565b6138cd816145c2565b82525050565b6138dc816145d4565b82525050565b60006138ed8261445f565b6138f78185614475565b9350613907818560208601614659565b61391081614872565b840191505092915050565b60006139268261446a565b6139308185614491565b9350613940818560208601614659565b61394981614872565b840191505092915050565b600061395f8261446a565b61396981856144a2565b9350613979818560208601614659565b80840191505092915050565b600081546139928161468c565b61399c81866144a2565b945060018216600081146139b757600181146139c8576139fb565b60ff198316865281860193506139fb565b6139d18561444a565b60005b838110156139f3578154818901526001820191506020810190506139d4565b838801955050505b50505092915050565b6000613a11602283614491565b9150613a1c82614883565b604082019050919050565b6000613a34602683614491565b9150613a3f826148d2565b604082019050919050565b6000613a57602a83614491565b9150613a6282614921565b604082019050919050565b6000613a7a601483614491565b9150613a8582614970565b602082019050919050565b6000613a9d601483614491565b9150613aa882614999565b602082019050919050565b6000613ac0601d83614491565b9150613acb826149c2565b602082019050919050565b6000613ae3602383614491565b9150613aee826149eb565b604082019050919050565b6000613b06602583614491565b9150613b1182614a3a565b604082019050919050565b6000613b29603183614491565b9150613b3482614a89565b604082019050919050565b6000613b4c600883614491565b9150613b5782614ad8565b602082019050919050565b6000613b6f601c83614491565b9150613b7a82614b01565b602082019050919050565b6000613b92600983614491565b9150613b9d82614b2a565b602082019050919050565b6000613bb5603983614491565b9150613bc082614b53565b604082019050919050565b6000613bd8601883614491565b9150613be382614ba2565b602082019050919050565b6000613bfb602b83614491565b9150613c0682614bcb565b604082019050919050565b6000613c1e602683614491565b9150613c2982614c1a565b604082019050919050565b6000613c41602083614491565b9150613c4c82614c69565b602082019050919050565b6000613c64602183614491565b9150613c6f82614c92565b604082019050919050565b6000613c87602f83614491565b9150613c9282614ce1565b604082019050919050565b6000613caa601a83614491565b9150613cb582614d30565b602082019050919050565b6000613ccd603283614491565b9150613cd882614d59565b604082019050919050565b6000613cf0602283614491565b9150613cfb82614da8565b604082019050919050565b6000613d13600083614486565b9150613d1e82614df7565b600082019050919050565b6000613d36601083614491565b9150613d4182614dfa565b602082019050919050565b6000613d59600c83614491565b9150613d6482614e23565b602082019050919050565b6000613d7c603383614491565b9150613d8782614e4c565b604082019050919050565b6000613d9f602183614491565b9150613daa82614e9b565b604082019050919050565b6000613dc2602883614491565b9150613dcd82614eea565b604082019050919050565b6000613de5601383614491565b9150613df082614f39565b602082019050919050565b6000613e08602e83614491565b9150613e1382614f62565b604082019050919050565b6000613e2b601f83614491565b9150613e3682614fb1565b602082019050919050565b6000613e4e602f83614491565b9150613e5982614fda565b604082019050919050565b6000613e71602d83614491565b9150613e7c82615029565b604082019050919050565b604082016000820151613e9d60008501826138b5565b506020820151613eb06020850182613ec5565b50505050565b613ebf8161462c565b82525050565b613ece81614636565b82525050565b6000613ee08286613954565b9150613eec8285613954565b9150613ef88284613985565b9150819050949350505050565b6000613f1082613d06565b9150819050919050565b6000602082019050613f2f60008301846138c4565b92915050565b6000608082019050613f4a60008301876138c4565b613f5760208301866138c4565b613f646040830185613eb6565b8181036060830152613f7681846138e2565b905095945050505050565b6000602082019050613f9660008301846138d3565b92915050565b60006020820190508181036000830152613fb6818461391b565b905092915050565b60006020820190508181036000830152613fd781613a04565b9050919050565b60006020820190508181036000830152613ff781613a27565b9050919050565b6000602082019050818103600083015261401781613a4a565b9050919050565b6000602082019050818103600083015261403781613a6d565b9050919050565b6000602082019050818103600083015261405781613a90565b9050919050565b6000602082019050818103600083015261407781613ab3565b9050919050565b6000602082019050818103600083015261409781613ad6565b9050919050565b600060208201905081810360008301526140b781613af9565b9050919050565b600060208201905081810360008301526140d781613b1c565b9050919050565b600060208201905081810360008301526140f781613b3f565b9050919050565b6000602082019050818103600083015261411781613b62565b9050919050565b6000602082019050818103600083015261413781613b85565b9050919050565b6000602082019050818103600083015261415781613ba8565b9050919050565b6000602082019050818103600083015261417781613bcb565b9050919050565b6000602082019050818103600083015261419781613bee565b9050919050565b600060208201905081810360008301526141b781613c11565b9050919050565b600060208201905081810360008301526141d781613c34565b9050919050565b600060208201905081810360008301526141f781613c57565b9050919050565b6000602082019050818103600083015261421781613c7a565b9050919050565b6000602082019050818103600083015261423781613c9d565b9050919050565b6000602082019050818103600083015261425781613cc0565b9050919050565b6000602082019050818103600083015261427781613ce3565b9050919050565b6000602082019050818103600083015261429781613d29565b9050919050565b600060208201905081810360008301526142b781613d4c565b9050919050565b600060208201905081810360008301526142d781613d6f565b9050919050565b600060208201905081810360008301526142f781613d92565b9050919050565b6000602082019050818103600083015261431781613db5565b9050919050565b6000602082019050818103600083015261433781613dd8565b9050919050565b6000602082019050818103600083015261435781613dfb565b9050919050565b6000602082019050818103600083015261437781613e1e565b9050919050565b6000602082019050818103600083015261439781613e41565b9050919050565b600060208201905081810360008301526143b781613e64565b9050919050565b60006040820190506143d36000830184613e87565b92915050565b60006020820190506143ee6000830184613eb6565b92915050565b60006143fe61440f565b905061440a82826146be565b919050565b6000604051905090565b600067ffffffffffffffff82111561443457614433614825565b5b61443d82614872565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144b88261462c565b91506144c38361462c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144f8576144f7614769565b5b828201905092915050565b600061450e8261462c565b91506145198361462c565b92508261452957614528614798565b5b828204905092915050565b600061453f8261462c565b915061454a8361462c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561458357614582614769565b5b828202905092915050565b60006145998261462c565b91506145a48361462c565b9250828210156145b7576145b6614769565b5b828203905092915050565b60006145cd8261460c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561467757808201518184015260208101905061465c565b83811115614686576000848401525b50505050565b600060028204905060018216806146a457607f821691505b602082108114156146b8576146b76147c7565b5b50919050565b6146c782614872565b810181811067ffffffffffffffff821117156146e6576146e5614825565b5b80604052505050565b60006146fa8261462c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472d5761472c614769565b5b600182019050919050565b60006147438261462c565b915061474e8361462c565b92508261475e5761475d614798565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f506c656173652073656e642074686520726967687420616d6f756e742e000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f426520796f757273656c662e0000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b615081816145c2565b811461508c57600080fd5b50565b615098816145d4565b81146150a357600080fd5b50565b6150af816145e0565b81146150ba57600080fd5b50565b6150c68161462c565b81146150d157600080fd5b5056fea26469706673582212201dfdbca694ecfee75a6c77e9a6fb2fbd620ba61fd1086ab326feb6d302e76fc464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a4e656b6f53656e7365690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e45534500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NekoSensei
Arg [1] : _symbol (string): NESE

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 4e656b6f53656e73656900000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4e45534500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50222:4473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37082:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38968:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40530:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40051:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52346:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41406:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52740:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50874:583;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36003:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50470:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52558:176;;;;;;;;;;;;;:::i;:::-;;41647:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50423:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35516:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51836:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52026:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38777:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50286:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37518:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10474:103;;;;;;;;;;;;;:::i;:::-;;51632:85;;;;;;;;;;;;;:::i;:::-;;9823:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51463:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51938:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52864:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39137:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50319:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40816:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41903:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50688:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52130:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53025:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50619:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50519:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50569;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51723:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52230:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41175:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10732:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50376:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37082:372;37184:4;37236:25;37221:40;;;:11;:40;;;;:105;;;;37293:33;37278:48;;;:11;:48;;;;37221:105;:172;;;;37358:35;37343:50;;;:11;:50;;;;37221:172;:225;;;;37410:36;37434:11;37410:23;:36::i;:::-;37221:225;37201:245;;37082:372;;;:::o;38968:100::-;39022:13;39055:5;39048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38968:100;:::o;40530:214::-;40598:7;40626:16;40634:7;40626;:16::i;:::-;40618:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40712:15;:24;40728:7;40712:24;;;;;;;;;;;;;;;;;;;;;40705:31;;40530:214;;;:::o;40051:413::-;40124:13;40140:24;40156:7;40140:15;:24::i;:::-;40124:40;;40189:5;40183:11;;:2;:11;;;;40175:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40284:5;40268:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40293:37;40310:5;40317:12;:10;:12::i;:::-;40293:16;:37::i;:::-;40268:62;40246:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40428:28;40437:2;40441:7;40450:5;40428:8;:28::i;:::-;40113:351;40051:413;;:::o;35339:100::-;35392:7;35419:12;;35412:19;;35339:100;:::o;52346:98::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52428:10:::1;52416:9;:22;;;;52346:98:::0;:::o;41406:170::-;41540:28;41550:4;41556:2;41560:7;41540:9;:28::i;:::-;41406:170;;;:::o;52740:118::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4797:1:::1;5395:7;;:19;;5387:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4797:1;5528:7;:18;;;;52824:28:::2;52843:8;52824:18;:28::i;:::-;4753:1:::1;5707:7;:22;;;;52740:118:::0;:::o;50874:583::-;50934:9;50946:5;;50934:17;;50995:1;50983:9;;:13;;;;:::i;:::-;50977:3;50961:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50958:65;;;51014:1;51007:8;;50958:65;51051:9;51037:23;;:10;:23;;;51029:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;51110:4;51104:3;:10;;;;:::i;:::-;51091:9;:23;;51083:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51196:1;51184:9;;:13;;;;:::i;:::-;51178:3;51162:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51154:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51224:11;;;;;;;;;;;51216:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51322:12;;51315:3;51288:24;51301:10;51288:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51280:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51391:1;51380:8;;:12;;;;:::i;:::-;51374:3;:18;51365:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51425:26;51435:10;51447:3;51425:9;:26::i;:::-;50927:530;50874:583;:::o;36003:1007::-;36092:7;36128:16;36138:5;36128:9;:16::i;:::-;36120:5;:24;36112:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36194:22;36219:13;:11;:13::i;:::-;36194:38;;36243:19;36273:25;36462:9;36457:466;36477:14;36473:1;:18;36457:466;;;36517:31;36551:11;:14;36563:1;36551:14;;;;;;;;;;;36517:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36614:1;36588:28;;:9;:14;;;:28;;;36584:111;;36661:9;:14;;;36641:34;;36584:111;36738:5;36717:26;;:17;:26;;;36713:195;;;36787:5;36772:11;:20;36768:85;;;36828:1;36821:8;;;;;;;;;36768:85;36875:13;;;;;;;36713:195;36498:425;36493:3;;;;;;;36457:466;;;;36946:56;;;;;;;;;;:::i;:::-;;;;;;;;36003:1007;;;;;:::o;50470:44::-;;;;:::o;52558:176::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4797:1:::1;5395:7;;:19;;5387:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4797:1;5528:7;:18;;;;52618:12:::2;52636:10;:15;;52659:21;52636:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52617:68;;;52700:7;52692:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52610:124;4753:1:::1;5707:7;:22;;;;52558:176::o:0;41647:185::-;41785:39;41802:4;41808:2;41812:7;41785:39;;;;;;;;;;;;:16;:39::i;:::-;41647:185;;;:::o;50423:42::-;;;;:::o;35516:187::-;35583:7;35619:13;:11;:13::i;:::-;35611:5;:21;35603:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35690:5;35683:12;;35516:187;;;:::o;51836:96::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51918:8:::1;;51908:7;:18;;;;;;;:::i;:::-;;51836:96:::0;;:::o;52026:98::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52108:10:::1;52096:9;:22;;;;52026:98:::0;:::o;38777:124::-;38841:7;38868:20;38880:7;38868:11;:20::i;:::-;:25;;;38861:32;;38777:124;;;:::o;50286:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37518:221::-;37582:7;37627:1;37610:19;;:5;:19;;;;37602:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37703:12;:19;37716:5;37703:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37695:36;;37688:43;;37518:221;;;:::o;10474:103::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10539:30:::1;10566:1;10539:18;:30::i;:::-;10474:103::o:0;51632:85::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51700:11:::1;;;;;;;;;;;51699:12;51685:11;;:26;;;;;;;;;;;;;;;;;;51632:85::o:0;9823:87::-;9869:7;9896:6;;;;;;;;;;;9889:13;;9823:87;:::o;51463:163::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51571:1:::1;51559:9;;:13;;;;:::i;:::-;51553:3;51537:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51529:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51594:26;51604:10;51616:3;51594:9;:26::i;:::-;51463:163:::0;:::o;51938:82::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52008:6:::1;52000:5;:14;;;;51938:82:::0;:::o;52864:132::-;52930:21;;:::i;:::-;52970:20;52982:7;52970:11;:20::i;:::-;52963:27;;52864:132;;;:::o;39137:104::-;39193:13;39226:7;39219:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39137:104;:::o;50319:52::-;;;;:::o;40816:288::-;40923:12;:10;:12::i;:::-;40911:24;;:8;:24;;;;40903:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41024:8;40979:18;:32;40998:12;:10;:12::i;:::-;40979:32;;;;;;;;;;;;;;;:42;41012:8;40979:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41077:8;41048:48;;41063:12;:10;:12::i;:::-;41048:48;;;41087:8;41048:48;;;;;;:::i;:::-;;;;;;;;40816:288;;:::o;41903:355::-;42062:28;42072:4;42078:2;42082:7;42062:9;:28::i;:::-;42123:48;42146:4;42152:2;42156:7;42165:5;42123:22;:48::i;:::-;42101:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41903:355;;;;:::o;50688:48::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52130:94::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52209:9:::1;52198:8;:20;;;;52130:94:::0;:::o;53025:427::-;53123:13;53164:16;53172:7;53164;:16::i;:::-;53148:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;53258:28;53289:10;:8;:10::i;:::-;53258:41;;53344:1;53319:14;53313:28;:32;:133;;;;;;;;;;;;;;;;;53381:14;53397:18;:7;:16;:18::i;:::-;53417:13;53364:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53313:133;53306:140;;;53025:427;;;:::o;50619:32::-;;;;;;;;;;;;;:::o;50519:45::-;;;;:::o;50569:::-;;;;:::o;51723:107::-;51781:7;51804:20;51818:5;51804:13;:20::i;:::-;51797:27;;51723:107;;;:::o;52230:110::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52321:13:::1;52306:12;:28;;;;52230:110:::0;:::o;41175:164::-;41272:4;41296:18;:25;41315:5;41296:25;;;;;;;;;;;;;;;:35;41322:8;41296:35;;;;;;;;;;;;;;;;;;;;;;;;;41289:42;;41175:164;;;;:::o;10732:201::-;10054:12;:10;:12::i;:::-;10043:23;;:7;:5;:7::i;:::-;:23;;;10035:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10841:1:::1;10821:22;;:8;:22;;;;10813:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10897:28;10916:8;10897:18;:28::i;:::-;10732:201:::0;:::o;50376:42::-;;;;:::o;26602:157::-;26687:4;26726:25;26711:40;;;:11;:40;;;;26704:47;;26602:157;;;:::o;42513:111::-;42570:4;42604:12;;42594:7;:22;42587:29;;42513:111;;;:::o;8547:98::-;8600:7;8627:10;8620:17;;8547:98;:::o;47433:196::-;47575:2;47548:15;:24;47564:7;47548:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47613:7;47609:2;47593:28;;47602:5;47593:28;;;;;;;;;;;;47433:196;;;:::o;45313:2002::-;45428:35;45466:20;45478:7;45466:11;:20::i;:::-;45428:58;;45499:22;45541:13;:18;;;45525:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45600:12;:10;:12::i;:::-;45576:36;;:20;45588:7;45576:11;:20::i;:::-;:36;;;45525:87;:154;;;;45629:50;45646:13;:18;;;45666:12;:10;:12::i;:::-;45629:16;:50::i;:::-;45525:154;45499:181;;45701:17;45693:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45816:4;45794:26;;:13;:18;;;:26;;;45786:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45896:1;45882:16;;:2;:16;;;;45874:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45953:43;45975:4;45981:2;45985:7;45994:1;45953:21;:43::i;:::-;46061:49;46078:1;46082:7;46091:13;:18;;;46061:8;:49::i;:::-;46436:1;46406:12;:18;46419:4;46406:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46480:1;46452:12;:16;46465:2;46452:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46526:2;46498:11;:20;46510:7;46498:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46588:15;46543:11;:20;46555:7;46543:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46856:19;46888:1;46878:7;:11;46856:33;;46949:1;46908:43;;:11;:24;46920:11;46908:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46904:295;;;46976:20;46984:11;46976:7;:20::i;:::-;46972:212;;;47053:13;:18;;;47021:11;:24;47033:11;47021:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47136:13;:28;;;47094:11;:24;47106:11;47094:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46972:212;46904:295;46381:829;47246:7;47242:2;47227:27;;47236:4;47227:27;;;;;;;;;;;;47265:42;47286:4;47292:2;47296:7;47305:1;47265:20;:42::i;:::-;45417:1898;;45313:2002;;;:::o;53562:1130::-;53646:1;53634:8;:13;;53626:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53709:1;53693:12;;:17;;53685:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53744:33;53780:24;;53744:60;;53849:12;;53821:25;:40;53813:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54032:16;54090:1;54079:8;54051:25;:36;:40;54032:59;;54184:12;;54180:1;54169:8;:12;:27;54165:91;;;54241:1;54226:12;;:16;54215:27;;54165:91;54275:9;54287:25;54275:37;;54270:354;54319:8;54314:1;:13;54270:354;;54386:1;54355:33;;:11;:14;54367:1;54355:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;54351:260;;;54411:31;54445:14;54457:1;54445:11;:14::i;:::-;54411:48;;54502:9;:14;;;54480:11;:14;54492:1;54480:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;54569:9;:24;;;54537:11;:14;54549:1;54537:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;54390:221;54351:260;54329:3;;;;;;;54270:354;;;;54676:1;54665:8;:12;54638:24;:39;;;;54009:678;53617:1075;53562:1130;:::o;42632:104::-;42701:27;42711:2;42715:8;42701:27;;;;;;;;;;;;:9;:27::i;:::-;42632:104;;:::o;38178:537::-;38239:21;;:::i;:::-;38281:16;38289:7;38281;:16::i;:::-;38273:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38387:12;38402:7;38387:22;;38382:245;38419:1;38411:4;:9;38382:245;;38449:31;38483:11;:17;38495:4;38483:17;;;;;;;;;;;38449:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38549:1;38523:28;;:9;:14;;;:28;;;38519:93;;38583:9;38576:16;;;;;;38519:93;38430:197;38422:6;;;;;;;;38382:245;;;;38650:57;;;;;;;;;;:::i;:::-;;;;;;;;38178:537;;;;:::o;11093:191::-;11167:16;11186:6;;;;;;;;;;;11167:25;;11212:8;11203:6;;:17;;;;;;;;;;;;;;;;;;11267:8;11236:40;;11257:8;11236:40;;;;;;;;;;;;11156:128;11093:191;:::o;48194:804::-;48349:4;48370:15;:2;:13;;;:15::i;:::-;48366:625;;;48422:2;48406:36;;;48443:12;:10;:12::i;:::-;48457:4;48463:7;48472:5;48406:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48402:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48669:1;48652:6;:13;:18;48648:273;;;48695:61;;;;;;;;;;:::i;:::-;;;;;;;;48648:273;48871:6;48865:13;48856:6;48852:2;48848:15;48841:38;48402:534;48539:45;;;48529:55;;;:6;:55;;;;48522:62;;;;;48366:625;48975:4;48968:11;;48194:804;;;;;;;:::o;52450:102::-;52510:13;52539:7;52532:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52450:102;:::o;6109:723::-;6165:13;6395:1;6386:5;:10;6382:53;;;6413:10;;;;;;;;;;;;;;;;;;;;;6382:53;6445:12;6460:5;6445:20;;6476:14;6501:78;6516:1;6508:4;:9;6501:78;;6534:8;;;;;:::i;:::-;;;;6565:2;6557:10;;;;;:::i;:::-;;;6501:78;;;6589:19;6621:6;6611:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6589:39;;6639:154;6655:1;6646:5;:10;6639:154;;6683:1;6673:11;;;;;:::i;:::-;;;6750:2;6742:5;:10;;;;:::i;:::-;6729:2;:24;;;;:::i;:::-;6716:39;;6699:6;6706;6699:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6779:2;6770:11;;;;;:::i;:::-;;;6639:154;;;6817:6;6803:21;;;;;6109:723;;;;:::o;37747:229::-;37808:7;37853:1;37836:19;;:5;:19;;;;37828:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37935:12;:19;37948:5;37935:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37927:41;;37920:48;;37747:229;;;:::o;49486:159::-;;;;;:::o;50057:158::-;;;;;:::o;43099:163::-;43222:32;43228:2;43232:8;43242:5;43249:4;43222:5;:32::i;:::-;43099:163;;;:::o;12524:326::-;12584:4;12841:1;12819:7;:19;;;:23;12812:30;;12524:326;;;:::o;43521:1538::-;43660:20;43683:12;;43660:35;;43728:1;43714:16;;:2;:16;;;;43706:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43799:1;43787:8;:13;;43779:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43858:61;43888:1;43892:2;43896:12;43910:8;43858:21;:61::i;:::-;44233:8;44197:12;:16;44210:2;44197:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44298:8;44257:12;:16;44270:2;44257:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44357:2;44324:11;:25;44336:12;44324:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44424:15;44374:11;:25;44386:12;44374:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44457:20;44480:12;44457:35;;44514:9;44509:415;44529:8;44525:1;:12;44509:415;;;44593:12;44589:2;44568:38;;44585:1;44568:38;;;;;;;;;;;;44629:4;44625:249;;;44692:59;44723:1;44727:2;44731:12;44745:5;44692:22;:59::i;:::-;44658:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44625:249;44894:14;;;;;;;44539:3;;;;;;;44509:415;;;;44955:12;44940;:27;;;;44172:807;44991:60;45020:1;45024:2;45028:12;45042:8;44991:20;:60::i;:::-;43649:1410;43521:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8469:845::-;8572:3;8609:5;8603:12;8638:36;8664:9;8638:36;:::i;:::-;8690:89;8772:6;8767:3;8690:89;:::i;:::-;8683:96;;8810:1;8799:9;8795:17;8826:1;8821:137;;;;8972:1;8967:341;;;;8788:520;;8821:137;8905:4;8901:9;8890;8886:25;8881:3;8874:38;8941:6;8936:3;8932:16;8925:23;;8821:137;;8967:341;9034:38;9066:5;9034:38;:::i;:::-;9094:1;9108:154;9122:6;9119:1;9116:13;9108:154;;;9196:7;9190:14;9186:1;9181:3;9177:11;9170:35;9246:1;9237:7;9233:15;9222:26;;9144:4;9141:1;9137:12;9132:17;;9108:154;;;9291:6;9286:3;9282:16;9275:23;;8974:334;;8788:520;;8576:738;;8469:845;;;;:::o;9320:366::-;9462:3;9483:67;9547:2;9542:3;9483:67;:::i;:::-;9476:74;;9559:93;9648:3;9559:93;:::i;:::-;9677:2;9672:3;9668:12;9661:19;;9320:366;;;:::o;9692:::-;9834:3;9855:67;9919:2;9914:3;9855:67;:::i;:::-;9848:74;;9931:93;10020:3;9931:93;:::i;:::-;10049:2;10044:3;10040:12;10033:19;;9692:366;;;:::o;10064:::-;10206:3;10227:67;10291:2;10286:3;10227:67;:::i;:::-;10220:74;;10303:93;10392:3;10303:93;:::i;:::-;10421:2;10416:3;10412:12;10405:19;;10064:366;;;:::o;10436:::-;10578:3;10599:67;10663:2;10658:3;10599:67;:::i;:::-;10592:74;;10675:93;10764:3;10675:93;:::i;:::-;10793:2;10788:3;10784:12;10777:19;;10436:366;;;:::o;10808:::-;10950:3;10971:67;11035:2;11030:3;10971:67;:::i;:::-;10964:74;;11047:93;11136:3;11047:93;:::i;:::-;11165:2;11160:3;11156:12;11149:19;;10808:366;;;:::o;11180:::-;11322:3;11343:67;11407:2;11402:3;11343:67;:::i;:::-;11336:74;;11419:93;11508:3;11419:93;:::i;:::-;11537:2;11532:3;11528:12;11521:19;;11180:366;;;:::o;11552:::-;11694:3;11715:67;11779:2;11774:3;11715:67;:::i;:::-;11708:74;;11791:93;11880:3;11791:93;:::i;:::-;11909:2;11904:3;11900:12;11893:19;;11552:366;;;:::o;11924:::-;12066:3;12087:67;12151:2;12146:3;12087:67;:::i;:::-;12080:74;;12163:93;12252:3;12163:93;:::i;:::-;12281:2;12276:3;12272:12;12265:19;;11924:366;;;:::o;12296:::-;12438:3;12459:67;12523:2;12518:3;12459:67;:::i;:::-;12452:74;;12535:93;12624:3;12535:93;:::i;:::-;12653:2;12648:3;12644:12;12637:19;;12296:366;;;:::o;12668:365::-;12810:3;12831:66;12895:1;12890:3;12831:66;:::i;:::-;12824:73;;12906:93;12995:3;12906:93;:::i;:::-;13024:2;13019:3;13015:12;13008:19;;12668:365;;;:::o;13039:366::-;13181:3;13202:67;13266:2;13261:3;13202:67;:::i;:::-;13195:74;;13278:93;13367:3;13278:93;:::i;:::-;13396:2;13391:3;13387:12;13380:19;;13039:366;;;:::o;13411:365::-;13553:3;13574:66;13638:1;13633:3;13574:66;:::i;:::-;13567:73;;13649:93;13738:3;13649:93;:::i;:::-;13767:2;13762:3;13758:12;13751:19;;13411:365;;;:::o;13782:366::-;13924:3;13945:67;14009:2;14004:3;13945:67;:::i;:::-;13938:74;;14021:93;14110:3;14021:93;:::i;:::-;14139:2;14134:3;14130:12;14123:19;;13782:366;;;:::o;14154:::-;14296:3;14317:67;14381:2;14376:3;14317:67;:::i;:::-;14310:74;;14393:93;14482:3;14393:93;:::i;:::-;14511:2;14506:3;14502:12;14495:19;;14154:366;;;:::o;14526:::-;14668:3;14689:67;14753:2;14748:3;14689:67;:::i;:::-;14682:74;;14765:93;14854:3;14765:93;:::i;:::-;14883:2;14878:3;14874:12;14867:19;;14526:366;;;:::o;14898:::-;15040:3;15061:67;15125:2;15120:3;15061:67;:::i;:::-;15054:74;;15137:93;15226:3;15137:93;:::i;:::-;15255:2;15250:3;15246:12;15239:19;;14898:366;;;:::o;15270:::-;15412:3;15433:67;15497:2;15492:3;15433:67;:::i;:::-;15426:74;;15509:93;15598:3;15509:93;:::i;:::-;15627:2;15622:3;15618:12;15611:19;;15270:366;;;:::o;15642:::-;15784:3;15805:67;15869:2;15864:3;15805:67;:::i;:::-;15798:74;;15881:93;15970:3;15881:93;:::i;:::-;15999:2;15994:3;15990:12;15983:19;;15642:366;;;:::o;16014:::-;16156:3;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16253:93;16342:3;16253:93;:::i;:::-;16371:2;16366:3;16362:12;16355:19;;16014:366;;;:::o;16386:::-;16528:3;16549:67;16613:2;16608:3;16549:67;:::i;:::-;16542:74;;16625:93;16714:3;16625:93;:::i;:::-;16743:2;16738:3;16734:12;16727:19;;16386:366;;;:::o;16758:::-;16900:3;16921:67;16985:2;16980:3;16921:67;:::i;:::-;16914:74;;16997:93;17086:3;16997:93;:::i;:::-;17115:2;17110:3;17106:12;17099:19;;16758:366;;;:::o;17130:::-;17272:3;17293:67;17357:2;17352:3;17293:67;:::i;:::-;17286:74;;17369:93;17458:3;17369:93;:::i;:::-;17487:2;17482:3;17478:12;17471:19;;17130:366;;;:::o;17502:398::-;17661:3;17682:83;17763:1;17758:3;17682:83;:::i;:::-;17675:90;;17774:93;17863:3;17774:93;:::i;:::-;17892:1;17887:3;17883:11;17876:18;;17502:398;;;:::o;17906:366::-;18048:3;18069:67;18133:2;18128:3;18069:67;:::i;:::-;18062:74;;18145:93;18234:3;18145:93;:::i;:::-;18263:2;18258:3;18254:12;18247:19;;17906:366;;;:::o;18278:::-;18420:3;18441:67;18505:2;18500:3;18441:67;:::i;:::-;18434:74;;18517:93;18606:3;18517:93;:::i;:::-;18635:2;18630:3;18626:12;18619:19;;18278:366;;;:::o;18650:::-;18792:3;18813:67;18877:2;18872:3;18813:67;:::i;:::-;18806:74;;18889:93;18978:3;18889:93;:::i;:::-;19007:2;19002:3;18998:12;18991:19;;18650:366;;;:::o;19022:::-;19164:3;19185:67;19249:2;19244:3;19185:67;:::i;:::-;19178:74;;19261:93;19350:3;19261:93;:::i;:::-;19379:2;19374:3;19370:12;19363:19;;19022:366;;;:::o;19394:::-;19536:3;19557:67;19621:2;19616:3;19557:67;:::i;:::-;19550:74;;19633:93;19722:3;19633:93;:::i;:::-;19751:2;19746:3;19742:12;19735:19;;19394:366;;;:::o;19766:::-;19908:3;19929:67;19993:2;19988:3;19929:67;:::i;:::-;19922:74;;20005:93;20094:3;20005:93;:::i;:::-;20123:2;20118:3;20114:12;20107:19;;19766:366;;;:::o;20138:::-;20280:3;20301:67;20365:2;20360:3;20301:67;:::i;:::-;20294:74;;20377:93;20466:3;20377:93;:::i;:::-;20495:2;20490:3;20486:12;20479:19;;20138:366;;;:::o;20510:::-;20652:3;20673:67;20737:2;20732:3;20673:67;:::i;:::-;20666:74;;20749:93;20838:3;20749:93;:::i;:::-;20867:2;20862:3;20858:12;20851:19;;20510:366;;;:::o;20882:::-;21024:3;21045:67;21109:2;21104:3;21045:67;:::i;:::-;21038:74;;21121:93;21210:3;21121:93;:::i;:::-;21239:2;21234:3;21230:12;21223:19;;20882:366;;;:::o;21254:::-;21396:3;21417:67;21481:2;21476:3;21417:67;:::i;:::-;21410:74;;21493:93;21582:3;21493:93;:::i;:::-;21611:2;21606:3;21602:12;21595:19;;21254:366;;;:::o;21696:529::-;21857:4;21852:3;21848:14;21944:4;21937:5;21933:16;21927:23;21963:63;22020:4;22015:3;22011:14;21997:12;21963:63;:::i;:::-;21872:164;22128:4;22121:5;22117:16;22111:23;22147:61;22202:4;22197:3;22193:14;22179:12;22147:61;:::i;:::-;22046:172;21826:399;21696:529;;:::o;22231:118::-;22318:24;22336:5;22318:24;:::i;:::-;22313:3;22306:37;22231:118;;:::o;22355:105::-;22430:23;22447:5;22430:23;:::i;:::-;22425:3;22418:36;22355:105;;:::o;22466:589::-;22691:3;22713:95;22804:3;22795:6;22713:95;:::i;:::-;22706:102;;22825:95;22916:3;22907:6;22825:95;:::i;:::-;22818:102;;22937:92;23025:3;23016:6;22937:92;:::i;:::-;22930:99;;23046:3;23039:10;;22466:589;;;;;;:::o;23061:379::-;23245:3;23267:147;23410:3;23267:147;:::i;:::-;23260:154;;23431:3;23424:10;;23061:379;;;:::o;23446:222::-;23539:4;23577:2;23566:9;23562:18;23554:26;;23590:71;23658:1;23647:9;23643:17;23634:6;23590:71;:::i;:::-;23446:222;;;;:::o;23674:640::-;23869:4;23907:3;23896:9;23892:19;23884:27;;23921:71;23989:1;23978:9;23974:17;23965:6;23921:71;:::i;:::-;24002:72;24070:2;24059:9;24055:18;24046:6;24002:72;:::i;:::-;24084;24152:2;24141:9;24137:18;24128:6;24084:72;:::i;:::-;24203:9;24197:4;24193:20;24188:2;24177:9;24173:18;24166:48;24231:76;24302:4;24293:6;24231:76;:::i;:::-;24223:84;;23674:640;;;;;;;:::o;24320:210::-;24407:4;24445:2;24434:9;24430:18;24422:26;;24458:65;24520:1;24509:9;24505:17;24496:6;24458:65;:::i;:::-;24320:210;;;;:::o;24536:313::-;24649:4;24687:2;24676:9;24672:18;24664:26;;24736:9;24730:4;24726:20;24722:1;24711:9;24707:17;24700:47;24764:78;24837:4;24828:6;24764:78;:::i;:::-;24756:86;;24536:313;;;;:::o;24855:419::-;25021:4;25059:2;25048:9;25044:18;25036:26;;25108:9;25102:4;25098:20;25094:1;25083:9;25079:17;25072:47;25136:131;25262:4;25136:131;:::i;:::-;25128:139;;24855:419;;;:::o;25280:::-;25446:4;25484:2;25473:9;25469:18;25461:26;;25533:9;25527:4;25523:20;25519:1;25508:9;25504:17;25497:47;25561:131;25687:4;25561:131;:::i;:::-;25553:139;;25280:419;;;:::o;25705:::-;25871:4;25909:2;25898:9;25894:18;25886:26;;25958:9;25952:4;25948:20;25944:1;25933:9;25929:17;25922:47;25986:131;26112:4;25986:131;:::i;:::-;25978:139;;25705:419;;;:::o;26130:::-;26296:4;26334:2;26323:9;26319:18;26311:26;;26383:9;26377:4;26373:20;26369:1;26358:9;26354:17;26347:47;26411:131;26537:4;26411:131;:::i;:::-;26403:139;;26130:419;;;:::o;26555:::-;26721:4;26759:2;26748:9;26744:18;26736:26;;26808:9;26802:4;26798:20;26794:1;26783:9;26779:17;26772:47;26836:131;26962:4;26836:131;:::i;:::-;26828:139;;26555:419;;;:::o;26980:::-;27146:4;27184:2;27173:9;27169:18;27161:26;;27233:9;27227:4;27223:20;27219:1;27208:9;27204:17;27197:47;27261:131;27387:4;27261:131;:::i;:::-;27253:139;;26980:419;;;:::o;27405:::-;27571:4;27609:2;27598:9;27594:18;27586:26;;27658:9;27652:4;27648:20;27644:1;27633:9;27629:17;27622:47;27686:131;27812:4;27686:131;:::i;:::-;27678:139;;27405:419;;;:::o;27830:::-;27996:4;28034:2;28023:9;28019:18;28011:26;;28083:9;28077:4;28073:20;28069:1;28058:9;28054:17;28047:47;28111:131;28237:4;28111:131;:::i;:::-;28103:139;;27830:419;;;:::o;28255:::-;28421:4;28459:2;28448:9;28444:18;28436:26;;28508:9;28502:4;28498:20;28494:1;28483:9;28479:17;28472:47;28536:131;28662:4;28536:131;:::i;:::-;28528:139;;28255:419;;;:::o;28680:::-;28846:4;28884:2;28873:9;28869:18;28861:26;;28933:9;28927:4;28923:20;28919:1;28908:9;28904:17;28897:47;28961:131;29087:4;28961:131;:::i;:::-;28953:139;;28680:419;;;:::o;29105:::-;29271:4;29309:2;29298:9;29294:18;29286:26;;29358:9;29352:4;29348:20;29344:1;29333:9;29329:17;29322:47;29386:131;29512:4;29386:131;:::i;:::-;29378:139;;29105:419;;;:::o;29530:::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:::-;30546:4;30584:2;30573:9;30569:18;30561:26;;30633:9;30627:4;30623:20;30619:1;30608:9;30604:17;30597:47;30661:131;30787:4;30661:131;:::i;:::-;30653:139;;30380:419;;;:::o;30805:::-;30971:4;31009:2;30998:9;30994:18;30986:26;;31058:9;31052:4;31048:20;31044:1;31033:9;31029:17;31022:47;31086:131;31212:4;31086:131;:::i;:::-;31078:139;;30805:419;;;:::o;31230:::-;31396:4;31434:2;31423:9;31419:18;31411:26;;31483:9;31477:4;31473:20;31469:1;31458:9;31454:17;31447:47;31511:131;31637:4;31511:131;:::i;:::-;31503:139;;31230:419;;;:::o;31655:::-;31821:4;31859:2;31848:9;31844:18;31836:26;;31908:9;31902:4;31898:20;31894:1;31883:9;31879:17;31872:47;31936:131;32062:4;31936:131;:::i;:::-;31928:139;;31655:419;;;:::o;32080:::-;32246:4;32284:2;32273:9;32269:18;32261:26;;32333:9;32327:4;32323:20;32319:1;32308:9;32304:17;32297:47;32361:131;32487:4;32361:131;:::i;:::-;32353:139;;32080:419;;;:::o;32505:::-;32671:4;32709:2;32698:9;32694:18;32686:26;;32758:9;32752:4;32748:20;32744:1;32733:9;32729:17;32722:47;32786:131;32912:4;32786:131;:::i;:::-;32778:139;;32505:419;;;:::o;32930:::-;33096:4;33134:2;33123:9;33119:18;33111:26;;33183:9;33177:4;33173:20;33169:1;33158:9;33154:17;33147:47;33211:131;33337:4;33211:131;:::i;:::-;33203:139;;32930:419;;;:::o;33355:::-;33521:4;33559:2;33548:9;33544:18;33536:26;;33608:9;33602:4;33598:20;33594:1;33583:9;33579:17;33572:47;33636:131;33762:4;33636:131;:::i;:::-;33628:139;;33355:419;;;:::o;33780:::-;33946:4;33984:2;33973:9;33969:18;33961:26;;34033:9;34027:4;34023:20;34019:1;34008:9;34004:17;33997:47;34061:131;34187:4;34061:131;:::i;:::-;34053:139;;33780:419;;;:::o;34205:::-;34371:4;34409:2;34398:9;34394:18;34386:26;;34458:9;34452:4;34448:20;34444:1;34433:9;34429:17;34422:47;34486:131;34612:4;34486:131;:::i;:::-;34478:139;;34205:419;;;:::o;34630:::-;34796:4;34834:2;34823:9;34819:18;34811:26;;34883:9;34877:4;34873:20;34869:1;34858:9;34854:17;34847:47;34911:131;35037:4;34911:131;:::i;:::-;34903:139;;34630:419;;;:::o;35055:::-;35221:4;35259:2;35248:9;35244:18;35236:26;;35308:9;35302:4;35298:20;35294:1;35283:9;35279:17;35272:47;35336:131;35462:4;35336:131;:::i;:::-;35328:139;;35055:419;;;:::o;35480:::-;35646:4;35684:2;35673:9;35669:18;35661:26;;35733:9;35727:4;35723:20;35719:1;35708:9;35704:17;35697:47;35761:131;35887:4;35761:131;:::i;:::-;35753:139;;35480:419;;;:::o;35905:::-;36071:4;36109:2;36098:9;36094:18;36086:26;;36158:9;36152:4;36148:20;36144:1;36133:9;36129:17;36122:47;36186:131;36312:4;36186:131;:::i;:::-;36178:139;;35905:419;;;:::o;36330:::-;36496:4;36534:2;36523:9;36519:18;36511:26;;36583:9;36577:4;36573:20;36569:1;36558:9;36554:17;36547:47;36611:131;36737:4;36611:131;:::i;:::-;36603:139;;36330:419;;;:::o;36755:::-;36921:4;36959:2;36948:9;36944:18;36936:26;;37008:9;37002:4;36998:20;36994:1;36983:9;36979:17;36972:47;37036:131;37162:4;37036:131;:::i;:::-;37028:139;;36755:419;;;:::o;37180:::-;37346:4;37384:2;37373:9;37369:18;37361:26;;37433:9;37427:4;37423:20;37419:1;37408:9;37404:17;37397:47;37461:131;37587:4;37461:131;:::i;:::-;37453:139;;37180:419;;;:::o;37605:::-;37771:4;37809:2;37798:9;37794:18;37786:26;;37858:9;37852:4;37848:20;37844:1;37833:9;37829:17;37822:47;37886:131;38012:4;37886:131;:::i;:::-;37878:139;;37605:419;;;:::o;38030:::-;38196:4;38234:2;38223:9;38219:18;38211:26;;38283:9;38277:4;38273:20;38269:1;38258:9;38254:17;38247:47;38311:131;38437:4;38311:131;:::i;:::-;38303:139;;38030:419;;;:::o;38455:350::-;38612:4;38650:2;38639:9;38635:18;38627:26;;38663:135;38795:1;38784:9;38780:17;38771:6;38663:135;:::i;:::-;38455:350;;;;:::o;38811:222::-;38904:4;38942:2;38931:9;38927:18;38919:26;;38955:71;39023:1;39012:9;39008:17;38999:6;38955:71;:::i;:::-;38811:222;;;;:::o;39039:129::-;39073:6;39100:20;;:::i;:::-;39090:30;;39129:33;39157:4;39149:6;39129:33;:::i;:::-;39039:129;;;:::o;39174:75::-;39207:6;39240:2;39234:9;39224:19;;39174:75;:::o;39255:307::-;39316:4;39406:18;39398:6;39395:30;39392:56;;;39428:18;;:::i;:::-;39392:56;39466:29;39488:6;39466:29;:::i;:::-;39458:37;;39550:4;39544;39540:15;39532:23;;39255:307;;;:::o;39568:141::-;39617:4;39640:3;39632:11;;39663:3;39660:1;39653:14;39697:4;39694:1;39684:18;39676:26;;39568:141;;;:::o;39715:98::-;39766:6;39800:5;39794:12;39784:22;;39715:98;;;:::o;39819:99::-;39871:6;39905:5;39899:12;39889:22;;39819:99;;;:::o;39924:168::-;40007:11;40041:6;40036:3;40029:19;40081:4;40076:3;40072:14;40057:29;;39924:168;;;;:::o;40098:147::-;40199:11;40236:3;40221:18;;40098:147;;;;:::o;40251:169::-;40335:11;40369:6;40364:3;40357:19;40409:4;40404:3;40400:14;40385:29;;40251:169;;;;:::o;40426:148::-;40528:11;40565:3;40550:18;;40426:148;;;;:::o;40580:305::-;40620:3;40639:20;40657:1;40639:20;:::i;:::-;40634:25;;40673:20;40691:1;40673:20;:::i;:::-;40668:25;;40827:1;40759:66;40755:74;40752:1;40749:81;40746:107;;;40833:18;;:::i;:::-;40746:107;40877:1;40874;40870:9;40863:16;;40580:305;;;;:::o;40891:185::-;40931:1;40948:20;40966:1;40948:20;:::i;:::-;40943:25;;40982:20;41000:1;40982:20;:::i;:::-;40977:25;;41021:1;41011:35;;41026:18;;:::i;:::-;41011:35;41068:1;41065;41061:9;41056:14;;40891:185;;;;:::o;41082:348::-;41122:7;41145:20;41163:1;41145:20;:::i;:::-;41140:25;;41179:20;41197:1;41179:20;:::i;:::-;41174:25;;41367:1;41299:66;41295:74;41292:1;41289:81;41284:1;41277:9;41270:17;41266:105;41263:131;;;41374:18;;:::i;:::-;41263:131;41422:1;41419;41415:9;41404:20;;41082:348;;;;:::o;41436:191::-;41476:4;41496:20;41514:1;41496:20;:::i;:::-;41491:25;;41530:20;41548:1;41530:20;:::i;:::-;41525:25;;41569:1;41566;41563:8;41560:34;;;41574:18;;:::i;:::-;41560:34;41619:1;41616;41612:9;41604:17;;41436:191;;;;:::o;41633:96::-;41670:7;41699:24;41717:5;41699:24;:::i;:::-;41688:35;;41633:96;;;:::o;41735:90::-;41769:7;41812:5;41805:13;41798:21;41787:32;;41735:90;;;:::o;41831:149::-;41867:7;41907:66;41900:5;41896:78;41885:89;;41831:149;;;:::o;41986:126::-;42023:7;42063:42;42056:5;42052:54;42041:65;;41986:126;;;:::o;42118:77::-;42155:7;42184:5;42173:16;;42118:77;;;:::o;42201:101::-;42237:7;42277:18;42270:5;42266:30;42255:41;;42201:101;;;:::o;42308:154::-;42392:6;42387:3;42382;42369:30;42454:1;42445:6;42440:3;42436:16;42429:27;42308:154;;;:::o;42468:307::-;42536:1;42546:113;42560:6;42557:1;42554:13;42546:113;;;42645:1;42640:3;42636:11;42630:18;42626:1;42621:3;42617:11;42610:39;42582:2;42579:1;42575:10;42570:15;;42546:113;;;42677:6;42674:1;42671:13;42668:101;;;42757:1;42748:6;42743:3;42739:16;42732:27;42668:101;42517:258;42468:307;;;:::o;42781:320::-;42825:6;42862:1;42856:4;42852:12;42842:22;;42909:1;42903:4;42899:12;42930:18;42920:81;;42986:4;42978:6;42974:17;42964:27;;42920:81;43048:2;43040:6;43037:14;43017:18;43014:38;43011:84;;;43067:18;;:::i;:::-;43011:84;42832:269;42781:320;;;:::o;43107:281::-;43190:27;43212:4;43190:27;:::i;:::-;43182:6;43178:40;43320:6;43308:10;43305:22;43284:18;43272:10;43269:34;43266:62;43263:88;;;43331:18;;:::i;:::-;43263:88;43371:10;43367:2;43360:22;43150:238;43107:281;;:::o;43394:233::-;43433:3;43456:24;43474:5;43456:24;:::i;:::-;43447:33;;43502:66;43495:5;43492:77;43489:103;;;43572:18;;:::i;:::-;43489:103;43619:1;43612:5;43608:13;43601:20;;43394:233;;;:::o;43633:176::-;43665:1;43682:20;43700:1;43682:20;:::i;:::-;43677:25;;43716:20;43734:1;43716:20;:::i;:::-;43711:25;;43755:1;43745:35;;43760:18;;:::i;:::-;43745:35;43801:1;43798;43794:9;43789:14;;43633:176;;;;:::o;43815:180::-;43863:77;43860:1;43853:88;43960:4;43957:1;43950:15;43984:4;43981:1;43974:15;44001:180;44049:77;44046:1;44039:88;44146:4;44143:1;44136:15;44170:4;44167:1;44160:15;44187:180;44235:77;44232:1;44225:88;44332:4;44329:1;44322:15;44356:4;44353:1;44346:15;44373:180;44421:77;44418:1;44411:88;44518:4;44515:1;44508:15;44542:4;44539:1;44532:15;44559:180;44607:77;44604:1;44597:88;44704:4;44701:1;44694:15;44728:4;44725:1;44718:15;44745:117;44854:1;44851;44844:12;44868:117;44977:1;44974;44967:12;44991:117;45100:1;45097;45090:12;45114:117;45223:1;45220;45213:12;45237:117;45346:1;45343;45336:12;45360:117;45469:1;45466;45459:12;45483:102;45524:6;45575:2;45571:7;45566:2;45559:5;45555:14;45551:28;45541:38;;45483:102;;;:::o;45591:221::-;45731:34;45727:1;45719:6;45715:14;45708:58;45800:4;45795:2;45787:6;45783:15;45776:29;45591:221;:::o;45818:225::-;45958:34;45954:1;45946:6;45942:14;45935:58;46027:8;46022:2;46014:6;46010:15;46003:33;45818:225;:::o;46049:229::-;46189:34;46185:1;46177:6;46173:14;46166:58;46258:12;46253:2;46245:6;46241:15;46234:37;46049:229;:::o;46284:170::-;46424:22;46420:1;46412:6;46408:14;46401:46;46284:170;:::o;46460:::-;46600:22;46596:1;46588:6;46584:14;46577:46;46460:170;:::o;46636:179::-;46776:31;46772:1;46764:6;46760:14;46753:55;46636:179;:::o;46821:222::-;46961:34;46957:1;46949:6;46945:14;46938:58;47030:5;47025:2;47017:6;47013:15;47006:30;46821:222;:::o;47049:224::-;47189:34;47185:1;47177:6;47173:14;47166:58;47258:7;47253:2;47245:6;47241:15;47234:32;47049:224;:::o;47279:236::-;47419:34;47415:1;47407:6;47403:14;47396:58;47488:19;47483:2;47475:6;47471:15;47464:44;47279:236;:::o;47521:158::-;47661:10;47657:1;47649:6;47645:14;47638:34;47521:158;:::o;47685:178::-;47825:30;47821:1;47813:6;47809:14;47802:54;47685:178;:::o;47869:159::-;48009:11;48005:1;47997:6;47993:14;47986:35;47869:159;:::o;48034:244::-;48174:34;48170:1;48162:6;48158:14;48151:58;48243:27;48238:2;48230:6;48226:15;48219:52;48034:244;:::o;48284:174::-;48424:26;48420:1;48412:6;48408:14;48401:50;48284:174;:::o;48464:230::-;48604:34;48600:1;48592:6;48588:14;48581:58;48673:13;48668:2;48660:6;48656:15;48649:38;48464:230;:::o;48700:225::-;48840:34;48836:1;48828:6;48824:14;48817:58;48909:8;48904:2;48896:6;48892:15;48885:33;48700:225;:::o;48931:182::-;49071:34;49067:1;49059:6;49055:14;49048:58;48931:182;:::o;49119:220::-;49259:34;49255:1;49247:6;49243:14;49236:58;49328:3;49323:2;49315:6;49311:15;49304:28;49119:220;:::o;49345:234::-;49485:34;49481:1;49473:6;49469:14;49462:58;49554:17;49549:2;49541:6;49537:15;49530:42;49345:234;:::o;49585:176::-;49725:28;49721:1;49713:6;49709:14;49702:52;49585:176;:::o;49767:237::-;49907:34;49903:1;49895:6;49891:14;49884:58;49976:20;49971:2;49963:6;49959:15;49952:45;49767:237;:::o;50010:221::-;50150:34;50146:1;50138:6;50134:14;50127:58;50219:4;50214:2;50206:6;50202:15;50195:29;50010:221;:::o;50237:114::-;;:::o;50357:166::-;50497:18;50493:1;50485:6;50481:14;50474:42;50357:166;:::o;50529:162::-;50669:14;50665:1;50657:6;50653:14;50646:38;50529:162;:::o;50697:238::-;50837:34;50833:1;50825:6;50821:14;50814:58;50906:21;50901:2;50893:6;50889:15;50882:46;50697:238;:::o;50941:220::-;51081:34;51077:1;51069:6;51065:14;51058:58;51150:3;51145:2;51137:6;51133:15;51126:28;50941:220;:::o;51167:227::-;51307:34;51303:1;51295:6;51291:14;51284:58;51376:10;51371:2;51363:6;51359:15;51352:35;51167:227;:::o;51400:169::-;51540:21;51536:1;51528:6;51524:14;51517:45;51400:169;:::o;51575:233::-;51715:34;51711:1;51703:6;51699:14;51692:58;51784:16;51779:2;51771:6;51767:15;51760:41;51575:233;:::o;51814:181::-;51954:33;51950:1;51942:6;51938:14;51931:57;51814:181;:::o;52001:234::-;52141:34;52137:1;52129:6;52125:14;52118:58;52210:17;52205:2;52197:6;52193:15;52186:42;52001:234;:::o;52241:232::-;52381:34;52377:1;52369:6;52365:14;52358:58;52450:15;52445:2;52437:6;52433:15;52426:40;52241:232;:::o;52479:122::-;52552:24;52570:5;52552:24;:::i;:::-;52545:5;52542:35;52532:63;;52591:1;52588;52581:12;52532:63;52479:122;:::o;52607:116::-;52677:21;52692:5;52677:21;:::i;:::-;52670:5;52667:32;52657:60;;52713:1;52710;52703:12;52657:60;52607:116;:::o;52729:120::-;52801:23;52818:5;52801:23;:::i;:::-;52794:5;52791:34;52781:62;;52839:1;52836;52829:12;52781:62;52729:120;:::o;52855:122::-;52928:24;52946:5;52928:24;:::i;:::-;52921:5;52918:35;52908:63;;52967:1;52964;52957:12;52908:63;52855:122;:::o

Swarm Source

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