ETH Price: $3,381.10 (-0.78%)
Gas: 4 Gwei

Token

MoonKiller Official (MkO)
 

Overview

Max Total Supply

2,374 MkO

Holders

837

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MkO
0xf62c67cd73bdaa7b2c3abb9f844ba991251014a8
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:
MoonKillerOfficial

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-26
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-29
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-29
*/

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

// SPDX-License-Identifier: MIT

// 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/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/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/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/GossamerGods.sol



pragma solidity ^0.8.0;





contract MoonKillerOfficial is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;


  string  public  baseTokenURI = "ipfs://QmbqpLTnTZBzvqXrSzkA36XfeZhwF1wkMmAfP5Agw7tDjN//";
  uint256  public  maxSupply = 2500;
  uint256 public  MAX_MINTS_PER_TX = 5;
  uint256 public  PUBLIC_SALE_PRICE = 0.005 ether;
  uint256 public  NUM_FREE_MINTS = 1000;
  uint256 public  MAX_FREE_PER_WALLET = 3;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = true;

  constructor() ERC721A("MoonKiller Official", "MkO") {
  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more left");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

  function setBaseURI(string memory baseURI)
    public
    onlyOwner
  {
    baseTokenURI = baseURI;
  }

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060378152602001620040fd60379139600a90805190602001906200003592919062000240565b506109c4600b556005600c556611c37937e08000600d556103e8600e556003600f5560006010556001601160006101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280601381526020017f4d6f6f6e4b696c6c6572204f6666696369616c000000000000000000000000008152506040518060400160405280600381526020017f4d6b4f000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000240565b5080600390805190602001906200012292919062000240565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200017260201b60201c565b6200017a60201b60201c565b600160098190555062000354565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e906200031f565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033857607f821691505b6020821081036200034e576200034d620002f0565b5b50919050565b613d9980620003646000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c07565b6107cf565b6040516102329190612c4f565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d03565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d3e565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d85565b610949565b6040516102c59190612df3565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e3a565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612d85565b610acf565b005b34801561032c57600080fd5b50610335610b55565b6040516103429190612d3e565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612d85565b610b6c565b005b34801561038057600080fd5b50610389610bf2565b6040516103969190612d3e565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf8565b6040516103c19190612c4f565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612d85565b610c0b565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e7a565b610c91565b005b34801561042857600080fd5b50610443600480360381019061043e9190612ef9565b610ca1565b005b34801561045157600080fd5b5061045a610d3a565b005b34801561046857600080fd5b50610483600480360381019061047e9190612e7a565b610e17565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061305b565b610e37565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612d85565b610ecd565b6040516104e29190612df3565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906130a4565b610ee3565b60405161051f9190612d3e565b60405180910390f35b34801561053457600080fd5b5061053d610fb2565b005b34801561054b57600080fd5b5061055461103a565b6040516105619190612df3565b60405180910390f35b34801561057657600080fd5b5061057f611064565b60405161058c9190612d03565b60405180910390f35b3480156105a157600080fd5b506105aa6110f6565b6040516105b79190612d3e565b60405180910390f35b3480156105cc57600080fd5b506105d56110fc565b6040516105e29190612d3e565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612d85565b611102565b005b61062e60048036038101906106299190612d85565b611188565b005b34801561063c57600080fd5b50610657600480360381019061065291906130d1565b6113c9565b005b34801561066557600080fd5b50610680600480360381019061067b91906131b2565b611540565b005b34801561068e57600080fd5b506106976115bc565b6040516106a49190612d3e565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612d85565b6115c2565b6040516106e19190612d03565b60405180910390f35b3480156106f657600080fd5b506106ff61163e565b60405161070c9190612d03565b60405180910390f35b34801561072157600080fd5b5061072a6116cc565b6040516107379190612d3e565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613235565b6116d2565b6040516107749190612c4f565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612d85565b611766565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906130a4565b611889565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611980565b5b9050919050565b6060600280546108c0906132a4565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132a4565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ea565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611a38565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a885750610a8681610a81611a38565b6116d2565b155b15610abf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aca838383611a40565b505050565b610ad7611a38565b73ffffffffffffffffffffffffffffffffffffffff16610af561103a565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290613321565b60405180910390fd5b80600e8190555050565b6000610b5f611af2565b6001546000540303905090565b610b74611a38565b73ffffffffffffffffffffffffffffffffffffffff16610b9261103a565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613321565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c13611a38565b73ffffffffffffffffffffffffffffffffffffffff16610c3161103a565b73ffffffffffffffffffffffffffffffffffffffff1614610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613321565b60405180910390fd5b80600f8190555050565b610c9c838383611afb565b505050565b610ca9611a38565b73ffffffffffffffffffffffffffffffffffffffff16610cc761103a565b73ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490613321565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d42611a38565b73ffffffffffffffffffffffffffffffffffffffff16610d6061103a565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613321565b60405180910390fd5b600260095403610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061338d565b60405180910390fd5b6002600981905550610e0d3347611faf565b6001600981905550565b610e3283838360405180602001604052806000815250611540565b505050565b610e3f611a38565b73ffffffffffffffffffffffffffffffffffffffff16610e5d61103a565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613321565b60405180910390fd5b80600a9080519060200190610ec9929190612ab5565b5050565b6000610ed8826120a3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fba611a38565b73ffffffffffffffffffffffffffffffffffffffff16610fd861103a565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613321565b60405180910390fd5b6110386000612332565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611073906132a4565b80601f016020809104026020016040519081016040528092919081815260200182805461109f906132a4565b80156110ec5780601f106110c1576101008083540402835291602001916110ec565b820191906000526020600020905b8154815290600101906020018083116110cf57829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110a611a38565b73ffffffffffffffffffffffffffffffffffffffff1661112861103a565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613321565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906133f9565b60405180910390fd5b6001600b546111e69190613448565b816111ef610b55565b6111f99190613448565b10611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906134ea565b60405180910390fd5b600e548160105461124a9190613448565b11156112a5573481600d5461125f919061350a565b11156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906135b0565b60405180910390fd5b6113bc565b600f54816112b233610ee3565b6112bc9190613448565b111561135c573481600d546112d1919061350a565b1115611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906135b0565b60405180910390fd5b600c54811115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90613642565b60405180910390fd5b6113bb565b600f548111156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613642565b60405180910390fd5b80601060008282546113b39190613448565b925050819055505b5b6113c633826123f8565b50565b6113d1611a38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611442611a38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ef611a38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115349190612c4f565b60405180910390a35050565b61154b848484611afb565b61156a8373ffffffffffffffffffffffffffffffffffffffff16612416565b801561157f575061157d84848484612439565b155b156115b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115cd826119ea565b61160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906136d4565b60405180910390fd5b600a61161783612589565b60405160200161162892919061385c565b6040516020818303038152906040529050919050565b600a805461164b906132a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611677906132a4565b80156116c45780601f10611699576101008083540402835291602001916116c4565b820191906000526020600020905b8154815290600101906020018083116116a757829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176e611a38565b73ffffffffffffffffffffffffffffffffffffffff1661178c61103a565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613321565b60405180910390fd5b60008111611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906138e2565b60405180910390fd5b600b5481611831610b55565b61183b9190613448565b111561187c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118739061394e565b60405180910390fd5b61188633826123f8565b50565b611891611a38565b73ffffffffffffffffffffffffffffffffffffffff166118af61103a565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613321565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906139e0565b60405180910390fd5b61197d81612332565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119f5611af2565b11158015611a04575060005482105b8015611a31575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b06826120a3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b71576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b92611a38565b73ffffffffffffffffffffffffffffffffffffffff161480611bc15750611bc085611bbb611a38565b6116d2565b5b80611c065750611bcf611a38565b73ffffffffffffffffffffffffffffffffffffffff16611bee84610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c3f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb285858560016126e9565b611cbe60008487611a40565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f3d576000548214611f3c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fa885858560016126ef565b5050505050565b80471015611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe990613a4c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201890613a9d565b60006040518083038185875af1925050503d8060008114612055576040519150601f19603f3d011682016040523d82523d6000602084013e61205a565b606091505b505090508061209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613b24565b60405180910390fd5b505050565b6120ab612b3b565b6000829050806120b9611af2565b111580156120c8575060005481105b156122fb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122f957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121dd57809250505061232d565b5b6001156122f857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122f357809250505061232d565b6121de565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124128282604051806020016040528060008152506126f5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245f611a38565b8786866040518563ffffffff1660e01b81526004016124819493929190613b99565b6020604051808303816000875af19250505080156124bd57506040513d601f19601f820116820180604052508101906124ba9190613bfa565b60015b612536573d80600081146124ed576040519150601f19603f3d011682016040523d82523d6000602084013e6124f2565b606091505b50600081510361252e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036125d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e4565b600082905060005b600082146126025780806125eb90613c27565b915050600a826125fb9190613c9e565b91506125d8565b60008167ffffffffffffffff81111561261e5761261d612f30565b5b6040519080825280601f01601f1916602001820160405280156126505781602001600182028036833780820191505090505b5090505b600085146126dd576001826126699190613ccf565b9150600a856126789190613d03565b60306126849190613448565b60f81b81838151811061269a57612699613d34565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d69190613c9e565b9450612654565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612761576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361279b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a860008583866126e9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129698673ffffffffffffffffffffffffffffffffffffffff16612416565b15612a2e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129de6000878480600101955087612439565b612a14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361296f578260005414612a2957600080fd5b612a99565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612a2f575b816000819055505050612aaf60008583866126ef565b50505050565b828054612ac1906132a4565b90600052602060002090601f016020900481019282612ae35760008555612b2a565b82601f10612afc57805160ff1916838001178555612b2a565b82800160010185558215612b2a579182015b82811115612b29578251825591602001919060010190612b0e565b5b509050612b379190612b7e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b97576000816000905550600101612b7f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612be481612baf565b8114612bef57600080fd5b50565b600081359050612c0181612bdb565b92915050565b600060208284031215612c1d57612c1c612ba5565b5b6000612c2b84828501612bf2565b91505092915050565b60008115159050919050565b612c4981612c34565b82525050565b6000602082019050612c646000830184612c40565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca4578082015181840152602081019050612c89565b83811115612cb3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cd582612c6a565b612cdf8185612c75565b9350612cef818560208601612c86565b612cf881612cb9565b840191505092915050565b60006020820190508181036000830152612d1d8184612cca565b905092915050565b6000819050919050565b612d3881612d25565b82525050565b6000602082019050612d536000830184612d2f565b92915050565b612d6281612d25565b8114612d6d57600080fd5b50565b600081359050612d7f81612d59565b92915050565b600060208284031215612d9b57612d9a612ba5565b5b6000612da984828501612d70565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ddd82612db2565b9050919050565b612ded81612dd2565b82525050565b6000602082019050612e086000830184612de4565b92915050565b612e1781612dd2565b8114612e2257600080fd5b50565b600081359050612e3481612e0e565b92915050565b60008060408385031215612e5157612e50612ba5565b5b6000612e5f85828601612e25565b9250506020612e7085828601612d70565b9150509250929050565b600080600060608486031215612e9357612e92612ba5565b5b6000612ea186828701612e25565b9350506020612eb286828701612e25565b9250506040612ec386828701612d70565b9150509250925092565b612ed681612c34565b8114612ee157600080fd5b50565b600081359050612ef381612ecd565b92915050565b600060208284031215612f0f57612f0e612ba5565b5b6000612f1d84828501612ee4565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f6882612cb9565b810181811067ffffffffffffffff82111715612f8757612f86612f30565b5b80604052505050565b6000612f9a612b9b565b9050612fa68282612f5f565b919050565b600067ffffffffffffffff821115612fc657612fc5612f30565b5b612fcf82612cb9565b9050602081019050919050565b82818337600083830152505050565b6000612ffe612ff984612fab565b612f90565b90508281526020810184848401111561301a57613019612f2b565b5b613025848285612fdc565b509392505050565b600082601f83011261304257613041612f26565b5b8135613052848260208601612feb565b91505092915050565b60006020828403121561307157613070612ba5565b5b600082013567ffffffffffffffff81111561308f5761308e612baa565b5b61309b8482850161302d565b91505092915050565b6000602082840312156130ba576130b9612ba5565b5b60006130c884828501612e25565b91505092915050565b600080604083850312156130e8576130e7612ba5565b5b60006130f685828601612e25565b925050602061310785828601612ee4565b9150509250929050565b600067ffffffffffffffff82111561312c5761312b612f30565b5b61313582612cb9565b9050602081019050919050565b600061315561315084613111565b612f90565b90508281526020810184848401111561317157613170612f2b565b5b61317c848285612fdc565b509392505050565b600082601f83011261319957613198612f26565b5b81356131a9848260208601613142565b91505092915050565b600080600080608085870312156131cc576131cb612ba5565b5b60006131da87828801612e25565b94505060206131eb87828801612e25565b93505060406131fc87828801612d70565b925050606085013567ffffffffffffffff81111561321d5761321c612baa565b5b61322987828801613184565b91505092959194509250565b6000806040838503121561324c5761324b612ba5565b5b600061325a85828601612e25565b925050602061326b85828601612e25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132bc57607f821691505b6020821081036132cf576132ce613275565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061330b602083612c75565b9150613316826132d5565b602082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613377601f83612c75565b915061338282613341565b602082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b60006133e3601083612c75565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061345382612d25565b915061345e83612d25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561349357613492613419565b5b828201905092915050565b7f4e6f206d6f7265206c6566740000000000000000000000000000000000000000600082015250565b60006134d4600c83612c75565b91506134df8261349e565b602082019050919050565b60006020820190508181036000830152613503816134c7565b9050919050565b600061351582612d25565b915061352083612d25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561355957613558613419565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b600061359a601883612c75565b91506135a582613564565b602082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061362c602283612c75565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136be602f83612c75565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613721816132a4565b61372b81866136f4565b9450600182166000811461374657600181146137575761378a565b60ff1983168652818601935061378a565b613760856136ff565b60005b8381101561378257815481890152600182019150602081019050613763565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137c96001836136f4565b91506137d482613793565b600182019050919050565b60006137ea82612c6a565b6137f481856136f4565b9350613804818560208601612c86565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138466005836136f4565b915061385182613810565b600582019050919050565b60006138688285613714565b9150613873826137bc565b915061387f82846137df565b915061388a82613839565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006138cc601383612c75565b91506138d782613896565b602082019050919050565b600060208201905081810360008301526138fb816138bf565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613938601783612c75565b915061394382613902565b602082019050919050565b600060208201905081810360008301526139678161392b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139ca602683612c75565b91506139d58261396e565b604082019050919050565b600060208201905081810360008301526139f9816139bd565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a36601d83612c75565b9150613a4182613a00565b602082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b600081905092915050565b50565b6000613a87600083613a6c565b9150613a9282613a77565b600082019050919050565b6000613aa882613a7a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b0e603a83612c75565b9150613b1982613ab2565b604082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b6b82613b44565b613b758185613b4f565b9350613b85818560208601612c86565b613b8e81612cb9565b840191505092915050565b6000608082019050613bae6000830187612de4565b613bbb6020830186612de4565b613bc86040830185612d2f565b8181036060830152613bda8184613b60565b905095945050505050565b600081519050613bf481612bdb565b92915050565b600060208284031215613c1057613c0f612ba5565b5b6000613c1e84828501613be5565b91505092915050565b6000613c3282612d25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c6457613c63613419565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ca982612d25565b9150613cb483612d25565b925082613cc457613cc3613c6f565b5b828204905092915050565b6000613cda82612d25565b9150613ce583612d25565b925082821015613cf857613cf7613419565b5b828203905092915050565b6000613d0e82612d25565b9150613d1983612d25565b925082613d2957613d28613c6f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208dbe09ded7083b903a07ae9ca556922ad1d3aea3e99746639ef0287b051ebcfb64736f6c634300080e0033697066733a2f2f516d6271704c546e545a427a76715872537a6b4133365866655a68774631776b4d6d416650354167773774446a4e2f2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c07565b6107cf565b6040516102329190612c4f565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d03565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d3e565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d85565b610949565b6040516102c59190612df3565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e3a565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612d85565b610acf565b005b34801561032c57600080fd5b50610335610b55565b6040516103429190612d3e565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612d85565b610b6c565b005b34801561038057600080fd5b50610389610bf2565b6040516103969190612d3e565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf8565b6040516103c19190612c4f565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612d85565b610c0b565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e7a565b610c91565b005b34801561042857600080fd5b50610443600480360381019061043e9190612ef9565b610ca1565b005b34801561045157600080fd5b5061045a610d3a565b005b34801561046857600080fd5b50610483600480360381019061047e9190612e7a565b610e17565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061305b565b610e37565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612d85565b610ecd565b6040516104e29190612df3565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906130a4565b610ee3565b60405161051f9190612d3e565b60405180910390f35b34801561053457600080fd5b5061053d610fb2565b005b34801561054b57600080fd5b5061055461103a565b6040516105619190612df3565b60405180910390f35b34801561057657600080fd5b5061057f611064565b60405161058c9190612d03565b60405180910390f35b3480156105a157600080fd5b506105aa6110f6565b6040516105b79190612d3e565b60405180910390f35b3480156105cc57600080fd5b506105d56110fc565b6040516105e29190612d3e565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612d85565b611102565b005b61062e60048036038101906106299190612d85565b611188565b005b34801561063c57600080fd5b50610657600480360381019061065291906130d1565b6113c9565b005b34801561066557600080fd5b50610680600480360381019061067b91906131b2565b611540565b005b34801561068e57600080fd5b506106976115bc565b6040516106a49190612d3e565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612d85565b6115c2565b6040516106e19190612d03565b60405180910390f35b3480156106f657600080fd5b506106ff61163e565b60405161070c9190612d03565b60405180910390f35b34801561072157600080fd5b5061072a6116cc565b6040516107379190612d3e565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613235565b6116d2565b6040516107749190612c4f565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612d85565b611766565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906130a4565b611889565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611980565b5b9050919050565b6060600280546108c0906132a4565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132a4565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ea565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611a38565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a885750610a8681610a81611a38565b6116d2565b155b15610abf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aca838383611a40565b505050565b610ad7611a38565b73ffffffffffffffffffffffffffffffffffffffff16610af561103a565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290613321565b60405180910390fd5b80600e8190555050565b6000610b5f611af2565b6001546000540303905090565b610b74611a38565b73ffffffffffffffffffffffffffffffffffffffff16610b9261103a565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613321565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c13611a38565b73ffffffffffffffffffffffffffffffffffffffff16610c3161103a565b73ffffffffffffffffffffffffffffffffffffffff1614610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613321565b60405180910390fd5b80600f8190555050565b610c9c838383611afb565b505050565b610ca9611a38565b73ffffffffffffffffffffffffffffffffffffffff16610cc761103a565b73ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490613321565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d42611a38565b73ffffffffffffffffffffffffffffffffffffffff16610d6061103a565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613321565b60405180910390fd5b600260095403610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061338d565b60405180910390fd5b6002600981905550610e0d3347611faf565b6001600981905550565b610e3283838360405180602001604052806000815250611540565b505050565b610e3f611a38565b73ffffffffffffffffffffffffffffffffffffffff16610e5d61103a565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613321565b60405180910390fd5b80600a9080519060200190610ec9929190612ab5565b5050565b6000610ed8826120a3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fba611a38565b73ffffffffffffffffffffffffffffffffffffffff16610fd861103a565b73ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613321565b60405180910390fd5b6110386000612332565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611073906132a4565b80601f016020809104026020016040519081016040528092919081815260200182805461109f906132a4565b80156110ec5780601f106110c1576101008083540402835291602001916110ec565b820191906000526020600020905b8154815290600101906020018083116110cf57829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110a611a38565b73ffffffffffffffffffffffffffffffffffffffff1661112861103a565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613321565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906133f9565b60405180910390fd5b6001600b546111e69190613448565b816111ef610b55565b6111f99190613448565b10611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906134ea565b60405180910390fd5b600e548160105461124a9190613448565b11156112a5573481600d5461125f919061350a565b11156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906135b0565b60405180910390fd5b6113bc565b600f54816112b233610ee3565b6112bc9190613448565b111561135c573481600d546112d1919061350a565b1115611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906135b0565b60405180910390fd5b600c54811115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90613642565b60405180910390fd5b6113bb565b600f548111156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613642565b60405180910390fd5b80601060008282546113b39190613448565b925050819055505b5b6113c633826123f8565b50565b6113d1611a38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611442611a38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ef611a38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115349190612c4f565b60405180910390a35050565b61154b848484611afb565b61156a8373ffffffffffffffffffffffffffffffffffffffff16612416565b801561157f575061157d84848484612439565b155b156115b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115cd826119ea565b61160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906136d4565b60405180910390fd5b600a61161783612589565b60405160200161162892919061385c565b6040516020818303038152906040529050919050565b600a805461164b906132a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611677906132a4565b80156116c45780601f10611699576101008083540402835291602001916116c4565b820191906000526020600020905b8154815290600101906020018083116116a757829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176e611a38565b73ffffffffffffffffffffffffffffffffffffffff1661178c61103a565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613321565b60405180910390fd5b60008111611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906138e2565b60405180910390fd5b600b5481611831610b55565b61183b9190613448565b111561187c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118739061394e565b60405180910390fd5b61188633826123f8565b50565b611891611a38565b73ffffffffffffffffffffffffffffffffffffffff166118af61103a565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613321565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906139e0565b60405180910390fd5b61197d81612332565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119f5611af2565b11158015611a04575060005482105b8015611a31575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b06826120a3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b71576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b92611a38565b73ffffffffffffffffffffffffffffffffffffffff161480611bc15750611bc085611bbb611a38565b6116d2565b5b80611c065750611bcf611a38565b73ffffffffffffffffffffffffffffffffffffffff16611bee84610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c3f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb285858560016126e9565b611cbe60008487611a40565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f3d576000548214611f3c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fa885858560016126ef565b5050505050565b80471015611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe990613a4c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201890613a9d565b60006040518083038185875af1925050503d8060008114612055576040519150601f19603f3d011682016040523d82523d6000602084013e61205a565b606091505b505090508061209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613b24565b60405180910390fd5b505050565b6120ab612b3b565b6000829050806120b9611af2565b111580156120c8575060005481105b156122fb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122f957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121dd57809250505061232d565b5b6001156122f857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122f357809250505061232d565b6121de565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124128282604051806020016040528060008152506126f5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261245f611a38565b8786866040518563ffffffff1660e01b81526004016124819493929190613b99565b6020604051808303816000875af19250505080156124bd57506040513d601f19601f820116820180604052508101906124ba9190613bfa565b60015b612536573d80600081146124ed576040519150601f19603f3d011682016040523d82523d6000602084013e6124f2565b606091505b50600081510361252e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036125d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e4565b600082905060005b600082146126025780806125eb90613c27565b915050600a826125fb9190613c9e565b91506125d8565b60008167ffffffffffffffff81111561261e5761261d612f30565b5b6040519080825280601f01601f1916602001820160405280156126505781602001600182028036833780820191505090505b5090505b600085146126dd576001826126699190613ccf565b9150600a856126789190613d03565b60306126849190613448565b60f81b81838151811061269a57612699613d34565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d69190613c9e565b9450612654565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612761576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361279b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a860008583866126e9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129698673ffffffffffffffffffffffffffffffffffffffff16612416565b15612a2e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129de6000878480600101955087612439565b612a14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361296f578260005414612a2957600080fd5b612a99565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612a2f575b816000819055505050612aaf60008583866126ef565b50505050565b828054612ac1906132a4565b90600052602060002090601f016020900481019282612ae35760008555612b2a565b82601f10612afc57805160ff1916838001178555612b2a565b82800160010185558215612b2a579182015b82811115612b29578251825591602001919060010190612b0e565b5b509050612b379190612b7e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b97576000816000905550600101612b7f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612be481612baf565b8114612bef57600080fd5b50565b600081359050612c0181612bdb565b92915050565b600060208284031215612c1d57612c1c612ba5565b5b6000612c2b84828501612bf2565b91505092915050565b60008115159050919050565b612c4981612c34565b82525050565b6000602082019050612c646000830184612c40565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca4578082015181840152602081019050612c89565b83811115612cb3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cd582612c6a565b612cdf8185612c75565b9350612cef818560208601612c86565b612cf881612cb9565b840191505092915050565b60006020820190508181036000830152612d1d8184612cca565b905092915050565b6000819050919050565b612d3881612d25565b82525050565b6000602082019050612d536000830184612d2f565b92915050565b612d6281612d25565b8114612d6d57600080fd5b50565b600081359050612d7f81612d59565b92915050565b600060208284031215612d9b57612d9a612ba5565b5b6000612da984828501612d70565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ddd82612db2565b9050919050565b612ded81612dd2565b82525050565b6000602082019050612e086000830184612de4565b92915050565b612e1781612dd2565b8114612e2257600080fd5b50565b600081359050612e3481612e0e565b92915050565b60008060408385031215612e5157612e50612ba5565b5b6000612e5f85828601612e25565b9250506020612e7085828601612d70565b9150509250929050565b600080600060608486031215612e9357612e92612ba5565b5b6000612ea186828701612e25565b9350506020612eb286828701612e25565b9250506040612ec386828701612d70565b9150509250925092565b612ed681612c34565b8114612ee157600080fd5b50565b600081359050612ef381612ecd565b92915050565b600060208284031215612f0f57612f0e612ba5565b5b6000612f1d84828501612ee4565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f6882612cb9565b810181811067ffffffffffffffff82111715612f8757612f86612f30565b5b80604052505050565b6000612f9a612b9b565b9050612fa68282612f5f565b919050565b600067ffffffffffffffff821115612fc657612fc5612f30565b5b612fcf82612cb9565b9050602081019050919050565b82818337600083830152505050565b6000612ffe612ff984612fab565b612f90565b90508281526020810184848401111561301a57613019612f2b565b5b613025848285612fdc565b509392505050565b600082601f83011261304257613041612f26565b5b8135613052848260208601612feb565b91505092915050565b60006020828403121561307157613070612ba5565b5b600082013567ffffffffffffffff81111561308f5761308e612baa565b5b61309b8482850161302d565b91505092915050565b6000602082840312156130ba576130b9612ba5565b5b60006130c884828501612e25565b91505092915050565b600080604083850312156130e8576130e7612ba5565b5b60006130f685828601612e25565b925050602061310785828601612ee4565b9150509250929050565b600067ffffffffffffffff82111561312c5761312b612f30565b5b61313582612cb9565b9050602081019050919050565b600061315561315084613111565b612f90565b90508281526020810184848401111561317157613170612f2b565b5b61317c848285612fdc565b509392505050565b600082601f83011261319957613198612f26565b5b81356131a9848260208601613142565b91505092915050565b600080600080608085870312156131cc576131cb612ba5565b5b60006131da87828801612e25565b94505060206131eb87828801612e25565b93505060406131fc87828801612d70565b925050606085013567ffffffffffffffff81111561321d5761321c612baa565b5b61322987828801613184565b91505092959194509250565b6000806040838503121561324c5761324b612ba5565b5b600061325a85828601612e25565b925050602061326b85828601612e25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132bc57607f821691505b6020821081036132cf576132ce613275565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061330b602083612c75565b9150613316826132d5565b602082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613377601f83612c75565b915061338282613341565b602082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b60006133e3601083612c75565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061345382612d25565b915061345e83612d25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561349357613492613419565b5b828201905092915050565b7f4e6f206d6f7265206c6566740000000000000000000000000000000000000000600082015250565b60006134d4600c83612c75565b91506134df8261349e565b602082019050919050565b60006020820190508181036000830152613503816134c7565b9050919050565b600061351582612d25565b915061352083612d25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561355957613558613419565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b600061359a601883612c75565b91506135a582613564565b602082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061362c602283612c75565b9150613637826135d0565b604082019050919050565b6000602082019050818103600083015261365b8161361f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136be602f83612c75565b91506136c982613662565b604082019050919050565b600060208201905081810360008301526136ed816136b1565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613721816132a4565b61372b81866136f4565b9450600182166000811461374657600181146137575761378a565b60ff1983168652818601935061378a565b613760856136ff565b60005b8381101561378257815481890152600182019150602081019050613763565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137c96001836136f4565b91506137d482613793565b600182019050919050565b60006137ea82612c6a565b6137f481856136f4565b9350613804818560208601612c86565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138466005836136f4565b915061385182613810565b600582019050919050565b60006138688285613714565b9150613873826137bc565b915061387f82846137df565b915061388a82613839565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006138cc601383612c75565b91506138d782613896565b602082019050919050565b600060208201905081810360008301526138fb816138bf565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613938601783612c75565b915061394382613902565b602082019050919050565b600060208201905081810360008301526139678161392b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139ca602683612c75565b91506139d58261396e565b604082019050919050565b600060208201905081810360008301526139f9816139bd565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a36601d83612c75565b9150613a4182613a00565b602082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b600081905092915050565b50565b6000613a87600083613a6c565b9150613a9282613a77565b600082019050919050565b6000613aa882613a7a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b0e603a83612c75565b9150613b1982613ab2565b604082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b6b82613b44565b613b758185613b4f565b9350613b85818560208601612c86565b613b8e81612cb9565b840191505092915050565b6000608082019050613bae6000830187612de4565b613bbb6020830186612de4565b613bc86040830185612d2f565b8181036060830152613bda8184613b60565b905095945050505050565b600081519050613bf481612bdb565b92915050565b600060208284031215613c1057613c0f612ba5565b5b6000613c1e84828501613be5565b91505092915050565b6000613c3282612d25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c6457613c63613419565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ca982612d25565b9150613cb483612d25565b925082613cc457613cc3613c6f565b5b828204905092915050565b6000613cda82612d25565b9150613ce583612d25565b925082821015613cf857613cf7613419565b5b828203905092915050565b6000613d0e82612d25565b9150613d1983612d25565b925082613d2957613d28613c6f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208dbe09ded7083b903a07ae9ca556922ad1d3aea3e99746639ef0287b051ebcfb64736f6c634300080e0033

Deployed Bytecode Sourcemap

48930:3330:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30040:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49233:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34656:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34219:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51742:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29289:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51877:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49371:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49415:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52131:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35521:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51588:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50981:142;;;;;;;;;;;;;:::i;:::-;;35762:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50577:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32961:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30409:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:103;;;;;;;;;;;;;:::i;:::-;;7155:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33322:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49285:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49327:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51998:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49525:1046;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34932:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36018:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49192:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51129:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49061:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49154:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35290:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50691:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8064:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30040:305;30142:4;30194:25;30179:40;;;:11;:40;;;;:105;;;;30251:33;30236:48;;;:11;:48;;;;30179:105;:158;;;;30301:36;30325:11;30301:23;:36::i;:::-;30179:158;30159:178;;30040:305;;;:::o;33153:100::-;33207:13;33240:5;33233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33153:100;:::o;49233:47::-;;;;:::o;34656:204::-;34724:7;34749:16;34757:7;34749;:16::i;:::-;34744:64;;34774:34;;;;;;;;;;;;;;34744:64;34828:15;:24;34844:7;34828:24;;;;;;;;;;;;;;;;;;;;;34821:31;;34656:204;;;:::o;34219:371::-;34292:13;34308:24;34324:7;34308:15;:24::i;:::-;34292:40;;34353:5;34347:11;;:2;:11;;;34343:48;;34367:24;;;;;;;;;;;;;;34343:48;34424:5;34408:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34434:37;34451:5;34458:12;:10;:12::i;:::-;34434:16;:37::i;:::-;34433:38;34408:63;34404:138;;;34495:35;;;;;;;;;;;;;;34404:138;34554:28;34563:2;34567:7;34576:5;34554:8;:28::i;:::-;34281:309;34219:371;;:::o;51742:129::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51852:13:::1;51835:14;:30;;;;51742:129:::0;:::o;29289:303::-;29333:7;29558:15;:13;:15::i;:::-;29543:12;;29527:13;;:28;:46;29520:53;;29289:303;:::o;51877:115::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51980:6:::1;51960:17;:26;;;;51877:115:::0;:::o;49371:39::-;;;;:::o;49415:37::-;;;;;;;;;;;;;:::o;52131:126::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52245:6:::1;52223:19;:28;;;;52131:126:::0;:::o;35521:170::-;35655:28;35665:4;35671:2;35675:7;35655:9;:28::i;:::-;35521:170;;;:::o;51588:148::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51711:19:::1;51690:18;;:40;;;;;;;;;;;;;;;;;;51588:148:::0;:::o;50981:142::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2129:1:::1;2727:7;;:19:::0;2719:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2129:1;2860:7;:18;;;;51056:61:::2;51082:10;51095:21;51056:17;:61::i;:::-;2085:1:::1;3039:7;:22;;;;50981:142::o:0;35762:185::-;35900:39;35917:4;35923:2;35927:7;35900:39;;;;;;;;;;;;:16;:39::i;:::-;35762:185;;;:::o;50577:108::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50672:7:::1;50657:12;:22;;;;;;;;;;;;:::i;:::-;;50577:108:::0;:::o;32961:125::-;33025:7;33052:21;33065:7;33052:12;:21::i;:::-;:26;;;33045:33;;32961:125;;;:::o;30409:206::-;30473:7;30514:1;30497:19;;:5;:19;;;30493:60;;30525:28;;;;;;;;;;;;;;30493:60;30579:12;:19;30592:5;30579:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30571:36;;30564:43;;30409:206;;;:::o;7806:103::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7871:30:::1;7898:1;7871:18;:30::i;:::-;7806:103::o:0;7155:87::-;7201:7;7228:6;;;;;;;;;;;7221:13;;7155:87;:::o;33322:104::-;33378:13;33411:7;33404:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33322:104;:::o;49285:37::-;;;;:::o;49327:39::-;;;;:::o;51998:127::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52113:6:::1;52094:16;:25;;;;51998:127:::0;:::o;49525:1046::-;49612:18;;;;;;;;;;;49604:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;49711:1;49699:9;;:13;;;;:::i;:::-;49682:14;49666:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49658:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49781:14;;49764;49741:20;;:37;;;;:::i;:::-;:54;49738:784;;;49869:9;49850:14;49830:17;;:34;;;;:::i;:::-;49829:49;;49807:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49738:784;;;50000:19;;49983:14;49959:21;49969:10;49959:9;:21::i;:::-;:38;;;;:::i;:::-;:60;49955:560;;;50094:9;50075:14;50055:17;;:34;;;;:::i;:::-;50054:49;;50032:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;50206:16;;50188:14;:34;;50166:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49955:560;;;50361:19;;50343:14;:37;;50317:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50489:14;50465:20;;:38;;;;;;;:::i;:::-;;;;;;;;49955:560;49738:784;50528:37;50538:10;50550:14;50528:9;:37::i;:::-;49525:1046;:::o;34932:287::-;35043:12;:10;:12::i;:::-;35031:24;;:8;:24;;;35027:54;;35064:17;;;;;;;;;;;;;;35027:54;35139:8;35094:18;:32;35113:12;:10;:12::i;:::-;35094:32;;;;;;;;;;;;;;;:42;35127:8;35094:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35192:8;35163:48;;35178:12;:10;:12::i;:::-;35163:48;;;35202:8;35163:48;;;;;;:::i;:::-;;;;;;;;34932:287;;:::o;36018:369::-;36185:28;36195:4;36201:2;36205:7;36185:9;:28::i;:::-;36228:15;:2;:13;;;:15::i;:::-;:76;;;;;36248:56;36279:4;36285:2;36289:7;36298:5;36248:30;:56::i;:::-;36247:57;36228:76;36224:156;;;36328:40;;;;;;;;;;;;;;36224:156;36018:369;;;;:::o;49192:36::-;;;;:::o;51129:312::-;51225:13;51266:17;51274:8;51266:7;:17::i;:::-;51250:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51386:12;51405:19;:8;:17;:19::i;:::-;51369:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51355:80;;51129:312;;;:::o;49061:88::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49154:33::-;;;;:::o;35290:164::-;35387:4;35411:18;:25;35430:5;35411:25;;;;;;;;;;;;;;;:35;35437:8;35411:35;;;;;;;;;;;;;;;;;;;;;;;;;35404:42;;35290:164;;;;:::o;50691:284::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50792:1:::1;50781:8;:12;50765:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50881:9;;50869:8;50853:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50837:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50938:31;50948:10;50960:8;50938:9;:31::i;:::-;50691:284:::0;:::o;8064:201::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8173:1:::1;8153:22;;:8;:22;;::::0;8145:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8229:28;8248:8;8229:18;:28::i;:::-;8064:201:::0;:::o;19939:157::-;20024:4;20063:25;20048:40;;;:11;:40;;;;20041:47;;19939:157;;;:::o;36642:174::-;36699:4;36742:7;36723:15;:13;:15::i;:::-;:26;;:53;;;;;36763:13;;36753:7;:23;36723:53;:85;;;;;36781:11;:20;36793:7;36781:20;;;;;;;;;;;:27;;;;;;;;;;;;36780:28;36723:85;36716:92;;36642:174;;;:::o;5879:98::-;5932:7;5959:10;5952:17;;5879:98;:::o;45868:196::-;46010:2;45983:15;:24;45999:7;45983:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46048:7;46044:2;46028:28;;46037:5;46028:28;;;;;;;;;;;;45868:196;;;:::o;29063:92::-;29119:7;29146:1;29139:8;;29063:92;:::o;40816:2130::-;40931:35;40969:21;40982:7;40969:12;:21::i;:::-;40931:59;;41029:4;41007:26;;:13;:18;;;:26;;;41003:67;;41042:28;;;;;;;;;;;;;;41003:67;41083:22;41125:4;41109:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41146:36;41163:4;41169:12;:10;:12::i;:::-;41146:16;:36::i;:::-;41109:73;:126;;;;41223:12;:10;:12::i;:::-;41199:36;;:20;41211:7;41199:11;:20::i;:::-;:36;;;41109:126;41083:153;;41254:17;41249:66;;41280:35;;;;;;;;;;;;;;41249:66;41344:1;41330:16;;:2;:16;;;41326:52;;41355:23;;;;;;;;;;;;;;41326:52;41391:43;41413:4;41419:2;41423:7;41432:1;41391:21;:43::i;:::-;41499:35;41516:1;41520:7;41529:4;41499:8;:35::i;:::-;41860:1;41830:12;:18;41843:4;41830:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41904:1;41876:12;:16;41889:2;41876:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41922:31;41956:11;:20;41968:7;41956:20;;;;;;;;;;;41922:54;;42007:2;41991:8;:13;;;:18;;;;;;;;;;;;;;;;;;42057:15;42024:8;:23;;;:49;;;;;;;;;;;;;;;;;;42325:19;42357:1;42347:7;:11;42325:33;;42373:31;42407:11;:24;42419:11;42407:24;;;;;;;;;;;42373:58;;42475:1;42450:27;;:8;:13;;;;;;;;;;;;:27;;;42446:384;;42660:13;;42645:11;:28;42641:174;;42714:4;42698:8;:13;;;:20;;;;;;;;;;;;;;;;;;42767:13;:28;;;42741:8;:23;;;:54;;;;;;;;;;;;;;;;;;42641:174;42446:384;41805:1036;;;42877:7;42873:2;42858:27;;42867:4;42858:27;;;;;;;;;;;;42896:42;42917:4;42923:2;42927:7;42936:1;42896:20;:42::i;:::-;40920:2026;;40816:2130;;;:::o;11117:317::-;11232:6;11207:21;:31;;11199:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11286:12;11304:9;:14;;11326:6;11304:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11285:52;;;11356:7;11348:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11188:246;11117:317;;:::o;31790:1109::-;31852:21;;:::i;:::-;31886:12;31901:7;31886:22;;31969:4;31950:15;:13;:15::i;:::-;:23;;:47;;;;;31984:13;;31977:4;:20;31950:47;31946:886;;;32018:31;32052:11;:17;32064:4;32052:17;;;;;;;;;;;32018:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32093:9;:16;;;32088:729;;32164:1;32138:28;;:9;:14;;;:28;;;32134:101;;32202:9;32195:16;;;;;;32134:101;32537:261;32544:4;32537:261;;;32577:6;;;;;;;;32622:11;:17;32634:4;32622:17;;;;;;;;;;;32610:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32696:1;32670:28;;:9;:14;;;:28;;;32666:109;;32738:9;32731:16;;;;;;32666:109;32537:261;;;32088:729;31999:833;31946:886;32860:31;;;;;;;;;;;;;;31790:1109;;;;:::o;8425:191::-;8499:16;8518:6;;;;;;;;;;;8499:25;;8544:8;8535:6;;:17;;;;;;;;;;;;;;;;;;8599:8;8568:40;;8589:8;8568:40;;;;;;;;;;;;8488:128;8425:191;:::o;36900:104::-;36969:27;36979:2;36983:8;36969:27;;;;;;;;;;;;:9;:27::i;:::-;36900:104;;:::o;9856:326::-;9916:4;10173:1;10151:7;:19;;;:23;10144:30;;9856:326;;;:::o;46556:667::-;46719:4;46756:2;46740:36;;;46777:12;:10;:12::i;:::-;46791:4;46797:7;46806:5;46740:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46736:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46991:1;46974:6;:13;:18;46970:235;;47020:40;;;;;;;;;;;;;;46970:235;47163:6;47157:13;47148:6;47144:2;47140:15;47133:38;46736:480;46869:45;;;46859:55;;;:6;:55;;;;46852:62;;;46556:667;;;;;;:::o;3441:723::-;3497:13;3727:1;3718:5;:10;3714:53;;3745:10;;;;;;;;;;;;;;;;;;;;;3714:53;3777:12;3792:5;3777:20;;3808:14;3833:78;3848:1;3840:4;:9;3833:78;;3866:8;;;;;:::i;:::-;;;;3897:2;3889:10;;;;;:::i;:::-;;;3833:78;;;3921:19;3953:6;3943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3921:39;;3971:154;3987:1;3978:5;:10;3971:154;;4015:1;4005:11;;;;;:::i;:::-;;;4082:2;4074:5;:10;;;;:::i;:::-;4061:2;:24;;;;:::i;:::-;4048:39;;4031:6;4038;4031:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4111:2;4102:11;;;;;:::i;:::-;;;3971:154;;;4149:6;4135:21;;;;;3441:723;;;;:::o;47871:159::-;;;;;:::o;48689:158::-;;;;;:::o;37378:1751::-;37501:20;37524:13;;37501:36;;37566:1;37552:16;;:2;:16;;;37548:48;;37577:19;;;;;;;;;;;;;;37548:48;37623:1;37611:8;:13;37607:44;;37633:18;;;;;;;;;;;;;;37607:44;37664:61;37694:1;37698:2;37702:12;37716:8;37664:21;:61::i;:::-;38037:8;38002:12;:16;38015:2;38002:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38101:8;38061:12;:16;38074:2;38061:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38160:2;38127:11;:25;38139:12;38127:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38227:15;38177:11;:25;38189:12;38177:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38260:20;38283:12;38260:35;;38310:11;38339:8;38324:12;:23;38310:37;;38368:15;:2;:13;;;:15::i;:::-;38364:633;;;38404:314;38460:12;38456:2;38435:38;;38452:1;38435:38;;;;;;;;;;;;38501:69;38540:1;38544:2;38548:14;;;;;;38564:5;38501:30;:69::i;:::-;38496:174;;38606:40;;;;;;;;;;;;;;38496:174;38713:3;38697:12;:19;38404:314;;38799:12;38782:13;;:29;38778:43;;38813:8;;;38778:43;38364:633;;;38862:120;38918:14;;;;;;38914:2;38893:40;;38910:1;38893:40;;;;;;;;;;;;38977:3;38961:12;:19;38862:120;;38364:633;39027:12;39011:13;:28;;;;37977:1074;;39061:60;39090:1;39094:2;39098:12;39112:8;39061:20;:60::i;:::-;37490:1639;37378:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:166::-;15071:18;15067:1;15059:6;15055:14;15048:42;14931:166;:::o;15103:366::-;15245:3;15266:67;15330:2;15325:3;15266:67;:::i;:::-;15259:74;;15342:93;15431:3;15342:93;:::i;:::-;15460:2;15455:3;15451:12;15444:19;;15103:366;;;:::o;15475:419::-;15641:4;15679:2;15668:9;15664:18;15656:26;;15728:9;15722:4;15718:20;15714:1;15703:9;15699:17;15692:47;15756:131;15882:4;15756:131;:::i;:::-;15748:139;;15475:419;;;:::o;15900:180::-;15948:77;15945:1;15938:88;16045:4;16042:1;16035:15;16069:4;16066:1;16059:15;16086:305;16126:3;16145:20;16163:1;16145:20;:::i;:::-;16140:25;;16179:20;16197:1;16179:20;:::i;:::-;16174:25;;16333:1;16265:66;16261:74;16258:1;16255:81;16252:107;;;16339:18;;:::i;:::-;16252:107;16383:1;16380;16376:9;16369:16;;16086:305;;;;:::o;16397:162::-;16537:14;16533:1;16525:6;16521:14;16514:38;16397:162;:::o;16565:366::-;16707:3;16728:67;16792:2;16787:3;16728:67;:::i;:::-;16721:74;;16804:93;16893:3;16804:93;:::i;:::-;16922:2;16917:3;16913:12;16906:19;;16565:366;;;:::o;16937:419::-;17103:4;17141:2;17130:9;17126:18;17118:26;;17190:9;17184:4;17180:20;17176:1;17165:9;17161:17;17154:47;17218:131;17344:4;17218:131;:::i;:::-;17210:139;;16937:419;;;:::o;17362:348::-;17402:7;17425:20;17443:1;17425:20;:::i;:::-;17420:25;;17459:20;17477:1;17459:20;:::i;:::-;17454:25;;17647:1;17579:66;17575:74;17572:1;17569:81;17564:1;17557:9;17550:17;17546:105;17543:131;;;17654:18;;:::i;:::-;17543:131;17702:1;17699;17695:9;17684:20;;17362:348;;;;:::o;17716:174::-;17856:26;17852:1;17844:6;17840:14;17833:50;17716:174;:::o;17896:366::-;18038:3;18059:67;18123:2;18118:3;18059:67;:::i;:::-;18052:74;;18135:93;18224:3;18135:93;:::i;:::-;18253:2;18248:3;18244:12;18237:19;;17896:366;;;:::o;18268:419::-;18434:4;18472:2;18461:9;18457:18;18449:26;;18521:9;18515:4;18511:20;18507:1;18496:9;18492:17;18485:47;18549:131;18675:4;18549:131;:::i;:::-;18541:139;;18268:419;;;:::o;18693:221::-;18833:34;18829:1;18821:6;18817:14;18810:58;18902:4;18897:2;18889:6;18885:15;18878:29;18693:221;:::o;18920:366::-;19062:3;19083:67;19147:2;19142:3;19083:67;:::i;:::-;19076:74;;19159:93;19248:3;19159:93;:::i;:::-;19277:2;19272:3;19268:12;19261:19;;18920:366;;;:::o;19292:419::-;19458:4;19496:2;19485:9;19481:18;19473:26;;19545:9;19539:4;19535:20;19531:1;19520:9;19516:17;19509:47;19573:131;19699:4;19573:131;:::i;:::-;19565:139;;19292:419;;;:::o;19717:234::-;19857:34;19853:1;19845:6;19841:14;19834:58;19926:17;19921:2;19913:6;19909:15;19902:42;19717:234;:::o;19957:366::-;20099:3;20120:67;20184:2;20179:3;20120:67;:::i;:::-;20113:74;;20196:93;20285:3;20196:93;:::i;:::-;20314:2;20309:3;20305:12;20298:19;;19957:366;;;:::o;20329:419::-;20495:4;20533:2;20522:9;20518:18;20510:26;;20582:9;20576:4;20572:20;20568:1;20557:9;20553:17;20546:47;20610:131;20736:4;20610:131;:::i;:::-;20602:139;;20329:419;;;:::o;20754:148::-;20856:11;20893:3;20878:18;;20754:148;;;;:::o;20908:141::-;20957:4;20980:3;20972:11;;21003:3;21000:1;20993:14;21037:4;21034:1;21024:18;21016:26;;20908:141;;;:::o;21079:845::-;21182:3;21219:5;21213:12;21248:36;21274:9;21248:36;:::i;:::-;21300:89;21382:6;21377:3;21300:89;:::i;:::-;21293:96;;21420:1;21409:9;21405:17;21436:1;21431:137;;;;21582:1;21577:341;;;;21398:520;;21431:137;21515:4;21511:9;21500;21496:25;21491:3;21484:38;21551:6;21546:3;21542:16;21535:23;;21431:137;;21577:341;21644:38;21676:5;21644:38;:::i;:::-;21704:1;21718:154;21732:6;21729:1;21726:13;21718:154;;;21806:7;21800:14;21796:1;21791:3;21787:11;21780:35;21856:1;21847:7;21843:15;21832:26;;21754:4;21751:1;21747:12;21742:17;;21718:154;;;21901:6;21896:3;21892:16;21885:23;;21584:334;;21398:520;;21186:738;;21079:845;;;;:::o;21930:151::-;22070:3;22066:1;22058:6;22054:14;22047:27;21930:151;:::o;22087:400::-;22247:3;22268:84;22350:1;22345:3;22268:84;:::i;:::-;22261:91;;22361:93;22450:3;22361:93;:::i;:::-;22479:1;22474:3;22470:11;22463:18;;22087:400;;;:::o;22493:377::-;22599:3;22627:39;22660:5;22627:39;:::i;:::-;22682:89;22764:6;22759:3;22682:89;:::i;:::-;22675:96;;22780:52;22825:6;22820:3;22813:4;22806:5;22802:16;22780:52;:::i;:::-;22857:6;22852:3;22848:16;22841:23;;22603:267;22493:377;;;;:::o;22876:155::-;23016:7;23012:1;23004:6;23000:14;22993:31;22876:155;:::o;23037:400::-;23197:3;23218:84;23300:1;23295:3;23218:84;:::i;:::-;23211:91;;23311:93;23400:3;23311:93;:::i;:::-;23429:1;23424:3;23420:11;23413:18;;23037:400;;;:::o;23443:961::-;23822:3;23844:92;23932:3;23923:6;23844:92;:::i;:::-;23837:99;;23953:148;24097:3;23953:148;:::i;:::-;23946:155;;24118:95;24209:3;24200:6;24118:95;:::i;:::-;24111:102;;24230:148;24374:3;24230:148;:::i;:::-;24223:155;;24395:3;24388:10;;23443:961;;;;;:::o;24410:169::-;24550:21;24546:1;24538:6;24534:14;24527:45;24410:169;:::o;24585:366::-;24727:3;24748:67;24812:2;24807:3;24748:67;:::i;:::-;24741:74;;24824:93;24913:3;24824:93;:::i;:::-;24942:2;24937:3;24933:12;24926:19;;24585:366;;;:::o;24957:419::-;25123:4;25161:2;25150:9;25146:18;25138:26;;25210:9;25204:4;25200:20;25196:1;25185:9;25181:17;25174:47;25238:131;25364:4;25238:131;:::i;:::-;25230:139;;24957:419;;;:::o;25382:173::-;25522:25;25518:1;25510:6;25506:14;25499:49;25382:173;:::o;25561:366::-;25703:3;25724:67;25788:2;25783:3;25724:67;:::i;:::-;25717:74;;25800:93;25889:3;25800:93;:::i;:::-;25918:2;25913:3;25909:12;25902:19;;25561:366;;;:::o;25933:419::-;26099:4;26137:2;26126:9;26122:18;26114:26;;26186:9;26180:4;26176:20;26172:1;26161:9;26157:17;26150:47;26214:131;26340:4;26214:131;:::i;:::-;26206:139;;25933:419;;;:::o;26358:225::-;26498:34;26494:1;26486:6;26482:14;26475:58;26567:8;26562:2;26554:6;26550:15;26543:33;26358:225;:::o;26589:366::-;26731:3;26752:67;26816:2;26811:3;26752:67;:::i;:::-;26745:74;;26828:93;26917:3;26828:93;:::i;:::-;26946:2;26941:3;26937:12;26930:19;;26589:366;;;:::o;26961:419::-;27127:4;27165:2;27154:9;27150:18;27142:26;;27214:9;27208:4;27204:20;27200:1;27189:9;27185:17;27178:47;27242:131;27368:4;27242:131;:::i;:::-;27234:139;;26961:419;;;:::o;27386:179::-;27526:31;27522:1;27514:6;27510:14;27503:55;27386:179;:::o;27571:366::-;27713:3;27734:67;27798:2;27793:3;27734:67;:::i;:::-;27727:74;;27810:93;27899:3;27810:93;:::i;:::-;27928:2;27923:3;27919:12;27912:19;;27571:366;;;:::o;27943:419::-;28109:4;28147:2;28136:9;28132:18;28124:26;;28196:9;28190:4;28186:20;28182:1;28171:9;28167:17;28160:47;28224:131;28350:4;28224:131;:::i;:::-;28216:139;;27943:419;;;:::o;28368:147::-;28469:11;28506:3;28491:18;;28368:147;;;;:::o;28521:114::-;;:::o;28641:398::-;28800:3;28821:83;28902:1;28897:3;28821:83;:::i;:::-;28814:90;;28913:93;29002:3;28913:93;:::i;:::-;29031:1;29026:3;29022:11;29015:18;;28641:398;;;:::o;29045:379::-;29229:3;29251:147;29394:3;29251:147;:::i;:::-;29244:154;;29415:3;29408:10;;29045:379;;;:::o;29430:245::-;29570:34;29566:1;29558:6;29554:14;29547:58;29639:28;29634:2;29626:6;29622:15;29615:53;29430:245;:::o;29681:366::-;29823:3;29844:67;29908:2;29903:3;29844:67;:::i;:::-;29837:74;;29920:93;30009:3;29920:93;:::i;:::-;30038:2;30033:3;30029:12;30022:19;;29681:366;;;:::o;30053:419::-;30219:4;30257:2;30246:9;30242:18;30234:26;;30306:9;30300:4;30296:20;30292:1;30281:9;30277:17;30270:47;30334:131;30460:4;30334:131;:::i;:::-;30326:139;;30053:419;;;:::o;30478:98::-;30529:6;30563:5;30557:12;30547:22;;30478:98;;;:::o;30582:168::-;30665:11;30699:6;30694:3;30687:19;30739:4;30734:3;30730:14;30715:29;;30582:168;;;;:::o;30756:360::-;30842:3;30870:38;30902:5;30870:38;:::i;:::-;30924:70;30987:6;30982:3;30924:70;:::i;:::-;30917:77;;31003:52;31048:6;31043:3;31036:4;31029:5;31025:16;31003:52;:::i;:::-;31080:29;31102:6;31080:29;:::i;:::-;31075:3;31071:39;31064:46;;30846:270;30756:360;;;;:::o;31122:640::-;31317:4;31355:3;31344:9;31340:19;31332:27;;31369:71;31437:1;31426:9;31422:17;31413:6;31369:71;:::i;:::-;31450:72;31518:2;31507:9;31503:18;31494:6;31450:72;:::i;:::-;31532;31600:2;31589:9;31585:18;31576:6;31532:72;:::i;:::-;31651:9;31645:4;31641:20;31636:2;31625:9;31621:18;31614:48;31679:76;31750:4;31741:6;31679:76;:::i;:::-;31671:84;;31122:640;;;;;;;:::o;31768:141::-;31824:5;31855:6;31849:13;31840:22;;31871:32;31897:5;31871:32;:::i;:::-;31768:141;;;;:::o;31915:349::-;31984:6;32033:2;32021:9;32012:7;32008:23;32004:32;32001:119;;;32039:79;;:::i;:::-;32001:119;32159:1;32184:63;32239:7;32230:6;32219:9;32215:22;32184:63;:::i;:::-;32174:73;;32130:127;31915:349;;;;:::o;32270:233::-;32309:3;32332:24;32350:5;32332:24;:::i;:::-;32323:33;;32378:66;32371:5;32368:77;32365:103;;32448:18;;:::i;:::-;32365:103;32495:1;32488:5;32484:13;32477:20;;32270:233;;;:::o;32509:180::-;32557:77;32554:1;32547:88;32654:4;32651:1;32644:15;32678:4;32675:1;32668:15;32695:185;32735:1;32752:20;32770:1;32752:20;:::i;:::-;32747:25;;32786:20;32804:1;32786:20;:::i;:::-;32781:25;;32825:1;32815:35;;32830:18;;:::i;:::-;32815:35;32872:1;32869;32865:9;32860:14;;32695:185;;;;:::o;32886:191::-;32926:4;32946:20;32964:1;32946:20;:::i;:::-;32941:25;;32980:20;32998:1;32980:20;:::i;:::-;32975:25;;33019:1;33016;33013:8;33010:34;;;33024:18;;:::i;:::-;33010:34;33069:1;33066;33062:9;33054:17;;32886:191;;;;:::o;33083:176::-;33115:1;33132:20;33150:1;33132:20;:::i;:::-;33127:25;;33166:20;33184:1;33166:20;:::i;:::-;33161:25;;33205:1;33195:35;;33210:18;;:::i;:::-;33195:35;33251:1;33248;33244:9;33239:14;;33083:176;;;;:::o;33265:180::-;33313:77;33310:1;33303:88;33410:4;33407:1;33400:15;33434:4;33431:1;33424:15

Swarm Source

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