ETH Price: $2,607.25 (+0.30%)
Gas: 1 Gwei

Token

Mutant Fools (Mutant Fools)
 

Overview

Max Total Supply

696 Mutant Fools

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
demone.eth
Balance
5 Mutant Fools
0xdacee56bb41c60561bfce8686f1d416194755b68
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:
MutantFools

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-31
*/

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]

// 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/security/[email protected]

// 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/introspection/[email protected]

// 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/token/ERC721/[email protected]

// 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/[email protected]

// 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/token/ERC721/extensions/[email protected]

// 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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @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/utils/[email protected]

// 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/introspection/[email protected]

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


pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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


// File contracts/MutantFools.sol


pragma solidity ^0.8.0;




contract MutantFools is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable maxPerTimeDuringMint;
  uint256 public publicPrice = 0.02 ether;
  uint256 public publicSaleStartTime = 1648728000;

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxTimeSize_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Mutant Fools", "Mutant Fools", maxBatchSize_,collectionSize_) {
    maxPerTimeDuringMint = maxTimeSize_;
    maxPerAddressDuringMint = maxBatchSize_;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function allowlistMint() external payable callerIsUser {
    require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    _safeMint(msg.sender, allowlist[msg.sender]);
    allowlist[msg.sender] = 0;
  }

  function publicSaleMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    require(
      isPublicSaleOn(publicSaleStartTime),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(quantity <= maxPerTimeDuringMint, "too much mint!");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicSaleStartTime_
  ) public view returns (bool) {
    return block.timestamp >= publicSaleStartTime_;
  }

  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // metadata URI
  string private _baseTokenURI;
  
  function setPrice(uint256 _publicPrice) external onlyOwner {
    publicPrice = _publicPrice;
  }

  function setStartTime(uint256 _publicSaleStartTime) external onlyOwner {
    publicSaleStartTime = _publicSaleStartTime;
  }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxTimeSize_","type":"uint256"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicSaleStartTime_","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTimeDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleStartTime","type":"uint256"}],"name":"setStartTime","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526000600155600060085566470de4df820000600a5563624597c0600b553480156200002f57600080fd5b5060405162002f2738038062002f278339810160408190526200005291620002cd565b6040518060400160405280600c81526020016b4d7574616e7420466f6f6c7360a01b8152506040518060400160405280600c81526020016b4d7574616e7420466f6f6c7360a01b8152508383620000b8620000b2620001d360201b60201c565b620001d7565b60008111620001255760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001875760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200011c565b83516200019c90600290602087019062000227565b508251620001b290600390602086019062000227565b5060a091909152608052505060016009555060e09190915260c05262000339565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023590620002fc565b90600052602060002090601f016020900481019282620002595760008555620002a4565b82601f106200027457805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a457825182559160200191906001019062000287565b50620002b2929150620002b6565b5090565b5b80821115620002b25760008155600101620002b7565b600080600060608486031215620002e357600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200031157607f821691505b602082108114156200033357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612b83620003a460003960008181610609015261130701526000818161046a0152611368015260008181611c1901528181611c43015261218c015260008181610c830152818161128f01528181611a010152611a330152612b836000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063b05863d5116100a0578063c87b56dd1161006f578063c87b56dd1461062b578063d7224ba01461064b578063dc33e68114610661578063e985e9c514610681578063f2fde38b146106ca57600080fd5b8063b05863d5146105a4578063b3ab66b0146105c4578063b88d4fde146105d7578063c46ce4d2146105f757600080fd5b806395d89b41116100e757806395d89b4114610517578063a22cb4651461052c578063a7cd52cb1461054c578063a945bf8014610579578063ac4460021461058f57600080fd5b80638bc35c2f146104585780638da5cb5b1461048c57806391b7f5ed146104aa5780639231ab2a146104ca57600080fd5b806341fbddbd1161019b5780635ec085191161016a5780635ec08519146103cc5780636352211e146103ed5780636bb7b1d91461040d57806370a0823114610423578063715018a61461044357600080fd5b806341fbddbd1461036457806342842e0e1461036c5780634f6ccce71461038c57806355f804b3146103ac57600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632f745c59146103245780633e0a322d1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461273c565b6106ea565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610757565b6040516102409190612898565b34801561027757600080fd5b5061028b6102863660046127e7565b6107e9565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461264c565b610879565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612515565b610991565b34801561031057600080fd5b506102c361031f3660046127e7565b61099c565b34801561033057600080fd5b506102d661033f36600461264c565b610a2f565b34801561035057600080fd5b506102c361035f3660046127e7565b610ba7565b6102c3610bd6565b34801561037857600080fd5b506102c3610387366004612515565b610d25565b34801561039857600080fd5b506102d66103a73660046127e7565b610d40565b3480156103b857600080fd5b506102c36103c7366004612776565b610da9565b3480156103d857600080fd5b506102346103e73660046127e7565b42101590565b3480156103f957600080fd5b5061028b6104083660046127e7565b610ddf565b34801561041957600080fd5b506102d6600b5481565b34801561042f57600080fd5b506102d661043e3660046124c7565b610df1565b34801561044f57600080fd5b506102c3610e82565b34801561046457600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561049857600080fd5b506000546001600160a01b031661028b565b3480156104b657600080fd5b506102c36104c53660046127e7565b610eb8565b3480156104d657600080fd5b506104ea6104e53660046127e7565b610ee7565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610240565b34801561052357600080fd5b5061025e610f04565b34801561053857600080fd5b506102c3610547366004612610565b610f13565b34801561055857600080fd5b506102d66105673660046124c7565b600c6020526000908152604090205481565b34801561058557600080fd5b506102d6600a5481565b34801561059b57600080fd5b506102c3610fd8565b3480156105b057600080fd5b506102c36105bf366004612676565b6110e5565b6102c36105d23660046127e7565b6111ec565b3480156105e357600080fd5b506102c36105f2366004612551565b611405565b34801561060357600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561063757600080fd5b5061025e6106463660046127e7565b61143e565b34801561065757600080fd5b506102d660085481565b34801561066d57600080fd5b506102d661067c3660046124c7565b61150b565b34801561068d57600080fd5b5061023461069c3660046124e2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d657600080fd5b506102c36106e53660046124c7565b611516565b60006001600160e01b031982166380ac58cd60e01b148061071b57506001600160e01b03198216635b5e139f60e01b145b8061073657506001600160e01b0319821663780e9d6360e01b145b8061075157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076690612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612a75565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b60006107f6826001541190565b61085d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088482610ddf565b9050806001600160a01b0316836001600160a01b031614156108f35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610854565b336001600160a01b038216148061090f575061090f813361069c565b6109815760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610854565b61098c8383836115ae565b505050565b61098c83838361160a565b6000546001600160a01b031633146109c65760405162461bcd60e51b8152600401610854906128ab565b60026009541415610a195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600955610a2781611990565b506001600955565b6000610a3a83610df1565b8210610a935760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610854565b6000610a9e60015490565b905060008060005b83811015610b47576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610af857805192505b876001600160a01b0316836001600160a01b03161415610b345786841415610b265750935061075192505050565b83610b3081612ab0565b9450505b5080610b3f81612ab0565b915050610aa6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610854565b6000546001600160a01b03163314610bd15760405162461bcd60e51b8152600401610854906128ab565b600b55565b323314610c255760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610854565b336000908152600c6020526040902054610c815760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610854565b7f0000000000000000000000000000000000000000000000000000000000000000610cab60015490565b610cb69060016129a8565b1115610cf95760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610854565b336000818152600c6020526040902054610d139190611b79565b336000908152600c6020526040812055565b61098c83838360405180602001604052806000815250611405565b6000610d4b60015490565b8210610da55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610854565b5090565b6000546001600160a01b03163314610dd35760405162461bcd60e51b8152600401610854906128ab565b61098c600d83836123a9565b6000610dea82611b97565b5192915050565b60006001600160a01b038216610e5d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610854565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610eac5760405162461bcd60e51b8152600401610854906128ab565b610eb66000611d40565b565b6000546001600160a01b03163314610ee25760405162461bcd60e51b8152600401610854906128ab565b600a55565b604080518082019091526000808252602082015261075182611b97565b60606003805461076690612a75565b6001600160a01b038216331415610f6c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610854565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110025760405162461bcd60e51b8152600401610854906128ab565b600260095414156110555760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600955604051600090339047908381818185875af1925050503d806000811461109c576040519150601f19603f3d011682016040523d82523d6000602084013e6110a1565b606091505b5050905080610a275760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610854565b6000546001600160a01b0316331461110f5760405162461bcd60e51b8152600401610854906128ab565b80518251146111715760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610854565b60005b825181101561098c5781818151811061118f5761118f612b0b565b6020026020010151600c60008584815181106111ad576111ad612b0b565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806111e490612ab0565b915050611174565b32331461123b5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610854565b600b5442101561128d5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610854565b7f0000000000000000000000000000000000000000000000000000000000000000816112b860015490565b6112c291906129a8565b11156113055760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610854565b7f00000000000000000000000000000000000000000000000000000000000000008111156113665760405162461bcd60e51b815260206004820152600e60248201526d746f6f206d756368206d696e742160901b6044820152606401610854565b7f0000000000000000000000000000000000000000000000000000000000000000816113913361150b565b61139b91906129a8565b11156113e25760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610854565b6113ec3382611b79565b61140281600a546113fd91906129d4565b611d90565b50565b61141084848461160a565b61141c84848484611e17565b6114385760405162461bcd60e51b8152600401610854906128e0565b50505050565b606061144b826001541190565b6114af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610854565b60006114b9611f25565b905060008151116114d95760405180602001604052806000815250611504565b806114e384611f34565b6040516020016114f492919061282c565b6040516020818303038152906040525b9392505050565b600061075182612031565b6000546001600160a01b031633146115405760405162461bcd60e51b8152600401610854906128ab565b6001600160a01b0381166115a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b61140281611d40565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061161582611b97565b80519091506000906001600160a01b0316336001600160a01b0316148061164c575033611641846107e9565b6001600160a01b0316145b8061165e5750815161165e903361069c565b9050806116c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610854565b846001600160a01b031682600001516001600160a01b03161461173c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610854565b6001600160a01b0384166117a05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610854565b6117b060008484600001516115ae565b6001600160a01b03851660009081526005602052604081208054600192906117e29084906001600160801b03166129f3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261182e91859116612986565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118b58460016129a8565b6000818152600460205260409020549091506001600160a01b0316611946576118df816001541190565b156119465760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816119e05760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610854565b600060016119ee84846129a8565b6119f89190612a1b565b9050611a2560017f0000000000000000000000000000000000000000000000000000000000000000612a1b565b811115611a5a57611a5760017f0000000000000000000000000000000000000000000000000000000000000000612a1b565b90505b611a65816001541190565b611ac05760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610854565b815b818111611b65576000818152600460205260409020546001600160a01b0316611b53576000611af082611b97565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b5d81612ab0565b915050611ac2565b50611b718160016129a8565b600855505050565b611b938282604051806020016040528060008152506120cf565b5050565b6040805180820190915260008082526020820152611bb6826001541190565b611c155760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610854565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c7657611c687f000000000000000000000000000000000000000000000000000000000000000084612a1b565b611c739060016129a8565b90505b825b818110611cdf576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ccc57949350505050565b5080611cd781612a5e565b915050611c78565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610854565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80341015611dd95760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610854565b8034111561140257336108fc611def8334612a1b565b6040518115909202916000818181858888f19350505050158015611b93573d6000803e3d6000fd5b60006001600160a01b0384163b15611f1957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5b90339089908890889060040161285b565b602060405180830381600087803b158015611e7557600080fd5b505af1925050508015611ea5575060408051601f3d908101601f19168201909252611ea291810190612759565b60015b611eff573d808015611ed3576040519150601f19603f3d011682016040523d82523d6000602084013e611ed8565b606091505b508051611ef75760405162461bcd60e51b8152600401610854906128e0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f1d565b5060015b949350505050565b6060600d805461076690612a75565b606081611f585750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f825780611f6c81612ab0565b9150611f7b9050600a836129c0565b9150611f5c565b6000816001600160401b03811115611f9c57611f9c612b21565b6040519080825280601f01601f191660200182016040528015611fc6576020820181803683370190505b5090505b8415611f1d57611fdb600183612a1b565b9150611fe8600a86612acb565b611ff39060306129a8565b60f81b81838151811061200857612008612b0b565b60200101906001600160f81b031916908160001a90535061202a600a866129c0565b9450611fca565b60006001600160a01b0382166120a35760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610854565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166121325760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610854565b61213d816001541190565b1561218a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610854565b7f00000000000000000000000000000000000000000000000000000000000000008311156122055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610854565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612261908790612986565b6001600160801b0316815260200185836020015161227f9190612986565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561239e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123626000888488611e17565b61237e5760405162461bcd60e51b8152600401610854906128e0565b8161238881612ab0565b925050808061239690612ab0565b915050612315565b506001819055611988565b8280546123b590612a75565b90600052602060002090601f0160209004810192826123d7576000855561241d565b82601f106123f05782800160ff1982351617855561241d565b8280016001018555821561241d579182015b8281111561241d578235825591602001919060010190612402565b50610da59291505b80821115610da55760008155600101612425565b80356001600160a01b038116811461245057600080fd5b919050565b600082601f83011261246657600080fd5b8135602061247b61247683612963565b612933565b80838252828201915082860187848660051b890101111561249b57600080fd5b60005b858110156124ba5781358452928401929084019060010161249e565b5090979650505050505050565b6000602082840312156124d957600080fd5b61150482612439565b600080604083850312156124f557600080fd5b6124fe83612439565b915061250c60208401612439565b90509250929050565b60008060006060848603121561252a57600080fd5b61253384612439565b925061254160208501612439565b9150604084013590509250925092565b6000806000806080858703121561256757600080fd5b61257085612439565b9350602061257f818701612439565b93506040860135925060608601356001600160401b03808211156125a257600080fd5b818801915088601f8301126125b657600080fd5b8135818111156125c8576125c8612b21565b6125da601f8201601f19168501612933565b915080825289848285010111156125f057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561262357600080fd5b61262c83612439565b91506020830135801515811461264157600080fd5b809150509250929050565b6000806040838503121561265f57600080fd5b61266883612439565b946020939093013593505050565b6000806040838503121561268957600080fd5b82356001600160401b03808211156126a057600080fd5b818501915085601f8301126126b457600080fd5b813560206126c461247683612963565b8083825282820191508286018a848660051b89010111156126e457600080fd5b600096505b8487101561270e576126fa81612439565b8352600196909601959183019183016126e9565b509650508601359250508082111561272557600080fd5b5061273285828601612455565b9150509250929050565b60006020828403121561274e57600080fd5b813561150481612b37565b60006020828403121561276b57600080fd5b815161150481612b37565b6000806020838503121561278957600080fd5b82356001600160401b03808211156127a057600080fd5b818501915085601f8301126127b457600080fd5b8135818111156127c357600080fd5b8660208285010111156127d557600080fd5b60209290920196919550909350505050565b6000602082840312156127f957600080fd5b5035919050565b60008151808452612818816020860160208601612a32565b601f01601f19169290920160200192915050565b6000835161283e818460208801612a32565b835190830190612852818360208801612a32565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288e90830184612800565b9695505050505050565b6020815260006115046020830184612800565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561295b5761295b612b21565b604052919050565b60006001600160401b0382111561297c5761297c612b21565b5060051b60200190565b60006001600160801b0380831681851680830382111561285257612852612adf565b600082198211156129bb576129bb612adf565b500190565b6000826129cf576129cf612af5565b500490565b60008160001904831182151516156129ee576129ee612adf565b500290565b60006001600160801b0383811690831681811015612a1357612a13612adf565b039392505050565b600082821015612a2d57612a2d612adf565b500390565b60005b83811015612a4d578181015183820152602001612a35565b838111156114385750506000910152565b600081612a6d57612a6d612adf565b506000190190565b600181811c90821680612a8957607f821691505b60208210811415612aaa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac457612ac4612adf565b5060010190565b600082612ada57612ada612af5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140257600080fdfea264697066735822122060fae3ba37cf25b2849027cb2066d422b6a180f8346867319df3c84d62750fa964736f6c63430008060033000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000001093

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063b05863d5116100a0578063c87b56dd1161006f578063c87b56dd1461062b578063d7224ba01461064b578063dc33e68114610661578063e985e9c514610681578063f2fde38b146106ca57600080fd5b8063b05863d5146105a4578063b3ab66b0146105c4578063b88d4fde146105d7578063c46ce4d2146105f757600080fd5b806395d89b41116100e757806395d89b4114610517578063a22cb4651461052c578063a7cd52cb1461054c578063a945bf8014610579578063ac4460021461058f57600080fd5b80638bc35c2f146104585780638da5cb5b1461048c57806391b7f5ed146104aa5780639231ab2a146104ca57600080fd5b806341fbddbd1161019b5780635ec085191161016a5780635ec08519146103cc5780636352211e146103ed5780636bb7b1d91461040d57806370a0823114610423578063715018a61461044357600080fd5b806341fbddbd1461036457806342842e0e1461036c5780634f6ccce71461038c57806355f804b3146103ac57600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632f745c59146103245780633e0a322d1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461273c565b6106ea565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610757565b6040516102409190612898565b34801561027757600080fd5b5061028b6102863660046127e7565b6107e9565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461264c565b610879565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612515565b610991565b34801561031057600080fd5b506102c361031f3660046127e7565b61099c565b34801561033057600080fd5b506102d661033f36600461264c565b610a2f565b34801561035057600080fd5b506102c361035f3660046127e7565b610ba7565b6102c3610bd6565b34801561037857600080fd5b506102c3610387366004612515565b610d25565b34801561039857600080fd5b506102d66103a73660046127e7565b610d40565b3480156103b857600080fd5b506102c36103c7366004612776565b610da9565b3480156103d857600080fd5b506102346103e73660046127e7565b42101590565b3480156103f957600080fd5b5061028b6104083660046127e7565b610ddf565b34801561041957600080fd5b506102d6600b5481565b34801561042f57600080fd5b506102d661043e3660046124c7565b610df1565b34801561044f57600080fd5b506102c3610e82565b34801561046457600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000001481565b34801561049857600080fd5b506000546001600160a01b031661028b565b3480156104b657600080fd5b506102c36104c53660046127e7565b610eb8565b3480156104d657600080fd5b506104ea6104e53660046127e7565b610ee7565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610240565b34801561052357600080fd5b5061025e610f04565b34801561053857600080fd5b506102c3610547366004612610565b610f13565b34801561055857600080fd5b506102d66105673660046124c7565b600c6020526000908152604090205481565b34801561058557600080fd5b506102d6600a5481565b34801561059b57600080fd5b506102c3610fd8565b3480156105b057600080fd5b506102c36105bf366004612676565b6110e5565b6102c36105d23660046127e7565b6111ec565b3480156105e357600080fd5b506102c36105f2366004612551565b611405565b34801561060357600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000a81565b34801561063757600080fd5b5061025e6106463660046127e7565b61143e565b34801561065757600080fd5b506102d660085481565b34801561066d57600080fd5b506102d661067c3660046124c7565b61150b565b34801561068d57600080fd5b5061023461069c3660046124e2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d657600080fd5b506102c36106e53660046124c7565b611516565b60006001600160e01b031982166380ac58cd60e01b148061071b57506001600160e01b03198216635b5e139f60e01b145b8061073657506001600160e01b0319821663780e9d6360e01b145b8061075157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076690612a75565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612a75565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b60006107f6826001541190565b61085d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088482610ddf565b9050806001600160a01b0316836001600160a01b031614156108f35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610854565b336001600160a01b038216148061090f575061090f813361069c565b6109815760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610854565b61098c8383836115ae565b505050565b61098c83838361160a565b6000546001600160a01b031633146109c65760405162461bcd60e51b8152600401610854906128ab565b60026009541415610a195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600955610a2781611990565b506001600955565b6000610a3a83610df1565b8210610a935760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610854565b6000610a9e60015490565b905060008060005b83811015610b47576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610af857805192505b876001600160a01b0316836001600160a01b03161415610b345786841415610b265750935061075192505050565b83610b3081612ab0565b9450505b5080610b3f81612ab0565b915050610aa6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610854565b6000546001600160a01b03163314610bd15760405162461bcd60e51b8152600401610854906128ab565b600b55565b323314610c255760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610854565b336000908152600c6020526040902054610c815760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610854565b7f0000000000000000000000000000000000000000000000000000000000001093610cab60015490565b610cb69060016129a8565b1115610cf95760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610854565b336000818152600c6020526040902054610d139190611b79565b336000908152600c6020526040812055565b61098c83838360405180602001604052806000815250611405565b6000610d4b60015490565b8210610da55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610854565b5090565b6000546001600160a01b03163314610dd35760405162461bcd60e51b8152600401610854906128ab565b61098c600d83836123a9565b6000610dea82611b97565b5192915050565b60006001600160a01b038216610e5d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610854565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610eac5760405162461bcd60e51b8152600401610854906128ab565b610eb66000611d40565b565b6000546001600160a01b03163314610ee25760405162461bcd60e51b8152600401610854906128ab565b600a55565b604080518082019091526000808252602082015261075182611b97565b60606003805461076690612a75565b6001600160a01b038216331415610f6c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610854565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110025760405162461bcd60e51b8152600401610854906128ab565b600260095414156110555760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610854565b6002600955604051600090339047908381818185875af1925050503d806000811461109c576040519150601f19603f3d011682016040523d82523d6000602084013e6110a1565b606091505b5050905080610a275760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610854565b6000546001600160a01b0316331461110f5760405162461bcd60e51b8152600401610854906128ab565b80518251146111715760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610854565b60005b825181101561098c5781818151811061118f5761118f612b0b565b6020026020010151600c60008584815181106111ad576111ad612b0b565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806111e490612ab0565b915050611174565b32331461123b5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610854565b600b5442101561128d5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610854565b7f0000000000000000000000000000000000000000000000000000000000001093816112b860015490565b6112c291906129a8565b11156113055760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610854565b7f000000000000000000000000000000000000000000000000000000000000000a8111156113665760405162461bcd60e51b815260206004820152600e60248201526d746f6f206d756368206d696e742160901b6044820152606401610854565b7f0000000000000000000000000000000000000000000000000000000000000014816113913361150b565b61139b91906129a8565b11156113e25760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610854565b6113ec3382611b79565b61140281600a546113fd91906129d4565b611d90565b50565b61141084848461160a565b61141c84848484611e17565b6114385760405162461bcd60e51b8152600401610854906128e0565b50505050565b606061144b826001541190565b6114af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610854565b60006114b9611f25565b905060008151116114d95760405180602001604052806000815250611504565b806114e384611f34565b6040516020016114f492919061282c565b6040516020818303038152906040525b9392505050565b600061075182612031565b6000546001600160a01b031633146115405760405162461bcd60e51b8152600401610854906128ab565b6001600160a01b0381166115a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b61140281611d40565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061161582611b97565b80519091506000906001600160a01b0316336001600160a01b0316148061164c575033611641846107e9565b6001600160a01b0316145b8061165e5750815161165e903361069c565b9050806116c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610854565b846001600160a01b031682600001516001600160a01b03161461173c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610854565b6001600160a01b0384166117a05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610854565b6117b060008484600001516115ae565b6001600160a01b03851660009081526005602052604081208054600192906117e29084906001600160801b03166129f3565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261182e91859116612986565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118b58460016129a8565b6000818152600460205260409020549091506001600160a01b0316611946576118df816001541190565b156119465760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816119e05760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610854565b600060016119ee84846129a8565b6119f89190612a1b565b9050611a2560017f0000000000000000000000000000000000000000000000000000000000001093612a1b565b811115611a5a57611a5760017f0000000000000000000000000000000000000000000000000000000000001093612a1b565b90505b611a65816001541190565b611ac05760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610854565b815b818111611b65576000818152600460205260409020546001600160a01b0316611b53576000611af082611b97565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b5d81612ab0565b915050611ac2565b50611b718160016129a8565b600855505050565b611b938282604051806020016040528060008152506120cf565b5050565b6040805180820190915260008082526020820152611bb6826001541190565b611c155760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610854565b60007f00000000000000000000000000000000000000000000000000000000000000148310611c7657611c687f000000000000000000000000000000000000000000000000000000000000001484612a1b565b611c739060016129a8565b90505b825b818110611cdf576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ccc57949350505050565b5080611cd781612a5e565b915050611c78565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610854565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80341015611dd95760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610854565b8034111561140257336108fc611def8334612a1b565b6040518115909202916000818181858888f19350505050158015611b93573d6000803e3d6000fd5b60006001600160a01b0384163b15611f1957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5b90339089908890889060040161285b565b602060405180830381600087803b158015611e7557600080fd5b505af1925050508015611ea5575060408051601f3d908101601f19168201909252611ea291810190612759565b60015b611eff573d808015611ed3576040519150601f19603f3d011682016040523d82523d6000602084013e611ed8565b606091505b508051611ef75760405162461bcd60e51b8152600401610854906128e0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f1d565b5060015b949350505050565b6060600d805461076690612a75565b606081611f585750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f825780611f6c81612ab0565b9150611f7b9050600a836129c0565b9150611f5c565b6000816001600160401b03811115611f9c57611f9c612b21565b6040519080825280601f01601f191660200182016040528015611fc6576020820181803683370190505b5090505b8415611f1d57611fdb600183612a1b565b9150611fe8600a86612acb565b611ff39060306129a8565b60f81b81838151811061200857612008612b0b565b60200101906001600160f81b031916908160001a90535061202a600a866129c0565b9450611fca565b60006001600160a01b0382166120a35760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610854565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166121325760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610854565b61213d816001541190565b1561218a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610854565b7f00000000000000000000000000000000000000000000000000000000000000148311156122055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610854565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612261908790612986565b6001600160801b0316815260200185836020015161227f9190612986565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561239e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123626000888488611e17565b61237e5760405162461bcd60e51b8152600401610854906128e0565b8161238881612ab0565b925050808061239690612ab0565b915050612315565b506001819055611988565b8280546123b590612a75565b90600052602060002090601f0160209004810192826123d7576000855561241d565b82601f106123f05782800160ff1982351617855561241d565b8280016001018555821561241d579182015b8281111561241d578235825591602001919060010190612402565b50610da59291505b80821115610da55760008155600101612425565b80356001600160a01b038116811461245057600080fd5b919050565b600082601f83011261246657600080fd5b8135602061247b61247683612963565b612933565b80838252828201915082860187848660051b890101111561249b57600080fd5b60005b858110156124ba5781358452928401929084019060010161249e565b5090979650505050505050565b6000602082840312156124d957600080fd5b61150482612439565b600080604083850312156124f557600080fd5b6124fe83612439565b915061250c60208401612439565b90509250929050565b60008060006060848603121561252a57600080fd5b61253384612439565b925061254160208501612439565b9150604084013590509250925092565b6000806000806080858703121561256757600080fd5b61257085612439565b9350602061257f818701612439565b93506040860135925060608601356001600160401b03808211156125a257600080fd5b818801915088601f8301126125b657600080fd5b8135818111156125c8576125c8612b21565b6125da601f8201601f19168501612933565b915080825289848285010111156125f057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561262357600080fd5b61262c83612439565b91506020830135801515811461264157600080fd5b809150509250929050565b6000806040838503121561265f57600080fd5b61266883612439565b946020939093013593505050565b6000806040838503121561268957600080fd5b82356001600160401b03808211156126a057600080fd5b818501915085601f8301126126b457600080fd5b813560206126c461247683612963565b8083825282820191508286018a848660051b89010111156126e457600080fd5b600096505b8487101561270e576126fa81612439565b8352600196909601959183019183016126e9565b509650508601359250508082111561272557600080fd5b5061273285828601612455565b9150509250929050565b60006020828403121561274e57600080fd5b813561150481612b37565b60006020828403121561276b57600080fd5b815161150481612b37565b6000806020838503121561278957600080fd5b82356001600160401b03808211156127a057600080fd5b818501915085601f8301126127b457600080fd5b8135818111156127c357600080fd5b8660208285010111156127d557600080fd5b60209290920196919550909350505050565b6000602082840312156127f957600080fd5b5035919050565b60008151808452612818816020860160208601612a32565b601f01601f19169290920160200192915050565b6000835161283e818460208801612a32565b835190830190612852818360208801612a32565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288e90830184612800565b9695505050505050565b6020815260006115046020830184612800565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561295b5761295b612b21565b604052919050565b60006001600160401b0382111561297c5761297c612b21565b5060051b60200190565b60006001600160801b0380831681851680830382111561285257612852612adf565b600082198211156129bb576129bb612adf565b500190565b6000826129cf576129cf612af5565b500490565b60008160001904831182151516156129ee576129ee612adf565b500290565b60006001600160801b0383811690831681811015612a1357612a13612adf565b039392505050565b600082821015612a2d57612a2d612adf565b500390565b60005b83811015612a4d578181015183820152602001612a35565b838111156114385750506000910152565b600081612a6d57612a6d612adf565b506000190190565b600181811c90821680612a8957607f821691505b60208210811415612aaa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac457612ac4612adf565b5060010190565b600082612ada57612ada612af5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140257600080fdfea264697066735822122060fae3ba37cf25b2849027cb2066d422b6a180f8346867319df3c84d62750fa964736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000001093

-----Decoded View---------------
Arg [0] : maxTimeSize_ (uint256): 10
Arg [1] : maxBatchSize_ (uint256): 20
Arg [2] : collectionSize_ (uint256): 4243

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001093


Deployed Bytecode Sourcemap

42789:3360:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30411:370;;;;;;;;;;-1:-1:-1;30411:370:0;;;;;:::i;:::-;;:::i;:::-;;;7516:14:1;;7509:22;7491:41;;7479:2;7464:18;30411:370:0;;;;;;;;32137:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33662:204::-;;;;;;;;;;-1:-1:-1;33662:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6814:32:1;;;6796:51;;6784:2;6769:18;33662:204:0;6751:102:1;33225:379:0;;;;;;;;;;-1:-1:-1;33225:379:0;;;;;:::i;:::-;;:::i;:::-;;28972:94;;;;;;;;;;-1:-1:-1;29048:12:0;;28972:94;;;21097:25:1;;;21085:2;21070:18;28972:94:0;21052:76:1;34512:142:0;;;;;;;;;;-1:-1:-1;34512:142:0;;;;;:::i;:::-;;:::i;45762:118::-;;;;;;;;;;-1:-1:-1;45762:118:0;;;;;:::i;:::-;;:::i;29603:744::-;;;;;;;;;;-1:-1:-1;29603:744:0;;;;;:::i;:::-;;:::i;45223:126::-;;;;;;;;;;-1:-1:-1;45223:126:0;;;;;:::i;:::-;;:::i;43494:293::-;;;:::i;34717:157::-;;;;;;;;;;-1:-1:-1;34717:157:0;;;;;:::i;:::-;;:::i;29135:177::-;;;;;;;;;;-1:-1:-1;29135:177:0;;;;;:::i;:::-;;:::i;45469:100::-;;;;;;;;;;-1:-1:-1;45469:100:0;;;;;:::i;:::-;;:::i;44562:150::-;;;;;;;;;;-1:-1:-1;44562:150:0;;;;;:::i;:::-;44667:15;:39;;;44562:150;31960:118;;;;;;;;;;-1:-1:-1;31960:118:0;;;;;:::i;:::-;;:::i;42999:47::-;;;;;;;;;;;;;;;;30837:211;;;;;;;;;;-1:-1:-1;30837:211:0;;;;;:::i;:::-;;:::i;2678:103::-;;;;;;;;;;;;;:::i;42852:48::-;;;;;;;;;;;;;;;2027:87;;;;;;;;;;-1:-1:-1;2073:7:0;2100:6;-1:-1:-1;;;;;2100:6:0;2027:87;;45119:98;;;;;;;;;;-1:-1:-1;45119:98:0;;;;;:::i;:::-;;:::i;45999:147::-;;;;;;;;;;-1:-1:-1;45999:147:0;;;;;:::i;:::-;;:::i;:::-;;;;20816:13:1;;-1:-1:-1;;;;;20812:39:1;20794:58;;20912:4;20900:17;;;20894:24;-1:-1:-1;;;;;20890:49:1;20868:20;;;20861:79;;;;20767:18;45999:147:0;20749:197:1;32292:98:0;;;;;;;;;;;;;:::i;33930:274::-;;;;;;;;;;-1:-1:-1;33930:274:0;;;;;:::i;:::-;;:::i;43053:44::-;;;;;;;;;;-1:-1:-1;43053:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;42955:39;;;;;;;;;;;;;;;;45575:181;;;;;;;;;;;;;:::i;44718:339::-;;;;;;;;;;-1:-1:-1;44718:339:0;;;;;:::i;:::-;;:::i;43793:553::-;;;;;;:::i;:::-;;:::i;34937:311::-;;;;;;;;;;-1:-1:-1;34937:311:0;;;;;:::i;:::-;;:::i;42905:45::-;;;;;;;;;;;;;;;32453:394;;;;;;;;;;-1:-1:-1;32453:394:0;;;;;:::i;:::-;;:::i;39352:43::-;;;;;;;;;;;;;;;;45886:107;;;;;;;;;;-1:-1:-1;45886:107:0;;;;;:::i;:::-;;:::i;34267:186::-;;;;;;;;;;-1:-1:-1;34267:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34412:25:0;;;34389:4;34412:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34267:186;2936:201;;;;;;;;;;-1:-1:-1;2936:201:0;;;;;:::i;:::-;;:::i;30411:370::-;30538:4;-1:-1:-1;;;;;;30568:40:0;;-1:-1:-1;;;30568:40:0;;:99;;-1:-1:-1;;;;;;;30619:48:0;;-1:-1:-1;;;30619:48:0;30568:99;:160;;;-1:-1:-1;;;;;;;30678:50:0;;-1:-1:-1;;;30678:50:0;30568:160;:207;;;-1:-1:-1;;;;;;;;;;26604:40:0;;;30739:36;30554:221;30411:370;-1:-1:-1;;30411:370:0:o;32137:94::-;32191:13;32220:5;32213:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32137:94;:::o;33662:204::-;33730:7;33754:16;33762:7;35574:12;;-1:-1:-1;35564:22:0;35487:105;33754:16;33746:74;;;;-1:-1:-1;;;33746:74:0;;19562:2:1;33746:74:0;;;19544:21:1;19601:2;19581:18;;;19574:30;19640:34;19620:18;;;19613:62;-1:-1:-1;;;19691:18:1;;;19684:43;19744:19;;33746:74:0;;;;;;;;;-1:-1:-1;33836:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33836:24:0;;33662:204::o;33225:379::-;33294:13;33310:24;33326:7;33310:15;:24::i;:::-;33294:40;;33355:5;-1:-1:-1;;;;;33349:11:0;:2;-1:-1:-1;;;;;33349:11:0;;;33341:58;;;;-1:-1:-1;;;33341:58:0;;15334:2:1;33341:58:0;;;15316:21:1;15373:2;15353:18;;;15346:30;15412:34;15392:18;;;15385:62;-1:-1:-1;;;15463:18:1;;;15456:32;15505:19;;33341:58:0;15306:224:1;33341:58:0;827:10;-1:-1:-1;;;;;33424:21:0;;;;:62;;-1:-1:-1;33449:37:0;33466:5;827:10;34267:186;:::i;33449:37::-;33408:153;;;;-1:-1:-1;;;33408:153:0;;10777:2:1;33408:153:0;;;10759:21:1;10816:2;10796:18;;;10789:30;10855:34;10835:18;;;10828:62;10926:27;10906:18;;;10899:55;10971:19;;33408:153:0;10749:247:1;33408:153:0;33570:28;33579:2;33583:7;33592:5;33570:8;:28::i;:::-;33287:317;33225:379;;:::o;34512:142::-;34620:28;34630:4;34636:2;34640:7;34620:9;:28::i;45762:118::-;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;5313:1:::1;5911:7;;:19;;5903:63;;;::::0;-1:-1:-1;;;5903:63:0;;18786:2:1;5903:63:0::1;::::0;::::1;18768:21:1::0;18825:2;18805:18;;;18798:30;18864:33;18844:18;;;18837:61;18915:18;;5903:63:0::1;18758:181:1::0;5903:63:0::1;5313:1;6044:7;:18:::0;45846:28:::2;45865:8:::0;45846:18:::2;:28::i;:::-;-1:-1:-1::0;5269:1:0::1;6223:7;:22:::0;45762:118::o;29603:744::-;29712:7;29747:16;29757:5;29747:9;:16::i;:::-;29739:5;:24;29731:71;;;;-1:-1:-1;;;29731:71:0;;7969:2:1;29731:71:0;;;7951:21:1;8008:2;7988:18;;;7981:30;8047:34;8027:18;;;8020:62;-1:-1:-1;;;8098:18:1;;;8091:32;8140:19;;29731:71:0;7941:224:1;29731:71:0;29809:22;29834:13;29048:12;;;28972:94;29834:13;29809:38;;29854:19;29884:25;29934:9;29929:350;29953:14;29949:1;:18;29929:350;;;29983:31;30017:14;;;:11;:14;;;;;;;;;29983:48;;;;;;;;;-1:-1:-1;;;;;29983:48:0;;;;;-1:-1:-1;;;29983:48:0;;;-1:-1:-1;;;;;29983:48:0;;;;;;;;30044:28;30040:89;;30105:14;;;-1:-1:-1;30040:89:0;30162:5;-1:-1:-1;;;;;30141:26:0;:17;-1:-1:-1;;;;;30141:26:0;;30137:135;;;30199:5;30184:11;:20;30180:59;;;-1:-1:-1;30226:1:0;-1:-1:-1;30219:8:0;;-1:-1:-1;;;30219:8:0;30180:59;30249:13;;;;:::i;:::-;;;;30137:135;-1:-1:-1;29969:3:0;;;;:::i;:::-;;;;29929:350;;;-1:-1:-1;30285:56:0;;-1:-1:-1;;;30285:56:0;;17964:2:1;30285:56:0;;;17946:21:1;18003:2;17983:18;;;17976:30;18042:34;18022:18;;;18015:62;-1:-1:-1;;;18093:18:1;;;18086:44;18147:19;;30285:56:0;17936:236:1;45223:126:0;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;45301:19:::1;:42:::0;45223:126::o;43494:293::-;43416:9;43429:10;43416:23;43408:66;;;;-1:-1:-1;;;43408:66:0;;10418:2:1;43408:66:0;;;10400:21:1;10457:2;10437:18;;;10430:30;10496:32;10476:18;;;10469:60;10546:18;;43408:66:0;10390:180:1;43408:66:0;43574:10:::1;43588:1;43564:21:::0;;;:9:::1;:21;::::0;;;;;43556:69:::1;;;::::0;-1:-1:-1;;;43556:69:0;;12658:2:1;43556:69:0::1;::::0;::::1;12640:21:1::0;12697:2;12677:18;;;12670:30;12736:33;12716:18;;;12709:61;12787:18;;43556:69:0::1;12630:181:1::0;43556:69:0::1;43661:14;43640:13;29048:12:::0;;;28972:94;43640:13:::1;:17;::::0;43656:1:::1;43640:17;:::i;:::-;:35;;43632:66;;;::::0;-1:-1:-1;;;43632:66:0;;12311:2:1;43632:66:0::1;::::0;::::1;12293:21:1::0;12350:2;12330:18;;;12323:30;-1:-1:-1;;;12369:18:1;;;12362:48;12427:18;;43632:66:0::1;12283:168:1::0;43632:66:0::1;43715:10;43727:21;::::0;;;:9:::1;:21;::::0;;;;;43705:44:::1;::::0;43715:10;43705:9:::1;:44::i;:::-;43766:10;43780:1;43756:21:::0;;;:9:::1;:21;::::0;;;;:25;43494:293::o;34717:157::-;34829:39;34846:4;34852:2;34856:7;34829:39;;;;;;;;;;;;:16;:39::i;29135:177::-;29202:7;29234:13;29048:12;;;28972:94;29234:13;29226:5;:21;29218:69;;;;-1:-1:-1;;;29218:69:0;;9190:2:1;29218:69:0;;;9172:21:1;9229:2;9209:18;;;9202:30;9268:34;9248:18;;;9241:62;-1:-1:-1;;;9319:18:1;;;9312:33;9362:19;;29218:69:0;9162:225:1;29218:69:0;-1:-1:-1;29301:5:0;29135:177::o;45469:100::-;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;45540:23:::1;:13;45556:7:::0;;45540:23:::1;:::i;31960:118::-:0;32024:7;32047:20;32059:7;32047:11;:20::i;:::-;:25;;31960:118;-1:-1:-1;;31960:118:0:o;30837:211::-;30901:7;-1:-1:-1;;;;;30925:19:0;;30917:75;;;;-1:-1:-1;;;30917:75:0;;11899:2:1;30917:75:0;;;11881:21:1;11938:2;11918:18;;;11911:30;11977:34;11957:18;;;11950:62;-1:-1:-1;;;12028:18:1;;;12021:41;12079:19;;30917:75:0;11871:233:1;30917:75:0;-1:-1:-1;;;;;;31014:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31014:27:0;;30837:211::o;2678:103::-;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;2743:30:::1;2770:1;2743:18;:30::i;:::-;2678:103::o:0;45119:98::-;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;45185:11:::1;:26:::0;45119:98::o;45999:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;46120:20:0;46132:7;46120:11;:20::i;32292:98::-;32348:13;32377:7;32370:14;;;;;:::i;33930:274::-;-1:-1:-1;;;;;34021:24:0;;827:10;34021:24;;34013:63;;;;-1:-1:-1;;;34013:63:0;;14202:2:1;34013:63:0;;;14184:21:1;14241:2;14221:18;;;14214:30;14280:28;14260:18;;;14253:56;14326:18;;34013:63:0;14174:176:1;34013:63:0;827:10;34085:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34085:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34085:53:0;;;;;;;;;;34150:48;;7491:41:1;;;34085:42:0;;827:10;34150:48;;7464:18:1;34150:48:0;;;;;;;33930:274;;:::o;45575:181::-;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;5313:1:::1;5911:7;;:19;;5903:63;;;::::0;-1:-1:-1;;;5903:63:0;;18786:2:1;5903:63:0::1;::::0;::::1;18768:21:1::0;18825:2;18805:18;;;18798:30;18864:33;18844:18;;;18837:61;18915:18;;5903:63:0::1;18758:181:1::0;5903:63:0::1;5313:1;6044:7;:18:::0;45658:49:::2;::::0;45640:12:::2;::::0;45658:10:::2;::::0;45681:21:::2;::::0;45640:12;45658:49;45640:12;45658:49;45681:21;45658:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45639:68;;;45722:7;45714:36;;;::::0;-1:-1:-1;;;45714:36:0;;15737:2:1;45714:36:0::2;::::0;::::2;15719:21:1::0;15776:2;15756:18;;;15749:30;-1:-1:-1;;;15795:18:1;;;15788:46;15851:18;;45714:36:0::2;15709:166:1::0;44718:339:0;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;44871:8:::1;:15;44851:9;:16;:35;44835:109;;;::::0;-1:-1:-1;;;44835:109:0;;20379:2:1;44835:109:0::1;::::0;::::1;20361:21:1::0;20418:2;20398:18;;;20391:30;20457:34;20437:18;;;20430:62;-1:-1:-1;;;20508:18:1;;;20501:38;20556:19;;44835:109:0::1;20351:230:1::0;44835:109:0::1;44956:9;44951:101;44975:9;:16;44971:1;:20;44951:101;;;45033:8;45042:1;45033:11;;;;;;;;:::i;:::-;;;;;;;45007:9;:23;45017:9;45027:1;45017:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;45007:23:0::1;-1:-1:-1::0;;;;;45007:23:0::1;;;;;;;;;;;;:37;;;;44993:3;;;;;:::i;:::-;;;;44951:101;;43793:553:::0;43416:9;43429:10;43416:23;43408:66;;;;-1:-1:-1;;;43408:66:0;;10418:2:1;43408:66:0;;;10400:21:1;10457:2;10437:18;;;10430:30;10496:32;10476:18;;;10469:60;10546:18;;43408:66:0;10390:180:1;43408:66:0;43921:19:::1;::::0;44667:15;:39;;43890:98:::1;;;::::0;-1:-1:-1;;;43890:98:0;;14976:2:1;43890:98:0::1;::::0;::::1;14958:21:1::0;15015:2;14995:18;;;14988:30;15054:31;15034:18;;;15027:59;15103:18;;43890:98:0::1;14948:179:1::0;43890:98:0::1;44031:14;44019:8;44003:13;29048:12:::0;;;28972:94;44003:13:::1;:24;;;;:::i;:::-;:42;;43995:73;;;::::0;-1:-1:-1;;;43995:73:0;;12311:2:1;43995:73:0::1;::::0;::::1;12293:21:1::0;12350:2;12330:18;;;12323:30;-1:-1:-1;;;12369:18:1;;;12362:48;12427:18;;43995:73:0::1;12283:168:1::0;43995:73:0::1;44095:20;44083:8;:32;;44075:59;;;::::0;-1:-1:-1;;;44075:59:0;;11556:2:1;44075:59:0::1;::::0;::::1;11538:21:1::0;11595:2;11575:18;;;11568:30;-1:-1:-1;;;11614:18:1;;;11607:44;11668:18;;44075:59:0::1;11528:164:1::0;44075:59:0::1;44196:23;44184:8;44157:24;44170:10;44157:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44141:118;;;::::0;-1:-1:-1;;;44141:118:0;;17613:2:1;44141:118:0::1;::::0;::::1;17595:21:1::0;17652:2;17632:18;;;17625:30;-1:-1:-1;;;17671:18:1;;;17664:52;17733:18;;44141:118:0::1;17585:172:1::0;44141:118:0::1;44266:31;44276:10;44288:8;44266:9;:31::i;:::-;44304:36;44331:8;44317:11;;:22;;;;:::i;:::-;44304:12;:36::i;:::-;43793:553:::0;:::o;34937:311::-;35074:28;35084:4;35090:2;35094:7;35074:9;:28::i;:::-;35125:48;35148:4;35154:2;35158:7;35167:5;35125:22;:48::i;:::-;35109:133;;;;-1:-1:-1;;;35109:133:0;;;;;;;:::i;:::-;34937:311;;;;:::o;32453:394::-;32551:13;32592:16;32600:7;35574:12;;-1:-1:-1;35564:22:0;35487:105;32592:16;32576:97;;;;-1:-1:-1;;;32576:97:0;;13786:2:1;32576:97:0;;;13768:21:1;13825:2;13805:18;;;13798:30;13864:34;13844:18;;;13837:62;-1:-1:-1;;;13915:18:1;;;13908:45;13970:19;;32576:97:0;13758:237:1;32576:97:0;32682:21;32706:10;:8;:10::i;:::-;32682:34;;32761:1;32743:7;32737:21;:25;:104;;;;;;;;;;;;;;;;;32798:7;32807:18;:7;:16;:18::i;:::-;32781:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32737:104;32723:118;32453:394;-1:-1:-1;;;32453:394:0:o;45886:107::-;45944:7;45967:20;45981:5;45967:13;:20::i;2936:201::-;2073:7;2100:6;-1:-1:-1;;;;;2100:6:0;827:10;2247:23;2239:68;;;;-1:-1:-1;;;2239:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3025:22:0;::::1;3017:73;;;::::0;-1:-1:-1;;;3017:73:0;;8372:2:1;3017:73:0::1;::::0;::::1;8354:21:1::0;8411:2;8391:18;;;8384:30;8450:34;8430:18;;;8423:62;-1:-1:-1;;;8501:18:1;;;8494:36;8547:19;;3017:73:0::1;8344:228:1::0;3017:73:0::1;3101:28;3120:8;3101:18;:28::i;39174:172::-:0;39271:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39271:29:0;-1:-1:-1;;;;;39271:29:0;;;;;;;;;39312:28;;39271:24;;39312:28;;;;;;;39174:172;;;:::o;37539:1529::-;37636:35;37674:20;37686:7;37674:11;:20::i;:::-;37745:18;;37636:58;;-1:-1:-1;37703:22:0;;-1:-1:-1;;;;;37729:34:0;827:10;-1:-1:-1;;;;;37729:34:0;;:81;;;-1:-1:-1;827:10:0;37774:20;37786:7;37774:11;:20::i;:::-;-1:-1:-1;;;;;37774:36:0;;37729:81;:142;;;-1:-1:-1;37838:18:0;;37821:50;;827:10;34267:186;:::i;37821:50::-;37703:169;;37897:17;37881:101;;;;-1:-1:-1;;;37881:101:0;;14557:2:1;37881:101:0;;;14539:21:1;14596:2;14576:18;;;14569:30;14635:34;14615:18;;;14608:62;-1:-1:-1;;;14686:18:1;;;14679:48;14744:19;;37881:101:0;14529:240:1;37881:101:0;38029:4;-1:-1:-1;;;;;38007:26:0;:13;:18;;;-1:-1:-1;;;;;38007:26:0;;37991:98;;;;-1:-1:-1;;;37991:98:0;;13018:2:1;37991:98:0;;;13000:21:1;13057:2;13037:18;;;13030:30;13096:34;13076:18;;;13069:62;-1:-1:-1;;;13147:18:1;;;13140:36;13193:19;;37991:98:0;12990:228:1;37991:98:0;-1:-1:-1;;;;;38104:16:0;;38096:66;;;;-1:-1:-1;;;38096:66:0;;9594:2:1;38096:66:0;;;9576:21:1;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;-1:-1:-1;;;9723:18:1;;;9716:35;9768:19;;38096:66:0;9566:227:1;38096:66:0;38271:49;38288:1;38292:7;38301:13;:18;;;38271:8;:49::i;:::-;-1:-1:-1;;;;;38329:18:0;;;;;;:12;:18;;;;;:31;;38359:1;;38329:18;:31;;38359:1;;-1:-1:-1;;;;;38329:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38329:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38367:16:0;;-1:-1:-1;38367:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38367:16:0;;:29;;-1:-1:-1;;38367:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38367:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38426:43:0;;;;;;;;-1:-1:-1;;;;;38426:43:0;;;;;-1:-1:-1;;;;;38452:15:0;38426:43;;;;;;;;;-1:-1:-1;38403:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38403:66:0;-1:-1:-1;;;;;;38403:66:0;;;;;;;;;;;38719:11;38415:7;-1:-1:-1;38719:11:0;:::i;:::-;38782:1;38741:24;;;:11;:24;;;;;:29;38697:33;;-1:-1:-1;;;;;;38741:29:0;38737:236;;38799:20;38807:11;35574:12;;-1:-1:-1;35564:22:0;35487:105;38799:20;38795:171;;;38859:97;;;;;;;;38886:18;;-1:-1:-1;;;;;38859:97:0;;;;;;38917:28;;;;-1:-1:-1;;;;;38859:97:0;;;;;;;;;-1:-1:-1;38832:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38832:124:0;-1:-1:-1;;;;;;38832:124:0;;;;;;;;;;;;38795:171;39005:7;39001:2;-1:-1:-1;;;;;38986:27:0;38995:4;-1:-1:-1;;;;;38986:27:0;;;;;;;;;;;39020:42;37629:1439;;;37539:1529;;;:::o;39500:846::-;39590:24;;39629:12;39621:49;;;;-1:-1:-1;;;39621:49:0;;11203:2:1;39621:49:0;;;11185:21:1;11242:2;11222:18;;;11215:30;11281:26;11261:18;;;11254:54;11325:18;;39621:49:0;11175:174:1;39621:49:0;39677:16;39727:1;39696:28;39716:8;39696:17;:28;:::i;:::-;:32;;;;:::i;:::-;39677:51;-1:-1:-1;39750:18:0;39767:1;39750:14;:18;:::i;:::-;39739:8;:29;39735:81;;;39790:18;39807:1;39790:14;:18;:::i;:::-;39779:29;;39735:81;39931:17;39939:8;35574:12;;-1:-1:-1;35564:22:0;35487:105;39931:17;39923:68;;;;-1:-1:-1;;;39923:68:0;;18379:2:1;39923:68:0;;;18361:21:1;18418:2;18398:18;;;18391:30;18457:34;18437:18;;;18430:62;-1:-1:-1;;;18508:18:1;;;18501:36;18554:19;;39923:68:0;18351:228:1;39923:68:0;40015:17;39998:297;40039:8;40034:1;:13;39998:297;;40098:1;40067:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;40067:19:0;40063:225;;40113:31;40147:14;40159:1;40147:11;:14::i;:::-;40189:89;;;;;;;;40216:14;;-1:-1:-1;;;;;40189:89:0;;;;;;40243:24;;;;-1:-1:-1;;;;;40189:89:0;;;;;;;;;-1:-1:-1;40172:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;40172:106:0;-1:-1:-1;;;;;;40172:106:0;;;;;;;;;;;;-1:-1:-1;40063:225:0;40049:3;;;;:::i;:::-;;;;39998:297;;;-1:-1:-1;40328:12:0;:8;40339:1;40328:12;:::i;:::-;40301:24;:39;-1:-1:-1;;;39500:846:0:o;35598:98::-;35663:27;35673:2;35677:8;35663:27;;;;;;;;;;;;:9;:27::i;:::-;35598:98;;:::o;31300:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31417:16:0;31425:7;35574:12;;-1:-1:-1;35564:22:0;35487:105;31417:16;31409:71;;;;-1:-1:-1;;;31409:71:0;;8779:2:1;31409:71:0;;;8761:21:1;8818:2;8798:18;;;8791:30;8857:34;8837:18;;;8830:62;-1:-1:-1;;;8908:18:1;;;8901:40;8958:19;;31409:71:0;8751:232:1;31409:71:0;31489:26;31537:12;31526:7;:23;31522:93;;31581:22;31591:12;31581:7;:22;:::i;:::-;:26;;31606:1;31581:26;:::i;:::-;31560:47;;31522:93;31643:7;31623:212;31660:18;31652:4;:26;31623:212;;31697:31;31731:17;;;:11;:17;;;;;;;;;31697:51;;;;;;;;;-1:-1:-1;;;;;31697:51:0;;;;;-1:-1:-1;;;31697:51:0;;;-1:-1:-1;;;;;31697:51:0;;;;;;;;31761:28;31757:71;;31809:9;31300:606;-1:-1:-1;;;;31300:606:0:o;31757:71::-;-1:-1:-1;31680:6:0;;;;:::i;:::-;;;;31623:212;;;-1:-1:-1;31843:57:0;;-1:-1:-1;;;31843:57:0;;19146:2:1;31843:57:0;;;19128:21:1;19185:2;19165:18;;;19158:30;19224:34;19204:18;;;19197:62;-1:-1:-1;;;19275:18:1;;;19268:45;19330:19;;31843:57:0;19118:237:1;3297:191:0;3371:16;3390:6;;-1:-1:-1;;;;;3407:17:0;;;-1:-1:-1;;;;;;3407:17:0;;;;;;3440:40;;3390:6;;;;;;;3440:40;;3371:16;3440:40;3360:128;3297:191;:::o;44352:204::-;44425:5;44412:9;:18;;44404:53;;;;-1:-1:-1;;;44404:53:0;;16502:2:1;44404:53:0;;;16484:21:1;16541:2;16521:18;;;16514:30;-1:-1:-1;;;16560:18:1;;;16553:52;16622:18;;44404:53:0;16474:172:1;44404:53:0;44480:5;44468:9;:17;44464:87;;;44504:10;44496:47;44525:17;44537:5;44525:9;:17;:::i;:::-;44496:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40889:690;41026:4;-1:-1:-1;;;;;41043:13:0;;16521:19;:23;41039:535;;41082:72;;-1:-1:-1;;;41082:72:0;;-1:-1:-1;;;;;41082:36:0;;;;;:72;;827:10;;41133:4;;41139:7;;41148:5;;41082:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41082:72:0;;;;;;;;-1:-1:-1;;41082:72:0;;;;;;;;;;;;:::i;:::-;;;41069:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41313:13:0;;41309:215;;41346:61;;-1:-1:-1;;;41346:61:0;;;;;;;:::i;41309:215::-;41492:6;41486:13;41477:6;41473:2;41469:15;41462:38;41069:464;-1:-1:-1;;;;;;41204:55:0;-1:-1:-1;;;41204:55:0;;-1:-1:-1;41197:62:0;;41039:535;-1:-1:-1;41562:4:0;41039:535;40889:690;;;;;;:::o;45355:108::-;45415:13;45444;45437:20;;;;;:::i;23867:723::-;23923:13;24144:10;24140:53;;-1:-1:-1;;24171:10:0;;;;;;;;;;;;-1:-1:-1;;;24171:10:0;;;;;23867:723::o;24140:53::-;24218:5;24203:12;24259:78;24266:9;;24259:78;;24292:8;;;;:::i;:::-;;-1:-1:-1;24315:10:0;;-1:-1:-1;24323:2:0;24315:10;;:::i;:::-;;;24259:78;;;24347:19;24379:6;-1:-1:-1;;;;;24369:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24369:17:0;;24347:39;;24397:154;24404:10;;24397:154;;24431:11;24441:1;24431:11;;:::i;:::-;;-1:-1:-1;24500:10:0;24508:2;24500:5;:10;:::i;:::-;24487:24;;:2;:24;:::i;:::-;24474:39;;24457:6;24464;24457:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24457:56:0;;;;;;;;-1:-1:-1;24528:11:0;24537:2;24528:11;;:::i;:::-;;;24397:154;;31054:240;31115:7;-1:-1:-1;;;;;31147:19:0;;31131:102;;;;-1:-1:-1;;;31131:102:0;;10000:2:1;31131:102:0;;;9982:21:1;10039:2;10019:18;;;10012:30;10078:34;10058:18;;;10051:62;-1:-1:-1;;;10129:18:1;;;10122:47;10186:19;;31131:102:0;9972:239:1;31131:102:0;-1:-1:-1;;;;;;31255:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31255:32:0;;-1:-1:-1;;;;;31255:32:0;;31054:240::o;36035:1272::-;36163:12;;-1:-1:-1;;;;;36190:16:0;;36182:62;;;;-1:-1:-1;;;36182:62:0;;17211:2:1;36182:62:0;;;17193:21:1;17250:2;17230:18;;;17223:30;17289:34;17269:18;;;17262:62;-1:-1:-1;;;17340:18:1;;;17333:31;17381:19;;36182:62:0;17183:223:1;36182:62:0;36381:21;36389:12;35574;;-1:-1:-1;35564:22:0;35487:105;36381:21;36380:22;36372:64;;;;-1:-1:-1;;;36372:64:0;;16853:2:1;36372:64:0;;;16835:21:1;16892:2;16872:18;;;16865:30;16931:31;16911:18;;;16904:59;16980:18;;36372:64:0;16825:179:1;36372:64:0;36463:12;36451:8;:24;;36443:71;;;;-1:-1:-1;;;36443:71:0;;19976:2:1;36443:71:0;;;19958:21:1;20015:2;19995:18;;;19988:30;20054:34;20034:18;;;20027:62;-1:-1:-1;;;20105:18:1;;;20098:32;20147:19;;36443:71:0;19948:224:1;36443:71:0;-1:-1:-1;;;;;36626:16:0;;36593:30;36626:16;;;:12;:16;;;;;;;;;36593:49;;;;;;;;;-1:-1:-1;;;;;36593:49:0;;;;;-1:-1:-1;;;36593:49:0;;;;;;;;;;;36668:119;;;;;;;;36688:19;;36593:49;;36668:119;;;36688:39;;36718:8;;36688:39;:::i;:::-;-1:-1:-1;;;;;36668:119:0;;;;;36771:8;36736:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36668:119:0;;;;;;-1:-1:-1;;;;;36649:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36649:138:0;;;;;;;;;;;;36822:43;;;;;;;;;;-1:-1:-1;;;;;36848:15:0;36822:43;;;;;;;;36794:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36794:71:0;-1:-1:-1;;;;;;36794:71:0;;;;;;;;;;;;;;;;;;36806:12;;36918:281;36942:8;36938:1;:12;36918:281;;;36971:38;;36996:12;;-1:-1:-1;;;;;36971:38:0;;;36988:1;;36971:38;;36988:1;;36971:38;37036:59;37067:1;37071:2;37075:12;37089:5;37036:22;:59::i;:::-;37018:150;;;;-1:-1:-1;;;37018:150:0;;;;;;;:::i;:::-;37177:14;;;;:::i;:::-;;;;36952:3;;;;;:::i;:::-;;;;36918:281;;;-1:-1:-1;37207:12:0;:27;;;37241:60;34937:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:2;;317:1;314;307:12;266:2;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:2;;;641:1;638;631:12;584:2;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;256:609;-1:-1:-1;;;;;;;256:609:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:2;;;998:1;995;988:12;950:2;1021:29;1040:9;1021:29;:::i;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:2;;;1206:1;1203;1196:12;1158:2;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1148:173;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;1488:1;1485;1478:12;1440:2;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1430:224;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:2;;;1848:1;1845;1838:12;1799:2;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;-1:-1:-1;;;;;2144:2:1;2136:6;2133:14;2130:2;;;2160:1;2157;2150:12;2130:2;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:2;;2265:1;2262;2255:12;2214:2;2301;2288:16;2323:2;2319;2316:10;2313:2;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:1;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:2;;;2508:1;2505;2498:12;2459:2;2563;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1789:850;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:2;;;2786:1;2783;2776:12;2738:2;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:2;;2957:1;2954;2947:12;2901:2;2980:5;2970:15;;;2728:263;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:2;;;3141:1;3138;3131:12;3093:2;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;3083:167:1:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:2;;;3450:1;3447;3440:12;3402:2;3490:9;3477:23;-1:-1:-1;;;;;3560:2:1;3552:6;3549:14;3546:2;;;3576:1;3573;3566:12;3546:2;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:2;;3681:1;3678;3671:12;3630:2;3717;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:2;;;3997:1;3994;3987:12;3940:2;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:1;-1:-1:-1;;4260:18:1;;4247:32;;-1:-1:-1;;4291:16:1;;;4288:2;;;4320:1;4317;4310:12;4288:2;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3392:1020;;;;;:::o;4417:245::-;4475:6;4528:2;4516:9;4507:7;4503:23;4499:32;4496:2;;;4544:1;4541;4534:12;4496:2;4583:9;4570:23;4602:30;4626:5;4602:30;:::i;4667:249::-;4736:6;4789:2;4777:9;4768:7;4764:23;4760:32;4757:2;;;4805:1;4802;4795:12;4757:2;4837:9;4831:16;4856:30;4880:5;4856:30;:::i;4921:592::-;4992:6;5000;5053:2;5041:9;5032:7;5028:23;5024:32;5021:2;;;5069:1;5066;5059:12;5021:2;5109:9;5096:23;-1:-1:-1;;;;;5179:2:1;5171:6;5168:14;5165:2;;;5195:1;5192;5185:12;5165:2;5233:6;5222:9;5218:22;5208:32;;5278:7;5271:4;5267:2;5263:13;5259:27;5249:2;;5300:1;5297;5290:12;5249:2;5340;5327:16;5366:2;5358:6;5355:14;5352:2;;;5382:1;5379;5372:12;5352:2;5427:7;5422:2;5413:6;5409:2;5405:15;5401:24;5398:37;5395:2;;;5448:1;5445;5438:12;5395:2;5479;5471:11;;;;;5501:6;;-1:-1:-1;5011:502:1;;-1:-1:-1;;;;5011:502:1:o;5518:180::-;5577:6;5630:2;5618:9;5609:7;5605:23;5601:32;5598:2;;;5646:1;5643;5636:12;5598:2;-1:-1:-1;5669:23:1;;5588:110;-1:-1:-1;5588:110:1:o;5703:257::-;5744:3;5782:5;5776:12;5809:6;5804:3;5797:19;5825:63;5881:6;5874:4;5869:3;5865:14;5858:4;5851:5;5847:16;5825:63;:::i;:::-;5942:2;5921:15;-1:-1:-1;;5917:29:1;5908:39;;;;5949:4;5904:50;;5752:208;-1:-1:-1;;5752:208:1:o;5965:470::-;6144:3;6182:6;6176:13;6198:53;6244:6;6239:3;6232:4;6224:6;6220:17;6198:53;:::i;:::-;6314:13;;6273:16;;;;6336:57;6314:13;6273:16;6370:4;6358:17;;6336:57;:::i;:::-;6409:20;;6152:283;-1:-1:-1;;;;6152:283:1:o;6858:488::-;-1:-1:-1;;;;;7127:15:1;;;7109:34;;7179:15;;7174:2;7159:18;;7152:43;7226:2;7211:18;;7204:34;;;7274:3;7269:2;7254:18;;7247:31;;;7052:4;;7295:45;;7320:19;;7312:6;7295:45;:::i;:::-;7287:53;7061:285;-1:-1:-1;;;;;;7061:285:1:o;7543:219::-;7692:2;7681:9;7674:21;7655:4;7712:44;7752:2;7741:9;7737:18;7729:6;7712:44;:::i;13223:356::-;13425:2;13407:21;;;13444:18;;;13437:30;13503:34;13498:2;13483:18;;13476:62;13570:2;13555:18;;13397:182::o;15880:415::-;16082:2;16064:21;;;16121:2;16101:18;;;16094:30;16160:34;16155:2;16140:18;;16133:62;-1:-1:-1;;;16226:2:1;16211:18;;16204:49;16285:3;16270:19;;16054:241::o;21133:275::-;21204:2;21198:9;21269:2;21250:13;;-1:-1:-1;;21246:27:1;21234:40;;-1:-1:-1;;;;;21289:34:1;;21325:22;;;21286:62;21283:2;;;21351:18;;:::i;:::-;21387:2;21380:22;21178:230;;-1:-1:-1;21178:230:1:o;21413:183::-;21473:4;-1:-1:-1;;;;;21498:6:1;21495:30;21492:2;;;21528:18;;:::i;:::-;-1:-1:-1;21573:1:1;21569:14;21585:4;21565:25;;21482:114::o;21601:253::-;21641:3;-1:-1:-1;;;;;21730:2:1;21727:1;21723:10;21760:2;21757:1;21753:10;21791:3;21787:2;21783:12;21778:3;21775:21;21772:2;;;21799:18;;:::i;21859:128::-;21899:3;21930:1;21926:6;21923:1;21920:13;21917:2;;;21936:18;;:::i;:::-;-1:-1:-1;21972:9:1;;21907:80::o;21992:120::-;22032:1;22058;22048:2;;22063:18;;:::i;:::-;-1:-1:-1;22097:9:1;;22038:74::o;22117:168::-;22157:7;22223:1;22219;22215:6;22211:14;22208:1;22205:21;22200:1;22193:9;22186:17;22182:45;22179:2;;;22230:18;;:::i;:::-;-1:-1:-1;22270:9:1;;22169:116::o;22290:246::-;22330:4;-1:-1:-1;;;;;22443:10:1;;;;22413;;22465:12;;;22462:2;;;22480:18;;:::i;:::-;22517:13;;22339:197;-1:-1:-1;;;22339:197:1:o;22541:125::-;22581:4;22609:1;22606;22603:8;22600:2;;;22614:18;;:::i;:::-;-1:-1:-1;22651:9:1;;22590:76::o;22671:258::-;22743:1;22753:113;22767:6;22764:1;22761:13;22753:113;;;22843:11;;;22837:18;22824:11;;;22817:39;22789:2;22782:10;22753:113;;;22884:6;22881:1;22878:13;22875:2;;;-1:-1:-1;;22919:1:1;22901:16;;22894:27;22724:205::o;22934:136::-;22973:3;23001:5;22991:2;;23010:18;;:::i;:::-;-1:-1:-1;;;23046:18:1;;22981:89::o;23075:380::-;23154:1;23150:12;;;;23197;;;23218:2;;23272:4;23264:6;23260:17;23250:27;;23218:2;23325;23317:6;23314:14;23294:18;23291:38;23288:2;;;23371:10;23366:3;23362:20;23359:1;23352:31;23406:4;23403:1;23396:15;23434:4;23431:1;23424:15;23288:2;;23130:325;;;:::o;23460:135::-;23499:3;-1:-1:-1;;23520:17:1;;23517:2;;;23540:18;;:::i;:::-;-1:-1:-1;23587:1:1;23576:13;;23507:88::o;23600:112::-;23632:1;23658;23648:2;;23663:18;;:::i;:::-;-1:-1:-1;23697:9:1;;23638:74::o;23717:127::-;23778:10;23773:3;23769:20;23766:1;23759:31;23809:4;23806:1;23799:15;23833:4;23830:1;23823:15;23849:127;23910:10;23905:3;23901:20;23898:1;23891:31;23941:4;23938:1;23931:15;23965:4;23962:1;23955:15;23981:127;24042:10;24037:3;24033:20;24030:1;24023:31;24073:4;24070:1;24063:15;24097:4;24094:1;24087:15;24113:127;24174:10;24169:3;24165:20;24162:1;24155:31;24205:4;24202:1;24195:15;24229:4;24226:1;24219:15;24245:131;-1:-1:-1;;;;;;24319:32:1;;24309:43;;24299:2;;24366:1;24363;24356:12

Swarm Source

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