ETH Price: $3,107.96 (+1.51%)
Gas: 4 Gwei

Token

Mutts (MUTT)
 

Overview

Max Total Supply

616 MUTT

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MUTT
0x42927f6c4c539ba7e7a49c1cc96e5ef2f21a8873
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:
Mutts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: 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,
  Ownable
{
  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;

  // Revealed
  bool private revealed;
  string public notRevealedUri;

  /**
   * @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_,
    string memory notRevealedUri_
  ) {
    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_;
    revealed = false;
    notRevealedUri = notRevealedUri_;
  }

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

    if(revealed == false) return notRevealedUri;

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

  function reveal() public onlyOwner {
    revealed = true;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }


  /**
   * @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/Mutts.sol



pragma solidity ^0.8.0;






//   /$$$$$$ /$$$$$$$   /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$ /$$$$$$$  /$$$$$$$$
//  |_  $$_/| $$__  $$ /$$__  $$| $$$ | $$ /$$__  $$|_  $$_/| $$__  $$| $$_____/
//    | $$  | $$  \ $$| $$  \ $$| $$$$| $$| $$  \__/  | $$  | $$  \ $$| $$      
//    | $$  | $$$$$$$/| $$  | $$| $$ $$ $$|  $$$$$$   | $$  | $$  | $$| $$$$$   
//    | $$  | $$__  $$| $$  | $$| $$  $$$$ \____  $$  | $$  | $$  | $$| $$__/   
//    | $$  | $$  \ $$| $$  | $$| $$\  $$$ /$$  \ $$  | $$  | $$  | $$| $$      
//   /$$$$$$| $$  | $$|  $$$$$$/| $$ \  $$|  $$$$$$/ /$$$$$$| $$$$$$$/| $$$$$$$$
//  |______/|__/  |__/ \______/ |__/  \__/ \______/ |______/|_______/ |________/

contract Mutts is ERC721A, ReentrancyGuard {
  uint256 public reservedSpent;
  uint256 public immutable amountReserved;
  uint256 public immutable publicTxLimit;

  bytes32 public ogMerkleRoot;
  bytes32 public whitelistMerkleRoot;

  struct SaleConfigData {
    uint8  ogMintLimit;
    uint8  whitelistMintLimit;
    uint32 ogSaleStartTime;
    uint32 whitelistSaleStartTime;
    uint32 publicSaleStartTime;
    uint64 presalePrice;
    uint64 publicPrice;
  }

  SaleConfigData public saleConfig;

  constructor(
    uint256 maxBatchSize_, // max amount to mint in one transaction
    uint256 collectionSize_, 
    uint256 amountReserved_,
    bytes32 ogMerkleRoot_,
    bytes32 whitelistMerkleRoot_,
    string memory notRevealedUri_
  ) ERC721A("Mutts", "MUTT", maxBatchSize_, collectionSize_, notRevealedUri_) {
    reservedSpent = 0;
    amountReserved = amountReserved_;
    publicTxLimit = maxBatchSize_;
    saleConfig = SaleConfigData(
      3, // ogMintLimit
      2, // whitelistMintLimit
      1647360000, // ogSaleStartTime - March 15th @ 11am EST
      1647367200, // whitelistSaleStartTime - March 15th @ 1pm EST
      1647453600, // publicSaleStartTime - March 16th @ 1pm EST
      0.07 ether, // presalePrice
      0.1 ether   // publicPrice,
    );

    ogMerkleRoot = ogMerkleRoot_;
    whitelistMerkleRoot = whitelistMerkleRoot_;
  }



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

  modifier checkPrice(uint64 price, uint8 quantity) {
    require(
        msg.value >= price * quantity,
        "checkPrice: not enough ether for this amount"
    );
    _;
  }

  modifier checkAlreadyMinted(uint8 limit, uint8 quantity) {
    require(
      numberMinted(msg.sender) + quantity <= limit,
      "checkAlreadyMinted: cannot mint this many"
    );
    _;
  }

  modifier checkWhitelist(bytes32[] calldata merkleProof, bytes32 merkleRoot) {
    require(
      MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), 
      "checkWhitelist: You are not whitelisted"
    );
    _;
  }
  // ~~~ Modifiers End ~~~




  // ~~~ Mint Start ~~~
  function ogMint(uint8 quantity, bytes32[] calldata merkleProof) 
    external 
    payable 
    callerIsUser 
    checkWhitelist(merkleProof, ogMerkleRoot)
    checkPrice(saleConfig.presalePrice, quantity)
    checkAlreadyMinted(saleConfig.ogMintLimit, quantity)
  {
    require(
      block.timestamp >= saleConfig.ogSaleStartTime && block.timestamp <= saleConfig.publicSaleStartTime,
      "ogMint: sale has either ended or not started yet"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(saleConfig.presalePrice * quantity);
  }

  function whitelistMint(uint8 quantity, bytes32[] calldata merkleProof) 
    external 
    payable 
    callerIsUser 
    checkWhitelist(merkleProof, whitelistMerkleRoot)
    checkPrice(saleConfig.presalePrice, quantity)
    checkAlreadyMinted(saleConfig.whitelistMintLimit, quantity)
  {
    require(
      block.timestamp >= saleConfig.whitelistSaleStartTime && block.timestamp <= saleConfig.publicSaleStartTime,
      "whitelistMint: sale has either ended or not started yet"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(saleConfig.presalePrice);
  }

  function publicMint(uint8 quantity) 
    external 
    payable 
    callerIsUser 
    checkPrice(saleConfig.publicPrice, quantity)
  {
    require(
        saleConfig.publicSaleStartTime != 0 && block.timestamp >= saleConfig.publicSaleStartTime,
        "publicMint: public sale has not begun yet"
    );
    require(
        quantity <= publicTxLimit,
        "publicMint: can not mint this many in one transaction"
    );
    require(
        totalSupply() + quantity <= collectionSize, 
        "publicMint: reached max supply"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(saleConfig.publicPrice * quantity);
  }

  function reservedMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= collectionSize && reservedSpent + quantity <= amountReserved,
      "reservedMint: too many already minted"
    );

    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }

    uint256 remainder = quantity % maxBatchSize;
    _safeMint(msg.sender, remainder);

    reservedSpent += quantity;
  }
  // ~~~ Mint End ~~~



  // ~~~ Utils Start ~~~
  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 withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "withdrawMoney: Transfer failed.");
  }

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

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

  // metadata URI
  string private _baseTokenURI;

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




  // ~~~ Setters Start ~~~
  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setOgMerkleRoot(bytes32 ogMerkleRoot_) external onlyOwner {
    ogMerkleRoot = ogMerkleRoot_;
  }

  function setWhitelistMerkleRoot(bytes32 whitelistMerkleRoot_) external onlyOwner {
    whitelistMerkleRoot = whitelistMerkleRoot_;
  }

  function setOgMintLimit(uint8 ogMintLimit_) external onlyOwner {
    saleConfig.ogMintLimit = ogMintLimit_;
  }

  function setWhitelistMerkleRoot(uint8 whitelistMintLimit_) external onlyOwner {
    saleConfig.whitelistMintLimit = whitelistMintLimit_;
  }

  function setSaleTimes(uint32 ogSaleStartTime_, uint32 whitelistSaleStartTime_, uint32 publicSaleStartTime_) external onlyOwner{
    if (ogSaleStartTime_ != 0) {
        saleConfig.ogSaleStartTime = ogSaleStartTime_;
    }
    if (whitelistSaleStartTime_ != 0) {
        require(whitelistSaleStartTime_ > saleConfig.ogSaleStartTime, "setSaleTimes: whitelist sale start time cannot be before OG sale start time");
        saleConfig.whitelistSaleStartTime = whitelistSaleStartTime_;
    }
    if (publicSaleStartTime_ != 0) {
        require(publicSaleStartTime_ > saleConfig.whitelistSaleStartTime, "setSaleTimes: public sale start time cannot be before whitelist sale start time");
        saleConfig.publicSaleStartTime = publicSaleStartTime_;
    }
  }
  // ~~~ Setters End ~~~

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountReserved_","type":"uint256"},{"internalType":"bytes32","name":"ogMerkleRoot_","type":"bytes32"},{"internalType":"bytes32","name":"whitelistMerkleRoot_","type":"bytes32"},{"internalType":"string","name":"notRevealedUri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSpent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","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":[],"name":"saleConfig","outputs":[{"internalType":"uint8","name":"ogMintLimit","type":"uint8"},{"internalType":"uint8","name":"whitelistMintLimit","type":"uint8"},{"internalType":"uint32","name":"ogSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"presalePrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"ogMerkleRoot_","type":"bytes32"}],"name":"setOgMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"ogMintLimit_","type":"uint8"}],"name":"setOgMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"ogSaleStartTime_","type":"uint32"},{"internalType":"uint32","name":"whitelistSaleStartTime_","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime_","type":"uint32"}],"name":"setSaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"whitelistMintLimit_","type":"uint8"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"whitelistMerkleRoot_","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260006001556000600a553480156200001c57600080fd5b5060405162003998380380620039988339810160408190526200003f916200035f565b604051806040016040528060058152602001644d7574747360d81b815250604051806040016040528060048152602001631355551560e21b81525087878462000097620000916200026560201b60201c565b62000269565b60008211620001045760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008311620001665760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fb565b84516200017b906002906020880190620002b9565b50835162000191906003906020870190620002b9565b5060a083905260808290526008805460ff191690558051620001bb906009906020840190620002b9565b50506001600b5550506000600c5550505060c092835260e09485526040805195860181526003865260026020870152636230b80090860152636230d420606086015263623225a0608086015266f8b0a10e47000060a086015267016345785d8a00009490920193909352600f80546001600160f01b0319167d016345785d8a000000f8b0a10e470000623225a06230d4206230b8000203179055600d9290925550600e55620004be565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002c7906200046b565b90600052602060002090601f016020900481019282620002eb576000855562000336565b82601f106200030657805160ff191683800117855562000336565b8280016001018555821562000336579182015b828111156200033657825182559160200191906001019062000319565b506200034492915062000348565b5090565b5b8082111562000344576000815560010162000349565b60008060008060008060c087890312156200037957600080fd5b86519550602080880151955060408801519450606088015193506080880151925060a088015160018060401b0380821115620003b457600080fd5b818a0191508a601f830112620003c957600080fd5b815181811115620003de57620003de620004a8565b604051601f8201601f19908116603f01168101908382118183101715620004095762000409620004a8565b816040528281528d868487010111156200042257600080fd5b600093505b8284101562000446578484018601518185018701529285019262000427565b82841115620004585760008684830101525b8096505050505050509295509295509295565b600181811c908216806200048057607f821691505b60208210811415620004a257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e051613468620005306000396000818161069e01526115d30152600081816107f101526117840152600081816118150152818161184d0152818161188b015281816123660152818161239001526128c6015260008181611664015261174601526134686000f3fe6080604052600436106102515760003560e01c80638c74bf0e11610139578063b88d4fde116100b6578063dc33e6811161007a578063dc33e68114610756578063e7ea8e8b14610776578063e985e9c514610796578063ea0d8da4146107df578063f2c4ce1e14610813578063f2fde38b1461083357600080fd5b8063b88d4fde146106c0578063bd32fb66146106e0578063c87b56dd14610700578063d7224ba014610720578063d8a7ab891461073657600080fd5b8063a22cb465116100fd578063a22cb4651461062c578063a475b5dd1461064c578063aa98e0c614610661578063ac44600214610677578063af29a0c61461068c57600080fd5b80638c74bf0e146104d95780638da5cb5b146104f957806390aa0b0f146105175780639231ab2a146105ca57806395d89b411461061757600080fd5b80633715e34e116101d25780635a3930da116101965780635a3930da146104485780636352211e1461045e57806370a082311461047e578063715018a61461049e578063842e481c146104b3578063858e83b5146104c657600080fd5b80633715e34e146103b557806342842e0e146103d55780634f6ccce7146103f557806355f804b314610415578063583816691461043557600080fd5b80630a302530116102195780630a3025301461031c57806318160ddd1461034057806323b872dd1461035557806324edda85146103755780632f745c591461039557600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063081c8c44146102e5578063095ea7b3146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004612e26565b610853565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06108c0565b60405161028291906130a4565b3480156102b957600080fd5b506102cd6102c8366004612e0d565b610952565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506102a06109e2565b34801561030657600080fd5b5061031a610315366004612de3565b610a70565b005b34801561032857600080fd5b50610332600d5481565b604051908152602001610282565b34801561034c57600080fd5b50600154610332565b34801561036157600080fd5b5061031a610370366004612cf0565b610b88565b34801561038157600080fd5b5061031a610390366004612f19565b610b93565b3480156103a157600080fd5b506103326103b0366004612de3565b610d80565b3480156103c157600080fd5b5061031a6103d0366004612f5c565b610ef8565b3480156103e157600080fd5b5061031a6103f0366004612cf0565b610f3e565b34801561040157600080fd5b50610332610410366004612e0d565b610f59565b34801561042157600080fd5b5061031a610430366004612e60565b610fc2565b61031a610443366004612f77565b610ff8565b34801561045457600080fd5b50610332600c5481565b34801561046a57600080fd5b506102cd610479366004612e0d565b61120e565b34801561048a57600080fd5b50610332610499366004612ca2565b611220565b3480156104aa57600080fd5b5061031a6112b1565b61031a6104c1366004612f77565b6112e7565b61031a6104d4366004612f5c565b6114de565b3480156104e557600080fd5b5061031a6104f4366004612e0d565b61171a565b34801561050557600080fd5b506000546001600160a01b03166102cd565b34801561052357600080fd5b50600f546105789060ff8082169161010081049091169063ffffffff620100008204811691600160301b8104821691600160501b820416906001600160401b03600160701b8204811691600160b01b90041687565b6040805160ff988916815297909616602088015263ffffffff9485169587019590955291831660608601529190911660808401526001600160401b0390811660a08401521660c082015260e001610282565b3480156105d657600080fd5b506105ea6105e5366004612e0d565b6118d8565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610282565b34801561062357600080fd5b506102a06118f5565b34801561063857600080fd5b5061031a610647366004612da7565b611904565b34801561065857600080fd5b5061031a6119c9565b34801561066d57600080fd5b50610332600e5481565b34801561068357600080fd5b5061031a611a02565b34801561069857600080fd5b506103327f000000000000000000000000000000000000000000000000000000000000000081565b3480156106cc57600080fd5b5061031a6106db366004612d2c565b611b24565b3480156106ec57600080fd5b5061031a6106fb366004612e0d565b611b5d565b34801561070c57600080fd5b506102a061071b366004612e0d565b611b8c565b34801561072c57600080fd5b50610332600a5481565b34801561074257600080fd5b5061031a610751366004612e0d565b611cf5565b34801561076257600080fd5b50610332610771366004612ca2565b611d24565b34801561078257600080fd5b5061031a610791366004612f5c565b611d2f565b3480156107a257600080fd5b506102766107b1366004612cbd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107eb57600080fd5b506103327f000000000000000000000000000000000000000000000000000000000000000081565b34801561081f57600080fd5b5061031a61082e366004612ed1565b611d6f565b34801561083f57600080fd5b5061031a61084e366004612ca2565b611db0565b60006001600160e01b031982166380ac58cd60e01b148061088457506001600160e01b03198216635b5e139f60e01b145b8061089f57506001600160e01b0319821663780e9d6360e01b145b806108ba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108cf9061335a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fb9061335a565b80156109485780601f1061091d57610100808354040283529160200191610948565b820191906000526020600020905b81548152906001019060200180831161092b57829003601f168201915b5050505050905090565b600061095f826001541190565b6109c65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600980546109ef9061335a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b9061335a565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b505050505081565b6000610a7b8261120e565b9050806001600160a01b0316836001600160a01b03161415610aea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109bd565b336001600160a01b0382161480610b065750610b0681336107b1565b610b785760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109bd565b610b83838383611e4b565b505050565b610b83838383611ea7565b6000546001600160a01b03163314610bbd5760405162461bcd60e51b81526004016109bd9061317e565b63ffffffff831615610be657600f805465ffffffff000019166201000063ffffffff8616021790555b63ffffffff821615610caf57600f5463ffffffff62010000909104811690831611610c8d5760405162461bcd60e51b815260206004820152604b60248201527f73657453616c6554696d65733a2077686974656c6973742073616c652073746160448201527f72742074696d652063616e6e6f74206265206265666f7265204f472073616c6560648201526a2073746172742074696d6560a81b608482015260a4016109bd565b600f805469ffffffff0000000000001916600160301b63ffffffff8516021790555b63ffffffff811615610b8357600f5463ffffffff600160301b909104811690821611610d5b5760405162461bcd60e51b815260206004820152604f60248201527f73657453616c6554696d65733a207075626c69632073616c652073746172742060448201527f74696d652063616e6e6f74206265206265666f72652077686974656c6973742060648201526e73616c652073746172742074696d6560881b608482015260a4016109bd565b600f805463ffffffff8316600160501b0263ffffffff60501b19909116179055505050565b6000610d8b83611220565b8210610de45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109bd565b6000610def60015490565b905060008060005b83811015610e98576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610e4957805192505b876001600160a01b0316836001600160a01b03161415610e855786841415610e77575093506108ba92505050565b83610e8181613395565b9450505b5080610e9081613395565b915050610df7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109bd565b6000546001600160a01b03163314610f225760405162461bcd60e51b81526004016109bd9061317e565b600f805460ff9092166101000261ff0019909216919091179055565b610b8383838360405180602001604052806000815250611b24565b6000610f6460015490565b8210610fbe5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109bd565b5090565b6000546001600160a01b03163314610fec5760405162461bcd60e51b81526004016109bd9061317e565b610b8360108383612ae3565b3233146110175760405162461bcd60e51b81526004016109bd906130fe565b8181600e5461108f838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b6040516020818303038152906040528051906020012061222d565b6110ab5760405162461bcd60e51b81526004016109bd906130b7565b600f54600160701b90046001600160401b0316866110cc60ff8216836132a9565b6001600160401b03163410156110f45760405162461bcd60e51b81526004016109bd906131b3565b600f5460ff61010090910481169089908290821661111133611d24565b61111b919061327d565b11156111395760405162461bcd60e51b81526004016109bd90613135565b600f54600160301b900463ffffffff1642108015906111675750600f54600160501b900463ffffffff164211155b6111d95760405162461bcd60e51b815260206004820152603760248201527f77686974656c6973744d696e743a2073616c652068617320656974686572206560448201527f6e646564206f72206e6f7420737461727465642079657400000000000000000060648201526084016109bd565b6111e6338b60ff16612243565b600f5461120290600160701b90046001600160401b031661225d565b50505050505050505050565b6000611219826122e4565b5192915050565b60006001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109bd565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146112db5760405162461bcd60e51b81526004016109bd9061317e565b6112e5600061248d565b565b3233146113065760405162461bcd60e51b81526004016109bd906130fe565b8181600d54611367838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050611074565b6113835760405162461bcd60e51b81526004016109bd906130b7565b600f54600160701b90046001600160401b0316866113a460ff8216836132a9565b6001600160401b03163410156113cc5760405162461bcd60e51b81526004016109bd906131b3565b600f5460ff908116908990829082166113e433611d24565b6113ee919061327d565b111561140c5760405162461bcd60e51b81526004016109bd90613135565b600f5462010000900463ffffffff1642108015906114395750600f54600160501b900463ffffffff164211155b61149e5760405162461bcd60e51b815260206004820152603060248201527f6f674d696e743a2073616c65206861732065697468657220656e646564206f7260448201526f081b9bdd081cdd185c9d1959081e595d60821b60648201526084016109bd565b6114ab338b60ff16612243565b600f54611202906114d09060ff8d1690600160701b90046001600160401b03166132a9565b6001600160401b031661225d565b3233146114fd5760405162461bcd60e51b81526004016109bd906130fe565b600f54600160b01b90046001600160401b03168161151e60ff8216836132a9565b6001600160401b03163410156115465760405162461bcd60e51b81526004016109bd906131b3565b600f54600160501b900463ffffffff16158015906115735750600f54600160501b900463ffffffff164210155b6115d15760405162461bcd60e51b815260206004820152602960248201527f7075626c69634d696e743a207075626c69632073616c6520686173206e6f7420604482015268189959dd5b881e595d60ba1b60648201526084016109bd565b7f00000000000000000000000000000000000000000000000000000000000000008360ff1611156116625760405162461bcd60e51b815260206004820152603560248201527f7075626c69634d696e743a2063616e206e6f74206d696e742074686973206d61604482015274373c9034b71037b732903a3930b739b0b1ba34b7b760591b60648201526084016109bd565b7f00000000000000000000000000000000000000000000000000000000000000008360ff1661169060015490565b61169a919061327d565b11156116e85760405162461bcd60e51b815260206004820152601e60248201527f7075626c69634d696e743a2072656163686564206d617820737570706c79000060448201526064016109bd565b6116f5338460ff16612243565b600f54610b83906114d09060ff861690600160b01b90046001600160401b03166132a9565b6000546001600160a01b031633146117445760405162461bcd60e51b81526004016109bd9061317e565b7f00000000000000000000000000000000000000000000000000000000000000008161176f60015490565b611779919061327d565b111580156117b457507f000000000000000000000000000000000000000000000000000000000000000081600c546117b1919061327d565b11155b61180e5760405162461bcd60e51b815260206004820152602560248201527f72657365727665644d696e743a20746f6f206d616e7920616c7265616479206d6044820152641a5b9d195960da1b60648201526084016109bd565b600061183a7f000000000000000000000000000000000000000000000000000000000000000083613295565b905060005b8181101561188357611871337f0000000000000000000000000000000000000000000000000000000000000000612243565b8061187b81613395565b91505061183f565b5060006118b07f0000000000000000000000000000000000000000000000000000000000000000846133b0565b90506118bc3382612243565b82600c60008282546118ce919061327d565b9091555050505050565b60408051808201909152600080825260208201526108ba826122e4565b6060600380546108cf9061335a565b6001600160a01b03821633141561195d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109bd565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119f35760405162461bcd60e51b81526004016109bd9061317e565b6008805460ff19166001179055565b6000546001600160a01b03163314611a2c5760405162461bcd60e51b81526004016109bd9061317e565b6002600b541415611a7f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109bd565b6002600b55604051600090339047908381818185875af1925050503d8060008114611ac6576040519150601f19603f3d011682016040523d82523d6000602084013e611acb565b606091505b5050905080611b1c5760405162461bcd60e51b815260206004820152601f60248201527f77697468647261774d6f6e65793a205472616e73666572206661696c65642e0060448201526064016109bd565b506001600b55565b611b2f848484611ea7565b611b3b848484846124dd565b611b575760405162461bcd60e51b81526004016109bd906131ff565b50505050565b6000546001600160a01b03163314611b875760405162461bcd60e51b81526004016109bd9061317e565b600e55565b6060611b99826001541190565b611bfd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109bd565b60085460ff16611c995760098054611c149061335a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c409061335a565b8015611c8d5780601f10611c6257610100808354040283529160200191611c8d565b820191906000526020600020905b815481529060010190602001808311611c7057829003601f168201915b50505050509050919050565b6000611ca36125eb565b90506000815111611cc35760405180602001604052806000815250611cee565b80611ccd846125fa565b604051602001611cde929190613028565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611d1f5760405162461bcd60e51b81526004016109bd9061317e565b600d55565b60006108ba826126f7565b6000546001600160a01b03163314611d595760405162461bcd60e51b81526004016109bd9061317e565b600f805460ff191660ff92909216919091179055565b6000546001600160a01b03163314611d995760405162461bcd60e51b81526004016109bd9061317e565b8051611dac906009906020840190612b63565b5050565b6000546001600160a01b03163314611dda5760405162461bcd60e51b81526004016109bd9061317e565b6001600160a01b038116611e3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bd565b611e488161248d565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611eb2826122e4565b80519091506000906001600160a01b0316336001600160a01b03161480611ee9575033611ede84610952565b6001600160a01b0316145b80611efb57508151611efb90336107b1565b905080611f655760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109bd565b846001600160a01b031682600001516001600160a01b031614611fd95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109bd565b6001600160a01b03841661203d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109bd565b61204d6000848460000151611e4b565b6001600160a01b038516600090815260056020526040812080546001929061207f9084906001600160801b03166132d8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926120cb91859116613252565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561215284600161327d565b6000818152600460205260409020549091506001600160a01b03166121e35761217c816001541190565b156121e35760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008261223a8584612795565b14949350505050565b611dac828260405180602001604052806000815250612809565b803410156122a65760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016109bd565b80341115611e4857336108fc6122bc8334613300565b6040518115909202916000818181858888f19350505050158015611dac573d6000803e3d6000fd5b6040805180820190915260008082526020820152612303826001541190565b6123625760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109bd565b60007f000000000000000000000000000000000000000000000000000000000000000083106123c3576123b57f000000000000000000000000000000000000000000000000000000000000000084613300565b6123c090600161327d565b90505b825b81811061242c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561241957949350505050565b508061242481613343565b9150506123c5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109bd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156125df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612521903390899088908890600401613067565b602060405180830381600087803b15801561253b57600080fd5b505af192505050801561256b575060408051601f3d908101601f1916820190925261256891810190612e43565b60015b6125c5573d808015612599576040519150601f19603f3d011682016040523d82523d6000602084013e61259e565b606091505b5080516125bd5760405162461bcd60e51b81526004016109bd906131ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125e3565b5060015b949350505050565b6060601080546108cf9061335a565b60608161261e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612648578061263281613395565b91506126419050600a83613295565b9150612622565b6000816001600160401b0381111561266257612662613406565b6040519080825280601f01601f19166020018201604052801561268c576020820181803683370190505b5090505b84156125e3576126a1600183613300565b91506126ae600a866133b0565b6126b990603061327d565b60f81b8183815181106126ce576126ce6133f0565b60200101906001600160f81b031916908160001a9053506126f0600a86613295565b9450612690565b60006001600160a01b0382166127695760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109bd565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081815b84518110156128015760008582815181106127b7576127b76133f0565b602002602001015190508083116127dd57600083815260208290526040902092506127ee565b600081815260208490526040902092505b50806127f981613395565b91505061279a565b509392505050565b6001546001600160a01b03841661286c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109bd565b612877816001541190565b156128c45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109bd565b7f000000000000000000000000000000000000000000000000000000000000000083111561293f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109bd565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061299b908790613252565b6001600160801b031681526020018583602001516129b99190613252565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ad85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a9c60008884886124dd565b612ab85760405162461bcd60e51b81526004016109bd906131ff565b81612ac281613395565b9250508080612ad090613395565b915050612a4f565b506001819055612225565b828054612aef9061335a565b90600052602060002090601f016020900481019282612b115760008555612b57565b82601f10612b2a5782800160ff19823516178555612b57565b82800160010185558215612b57579182015b82811115612b57578235825591602001919060010190612b3c565b50610fbe929150612bd7565b828054612b6f9061335a565b90600052602060002090601f016020900481019282612b915760008555612b57565b82601f10612baa57805160ff1916838001178555612b57565b82800160010185558215612b57579182015b82811115612b57578251825591602001919060010190612bbc565b5b80821115610fbe5760008155600101612bd8565b60006001600160401b0380841115612c0657612c06613406565b604051601f8501601f19908116603f01168101908282118183101715612c2e57612c2e613406565b81604052809350858152868686011115612c4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c7857600080fd5b919050565b803563ffffffff81168114612c7857600080fd5b803560ff81168114612c7857600080fd5b600060208284031215612cb457600080fd5b611cee82612c61565b60008060408385031215612cd057600080fd5b612cd983612c61565b9150612ce760208401612c61565b90509250929050565b600080600060608486031215612d0557600080fd5b612d0e84612c61565b9250612d1c60208501612c61565b9150604084013590509250925092565b60008060008060808587031215612d4257600080fd5b612d4b85612c61565b9350612d5960208601612c61565b92506040850135915060608501356001600160401b03811115612d7b57600080fd5b8501601f81018713612d8c57600080fd5b612d9b87823560208401612bec565b91505092959194509250565b60008060408385031215612dba57600080fd5b612dc383612c61565b915060208301358015158114612dd857600080fd5b809150509250929050565b60008060408385031215612df657600080fd5b612dff83612c61565b946020939093013593505050565b600060208284031215612e1f57600080fd5b5035919050565b600060208284031215612e3857600080fd5b8135611cee8161341c565b600060208284031215612e5557600080fd5b8151611cee8161341c565b60008060208385031215612e7357600080fd5b82356001600160401b0380821115612e8a57600080fd5b818501915085601f830112612e9e57600080fd5b813581811115612ead57600080fd5b866020828501011115612ebf57600080fd5b60209290920196919550909350505050565b600060208284031215612ee357600080fd5b81356001600160401b03811115612ef957600080fd5b8201601f81018413612f0a57600080fd5b6125e384823560208401612bec565b600080600060608486031215612f2e57600080fd5b612f3784612c7d565b9250612f4560208501612c7d565b9150612f5360408501612c7d565b90509250925092565b600060208284031215612f6e57600080fd5b611cee82612c91565b600080600060408486031215612f8c57600080fd5b612f9584612c91565b925060208401356001600160401b0380821115612fb157600080fd5b818601915086601f830112612fc557600080fd5b813581811115612fd457600080fd5b8760208260051b8501011115612fe957600080fd5b6020830194508093505050509250925092565b60008151808452613014816020860160208601613317565b601f01601f19169290920160200192915050565b6000835161303a818460208801613317565b83519083019061304e818360208801613317565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061309a90830184612ffc565b9695505050505050565b602081526000611cee6020830184612ffc565b60208082526027908201527f636865636b57686974656c6973743a20596f7520617265206e6f742077686974604082015266195b1a5cdd195960ca1b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f636865636b416c72656164794d696e7465643a2063616e6e6f74206d696e742060408201526874686973206d616e7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f636865636b50726963653a206e6f7420656e6f75676820657468657220666f7260408201526b081d1a1a5cc8185b5bdd5b9d60a21b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115613274576132746133c4565b01949350505050565b60008219821115613290576132906133c4565b500190565b6000826132a4576132a46133da565b500490565b60006001600160401b03808316818516818304811182151516156132cf576132cf6133c4565b02949350505050565b60006001600160801b03838116908316818110156132f8576132f86133c4565b039392505050565b600082821015613312576133126133c4565b500390565b60005b8381101561333257818101518382015260200161331a565b83811115611b575750506000910152565b600081613352576133526133c4565b506000190190565b600181811c9082168061336e57607f821691505b6020821081141561338f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133a9576133a96133c4565b5060010190565b6000826133bf576133bf6133da565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e4857600080fdfea264697066735822122054792120fd742111daaf6eb971dc2131c46b9a69570f16d5bd15c7645959b87864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000000115029d9f13f451a4f8c809c01396e3d14ab4a08168dbf1ec564e44a7d16d36788cd2424759e192124c6a0aeedecae222bc2290c78e68a20e2fa7bc4e3c3e787cfa00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d50554d6839397a753442394c484c76385676345641325a4a7674697a6571556272706b7076763761333873322f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638c74bf0e11610139578063b88d4fde116100b6578063dc33e6811161007a578063dc33e68114610756578063e7ea8e8b14610776578063e985e9c514610796578063ea0d8da4146107df578063f2c4ce1e14610813578063f2fde38b1461083357600080fd5b8063b88d4fde146106c0578063bd32fb66146106e0578063c87b56dd14610700578063d7224ba014610720578063d8a7ab891461073657600080fd5b8063a22cb465116100fd578063a22cb4651461062c578063a475b5dd1461064c578063aa98e0c614610661578063ac44600214610677578063af29a0c61461068c57600080fd5b80638c74bf0e146104d95780638da5cb5b146104f957806390aa0b0f146105175780639231ab2a146105ca57806395d89b411461061757600080fd5b80633715e34e116101d25780635a3930da116101965780635a3930da146104485780636352211e1461045e57806370a082311461047e578063715018a61461049e578063842e481c146104b3578063858e83b5146104c657600080fd5b80633715e34e146103b557806342842e0e146103d55780634f6ccce7146103f557806355f804b314610415578063583816691461043557600080fd5b80630a302530116102195780630a3025301461031c57806318160ddd1461034057806323b872dd1461035557806324edda85146103755780632f745c591461039557600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063081c8c44146102e5578063095ea7b3146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004612e26565b610853565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06108c0565b60405161028291906130a4565b3480156102b957600080fd5b506102cd6102c8366004612e0d565b610952565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506102a06109e2565b34801561030657600080fd5b5061031a610315366004612de3565b610a70565b005b34801561032857600080fd5b50610332600d5481565b604051908152602001610282565b34801561034c57600080fd5b50600154610332565b34801561036157600080fd5b5061031a610370366004612cf0565b610b88565b34801561038157600080fd5b5061031a610390366004612f19565b610b93565b3480156103a157600080fd5b506103326103b0366004612de3565b610d80565b3480156103c157600080fd5b5061031a6103d0366004612f5c565b610ef8565b3480156103e157600080fd5b5061031a6103f0366004612cf0565b610f3e565b34801561040157600080fd5b50610332610410366004612e0d565b610f59565b34801561042157600080fd5b5061031a610430366004612e60565b610fc2565b61031a610443366004612f77565b610ff8565b34801561045457600080fd5b50610332600c5481565b34801561046a57600080fd5b506102cd610479366004612e0d565b61120e565b34801561048a57600080fd5b50610332610499366004612ca2565b611220565b3480156104aa57600080fd5b5061031a6112b1565b61031a6104c1366004612f77565b6112e7565b61031a6104d4366004612f5c565b6114de565b3480156104e557600080fd5b5061031a6104f4366004612e0d565b61171a565b34801561050557600080fd5b506000546001600160a01b03166102cd565b34801561052357600080fd5b50600f546105789060ff8082169161010081049091169063ffffffff620100008204811691600160301b8104821691600160501b820416906001600160401b03600160701b8204811691600160b01b90041687565b6040805160ff988916815297909616602088015263ffffffff9485169587019590955291831660608601529190911660808401526001600160401b0390811660a08401521660c082015260e001610282565b3480156105d657600080fd5b506105ea6105e5366004612e0d565b6118d8565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610282565b34801561062357600080fd5b506102a06118f5565b34801561063857600080fd5b5061031a610647366004612da7565b611904565b34801561065857600080fd5b5061031a6119c9565b34801561066d57600080fd5b50610332600e5481565b34801561068357600080fd5b5061031a611a02565b34801561069857600080fd5b506103327f000000000000000000000000000000000000000000000000000000000000000381565b3480156106cc57600080fd5b5061031a6106db366004612d2c565b611b24565b3480156106ec57600080fd5b5061031a6106fb366004612e0d565b611b5d565b34801561070c57600080fd5b506102a061071b366004612e0d565b611b8c565b34801561072c57600080fd5b50610332600a5481565b34801561074257600080fd5b5061031a610751366004612e0d565b611cf5565b34801561076257600080fd5b50610332610771366004612ca2565b611d24565b34801561078257600080fd5b5061031a610791366004612f5c565b611d2f565b3480156107a257600080fd5b506102766107b1366004612cbd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107eb57600080fd5b506103327f000000000000000000000000000000000000000000000000000000000000011581565b34801561081f57600080fd5b5061031a61082e366004612ed1565b611d6f565b34801561083f57600080fd5b5061031a61084e366004612ca2565b611db0565b60006001600160e01b031982166380ac58cd60e01b148061088457506001600160e01b03198216635b5e139f60e01b145b8061089f57506001600160e01b0319821663780e9d6360e01b145b806108ba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108cf9061335a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fb9061335a565b80156109485780601f1061091d57610100808354040283529160200191610948565b820191906000526020600020905b81548152906001019060200180831161092b57829003601f168201915b5050505050905090565b600061095f826001541190565b6109c65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600980546109ef9061335a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b9061335a565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b505050505081565b6000610a7b8261120e565b9050806001600160a01b0316836001600160a01b03161415610aea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109bd565b336001600160a01b0382161480610b065750610b0681336107b1565b610b785760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109bd565b610b83838383611e4b565b505050565b610b83838383611ea7565b6000546001600160a01b03163314610bbd5760405162461bcd60e51b81526004016109bd9061317e565b63ffffffff831615610be657600f805465ffffffff000019166201000063ffffffff8616021790555b63ffffffff821615610caf57600f5463ffffffff62010000909104811690831611610c8d5760405162461bcd60e51b815260206004820152604b60248201527f73657453616c6554696d65733a2077686974656c6973742073616c652073746160448201527f72742074696d652063616e6e6f74206265206265666f7265204f472073616c6560648201526a2073746172742074696d6560a81b608482015260a4016109bd565b600f805469ffffffff0000000000001916600160301b63ffffffff8516021790555b63ffffffff811615610b8357600f5463ffffffff600160301b909104811690821611610d5b5760405162461bcd60e51b815260206004820152604f60248201527f73657453616c6554696d65733a207075626c69632073616c652073746172742060448201527f74696d652063616e6e6f74206265206265666f72652077686974656c6973742060648201526e73616c652073746172742074696d6560881b608482015260a4016109bd565b600f805463ffffffff8316600160501b0263ffffffff60501b19909116179055505050565b6000610d8b83611220565b8210610de45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109bd565b6000610def60015490565b905060008060005b83811015610e98576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610e4957805192505b876001600160a01b0316836001600160a01b03161415610e855786841415610e77575093506108ba92505050565b83610e8181613395565b9450505b5080610e9081613395565b915050610df7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109bd565b6000546001600160a01b03163314610f225760405162461bcd60e51b81526004016109bd9061317e565b600f805460ff9092166101000261ff0019909216919091179055565b610b8383838360405180602001604052806000815250611b24565b6000610f6460015490565b8210610fbe5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109bd565b5090565b6000546001600160a01b03163314610fec5760405162461bcd60e51b81526004016109bd9061317e565b610b8360108383612ae3565b3233146110175760405162461bcd60e51b81526004016109bd906130fe565b8181600e5461108f838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b6040516020818303038152906040528051906020012061222d565b6110ab5760405162461bcd60e51b81526004016109bd906130b7565b600f54600160701b90046001600160401b0316866110cc60ff8216836132a9565b6001600160401b03163410156110f45760405162461bcd60e51b81526004016109bd906131b3565b600f5460ff61010090910481169089908290821661111133611d24565b61111b919061327d565b11156111395760405162461bcd60e51b81526004016109bd90613135565b600f54600160301b900463ffffffff1642108015906111675750600f54600160501b900463ffffffff164211155b6111d95760405162461bcd60e51b815260206004820152603760248201527f77686974656c6973744d696e743a2073616c652068617320656974686572206560448201527f6e646564206f72206e6f7420737461727465642079657400000000000000000060648201526084016109bd565b6111e6338b60ff16612243565b600f5461120290600160701b90046001600160401b031661225d565b50505050505050505050565b6000611219826122e4565b5192915050565b60006001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109bd565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146112db5760405162461bcd60e51b81526004016109bd9061317e565b6112e5600061248d565b565b3233146113065760405162461bcd60e51b81526004016109bd906130fe565b8181600d54611367838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050611074565b6113835760405162461bcd60e51b81526004016109bd906130b7565b600f54600160701b90046001600160401b0316866113a460ff8216836132a9565b6001600160401b03163410156113cc5760405162461bcd60e51b81526004016109bd906131b3565b600f5460ff908116908990829082166113e433611d24565b6113ee919061327d565b111561140c5760405162461bcd60e51b81526004016109bd90613135565b600f5462010000900463ffffffff1642108015906114395750600f54600160501b900463ffffffff164211155b61149e5760405162461bcd60e51b815260206004820152603060248201527f6f674d696e743a2073616c65206861732065697468657220656e646564206f7260448201526f081b9bdd081cdd185c9d1959081e595d60821b60648201526084016109bd565b6114ab338b60ff16612243565b600f54611202906114d09060ff8d1690600160701b90046001600160401b03166132a9565b6001600160401b031661225d565b3233146114fd5760405162461bcd60e51b81526004016109bd906130fe565b600f54600160b01b90046001600160401b03168161151e60ff8216836132a9565b6001600160401b03163410156115465760405162461bcd60e51b81526004016109bd906131b3565b600f54600160501b900463ffffffff16158015906115735750600f54600160501b900463ffffffff164210155b6115d15760405162461bcd60e51b815260206004820152602960248201527f7075626c69634d696e743a207075626c69632073616c6520686173206e6f7420604482015268189959dd5b881e595d60ba1b60648201526084016109bd565b7f00000000000000000000000000000000000000000000000000000000000000038360ff1611156116625760405162461bcd60e51b815260206004820152603560248201527f7075626c69634d696e743a2063616e206e6f74206d696e742074686973206d61604482015274373c9034b71037b732903a3930b739b0b1ba34b7b760591b60648201526084016109bd565b7f0000000000000000000000000000000000000000000000000000000000001e618360ff1661169060015490565b61169a919061327d565b11156116e85760405162461bcd60e51b815260206004820152601e60248201527f7075626c69634d696e743a2072656163686564206d617820737570706c79000060448201526064016109bd565b6116f5338460ff16612243565b600f54610b83906114d09060ff861690600160b01b90046001600160401b03166132a9565b6000546001600160a01b031633146117445760405162461bcd60e51b81526004016109bd9061317e565b7f0000000000000000000000000000000000000000000000000000000000001e618161176f60015490565b611779919061327d565b111580156117b457507f000000000000000000000000000000000000000000000000000000000000011581600c546117b1919061327d565b11155b61180e5760405162461bcd60e51b815260206004820152602560248201527f72657365727665644d696e743a20746f6f206d616e7920616c7265616479206d6044820152641a5b9d195960da1b60648201526084016109bd565b600061183a7f000000000000000000000000000000000000000000000000000000000000000383613295565b905060005b8181101561188357611871337f0000000000000000000000000000000000000000000000000000000000000003612243565b8061187b81613395565b91505061183f565b5060006118b07f0000000000000000000000000000000000000000000000000000000000000003846133b0565b90506118bc3382612243565b82600c60008282546118ce919061327d565b9091555050505050565b60408051808201909152600080825260208201526108ba826122e4565b6060600380546108cf9061335a565b6001600160a01b03821633141561195d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109bd565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119f35760405162461bcd60e51b81526004016109bd9061317e565b6008805460ff19166001179055565b6000546001600160a01b03163314611a2c5760405162461bcd60e51b81526004016109bd9061317e565b6002600b541415611a7f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109bd565b6002600b55604051600090339047908381818185875af1925050503d8060008114611ac6576040519150601f19603f3d011682016040523d82523d6000602084013e611acb565b606091505b5050905080611b1c5760405162461bcd60e51b815260206004820152601f60248201527f77697468647261774d6f6e65793a205472616e73666572206661696c65642e0060448201526064016109bd565b506001600b55565b611b2f848484611ea7565b611b3b848484846124dd565b611b575760405162461bcd60e51b81526004016109bd906131ff565b50505050565b6000546001600160a01b03163314611b875760405162461bcd60e51b81526004016109bd9061317e565b600e55565b6060611b99826001541190565b611bfd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109bd565b60085460ff16611c995760098054611c149061335a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c409061335a565b8015611c8d5780601f10611c6257610100808354040283529160200191611c8d565b820191906000526020600020905b815481529060010190602001808311611c7057829003601f168201915b50505050509050919050565b6000611ca36125eb565b90506000815111611cc35760405180602001604052806000815250611cee565b80611ccd846125fa565b604051602001611cde929190613028565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611d1f5760405162461bcd60e51b81526004016109bd9061317e565b600d55565b60006108ba826126f7565b6000546001600160a01b03163314611d595760405162461bcd60e51b81526004016109bd9061317e565b600f805460ff191660ff92909216919091179055565b6000546001600160a01b03163314611d995760405162461bcd60e51b81526004016109bd9061317e565b8051611dac906009906020840190612b63565b5050565b6000546001600160a01b03163314611dda5760405162461bcd60e51b81526004016109bd9061317e565b6001600160a01b038116611e3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bd565b611e488161248d565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611eb2826122e4565b80519091506000906001600160a01b0316336001600160a01b03161480611ee9575033611ede84610952565b6001600160a01b0316145b80611efb57508151611efb90336107b1565b905080611f655760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109bd565b846001600160a01b031682600001516001600160a01b031614611fd95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109bd565b6001600160a01b03841661203d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109bd565b61204d6000848460000151611e4b565b6001600160a01b038516600090815260056020526040812080546001929061207f9084906001600160801b03166132d8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926120cb91859116613252565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561215284600161327d565b6000818152600460205260409020549091506001600160a01b03166121e35761217c816001541190565b156121e35760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008261223a8584612795565b14949350505050565b611dac828260405180602001604052806000815250612809565b803410156122a65760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016109bd565b80341115611e4857336108fc6122bc8334613300565b6040518115909202916000818181858888f19350505050158015611dac573d6000803e3d6000fd5b6040805180820190915260008082526020820152612303826001541190565b6123625760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109bd565b60007f000000000000000000000000000000000000000000000000000000000000000383106123c3576123b57f000000000000000000000000000000000000000000000000000000000000000384613300565b6123c090600161327d565b90505b825b81811061242c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561241957949350505050565b508061242481613343565b9150506123c5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109bd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156125df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612521903390899088908890600401613067565b602060405180830381600087803b15801561253b57600080fd5b505af192505050801561256b575060408051601f3d908101601f1916820190925261256891810190612e43565b60015b6125c5573d808015612599576040519150601f19603f3d011682016040523d82523d6000602084013e61259e565b606091505b5080516125bd5760405162461bcd60e51b81526004016109bd906131ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506125e3565b5060015b949350505050565b6060601080546108cf9061335a565b60608161261e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612648578061263281613395565b91506126419050600a83613295565b9150612622565b6000816001600160401b0381111561266257612662613406565b6040519080825280601f01601f19166020018201604052801561268c576020820181803683370190505b5090505b84156125e3576126a1600183613300565b91506126ae600a866133b0565b6126b990603061327d565b60f81b8183815181106126ce576126ce6133f0565b60200101906001600160f81b031916908160001a9053506126f0600a86613295565b9450612690565b60006001600160a01b0382166127695760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109bd565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081815b84518110156128015760008582815181106127b7576127b76133f0565b602002602001015190508083116127dd57600083815260208290526040902092506127ee565b600081815260208490526040902092505b50806127f981613395565b91505061279a565b509392505050565b6001546001600160a01b03841661286c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109bd565b612877816001541190565b156128c45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109bd565b7f000000000000000000000000000000000000000000000000000000000000000383111561293f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109bd565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061299b908790613252565b6001600160801b031681526020018583602001516129b99190613252565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ad85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a9c60008884886124dd565b612ab85760405162461bcd60e51b81526004016109bd906131ff565b81612ac281613395565b9250508080612ad090613395565b915050612a4f565b506001819055612225565b828054612aef9061335a565b90600052602060002090601f016020900481019282612b115760008555612b57565b82601f10612b2a5782800160ff19823516178555612b57565b82800160010185558215612b57579182015b82811115612b57578235825591602001919060010190612b3c565b50610fbe929150612bd7565b828054612b6f9061335a565b90600052602060002090601f016020900481019282612b915760008555612b57565b82601f10612baa57805160ff1916838001178555612b57565b82800160010185558215612b57579182015b82811115612b57578251825591602001919060010190612bbc565b5b80821115610fbe5760008155600101612bd8565b60006001600160401b0380841115612c0657612c06613406565b604051601f8501601f19908116603f01168101908282118183101715612c2e57612c2e613406565b81604052809350858152868686011115612c4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c7857600080fd5b919050565b803563ffffffff81168114612c7857600080fd5b803560ff81168114612c7857600080fd5b600060208284031215612cb457600080fd5b611cee82612c61565b60008060408385031215612cd057600080fd5b612cd983612c61565b9150612ce760208401612c61565b90509250929050565b600080600060608486031215612d0557600080fd5b612d0e84612c61565b9250612d1c60208501612c61565b9150604084013590509250925092565b60008060008060808587031215612d4257600080fd5b612d4b85612c61565b9350612d5960208601612c61565b92506040850135915060608501356001600160401b03811115612d7b57600080fd5b8501601f81018713612d8c57600080fd5b612d9b87823560208401612bec565b91505092959194509250565b60008060408385031215612dba57600080fd5b612dc383612c61565b915060208301358015158114612dd857600080fd5b809150509250929050565b60008060408385031215612df657600080fd5b612dff83612c61565b946020939093013593505050565b600060208284031215612e1f57600080fd5b5035919050565b600060208284031215612e3857600080fd5b8135611cee8161341c565b600060208284031215612e5557600080fd5b8151611cee8161341c565b60008060208385031215612e7357600080fd5b82356001600160401b0380821115612e8a57600080fd5b818501915085601f830112612e9e57600080fd5b813581811115612ead57600080fd5b866020828501011115612ebf57600080fd5b60209290920196919550909350505050565b600060208284031215612ee357600080fd5b81356001600160401b03811115612ef957600080fd5b8201601f81018413612f0a57600080fd5b6125e384823560208401612bec565b600080600060608486031215612f2e57600080fd5b612f3784612c7d565b9250612f4560208501612c7d565b9150612f5360408501612c7d565b90509250925092565b600060208284031215612f6e57600080fd5b611cee82612c91565b600080600060408486031215612f8c57600080fd5b612f9584612c91565b925060208401356001600160401b0380821115612fb157600080fd5b818601915086601f830112612fc557600080fd5b813581811115612fd457600080fd5b8760208260051b8501011115612fe957600080fd5b6020830194508093505050509250925092565b60008151808452613014816020860160208601613317565b601f01601f19169290920160200192915050565b6000835161303a818460208801613317565b83519083019061304e818360208801613317565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061309a90830184612ffc565b9695505050505050565b602081526000611cee6020830184612ffc565b60208082526027908201527f636865636b57686974656c6973743a20596f7520617265206e6f742077686974604082015266195b1a5cdd195960ca1b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f636865636b416c72656164794d696e7465643a2063616e6e6f74206d696e742060408201526874686973206d616e7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602c908201527f636865636b50726963653a206e6f7420656e6f75676820657468657220666f7260408201526b081d1a1a5cc8185b5bdd5b9d60a21b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115613274576132746133c4565b01949350505050565b60008219821115613290576132906133c4565b500190565b6000826132a4576132a46133da565b500490565b60006001600160401b03808316818516818304811182151516156132cf576132cf6133c4565b02949350505050565b60006001600160801b03838116908316818110156132f8576132f86133c4565b039392505050565b600082821015613312576133126133c4565b500390565b60005b8381101561333257818101518382015260200161331a565b83811115611b575750506000910152565b600081613352576133526133c4565b506000190190565b600181811c9082168061336e57607f821691505b6020821081141561338f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133a9576133a96133c4565b5060010190565b6000826133bf576133bf6133da565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e4857600080fdfea264697066735822122054792120fd742111daaf6eb971dc2131c46b9a69570f16d5bd15c7645959b87864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000000115029d9f13f451a4f8c809c01396e3d14ab4a08168dbf1ec564e44a7d16d36788cd2424759e192124c6a0aeedecae222bc2290c78e68a20e2fa7bc4e3c3e787cfa00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d50554d6839397a753442394c484c76385676345641325a4a7674697a6571556272706b7076763761333873322f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 3
Arg [1] : collectionSize_ (uint256): 7777
Arg [2] : amountReserved_ (uint256): 277
Arg [3] : ogMerkleRoot_ (bytes32): 0x029d9f13f451a4f8c809c01396e3d14ab4a08168dbf1ec564e44a7d16d36788c
Arg [4] : whitelistMerkleRoot_ (bytes32): 0xd2424759e192124c6a0aeedecae222bc2290c78e68a20e2fa7bc4e3c3e787cfa
Arg [5] : notRevealedUri_ (string): ipfs://QmPUMh99zu4B9LHLv8Vv4VA2ZJvtizeqUbrpkpvv7a38s2/hidden.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000115
Arg [3] : 029d9f13f451a4f8c809c01396e3d14ab4a08168dbf1ec564e44a7d16d36788c
Arg [4] : d2424759e192124c6a0aeedecae222bc2290c78e68a20e2fa7bc4e3c3e787cfa
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d50554d6839397a753442394c484c76385676345641325a
Arg [8] : 4a7674697a6571556272706b7076763761333873322f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46199:6969:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32908:370;;;;;;;;;;-1:-1:-1;32908:370:0;;;;;:::i;:::-;;:::i;:::-;;;8578:14:1;;8571:22;8553:41;;8541:2;8526:18;32908:370:0;;;;;;;;34634:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36417:204::-;;;;;;;;;;-1:-1:-1;36417:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7876:32:1;;;7858:51;;7846:2;7831:18;36417:204:0;7712:203:1;30666:28:0;;;;;;;;;;;;;:::i;35980:379::-;;;;;;;;;;-1:-1:-1;35980:379:0;;;;;:::i;:::-;;:::i;:::-;;46369:27;;;;;;;;;;;;;;;;;;;8751:25:1;;;8739:2;8724:18;46369:27:0;8605:177:1;31469:94:0;;;;;;;;;;-1:-1:-1;31545:12:0;;31469:94;;37267:142;;;;;;;;;;-1:-1:-1;37267:142:0;;;;;:::i;:::-;;:::i;52371:766::-;;;;;;;;;;-1:-1:-1;52371:766:0;;;;;:::i;:::-;;:::i;32100:744::-;;;;;;;;;;-1:-1:-1;32100:744:0;;;;;:::i;:::-;;:::i;52223:142::-;;;;;;;;;;-1:-1:-1;52223:142:0;;;;;:::i;:::-;;:::i;37472:157::-;;;;;;;;;;-1:-1:-1;37472:157:0;;;;;:::i;:::-;;:::i;31632:177::-;;;;;;;;;;-1:-1:-1;31632:177:0;;;;;:::i;:::-;;:::i;51742:100::-;;;;;;;;;;-1:-1:-1;51742:100:0;;;;;:::i;:::-;;:::i;49028:582::-;;;;;;:::i;:::-;;:::i;46247:28::-;;;;;;;;;;;;;;;;34457:118;;;;;;;;;;-1:-1:-1;34457:118:0;;;;;:::i;:::-;;:::i;33334:211::-;;;;;;;;;;-1:-1:-1;33334:211:0;;;;;:::i;:::-;;:::i;28148:103::-;;;;;;;;;;;;;:::i;48464:558::-;;;;;;:::i;:::-;;:::i;49616:651::-;;;;;;:::i;:::-;;:::i;50273:506::-;;;;;;;;;;-1:-1:-1;50273:506:0;;;;;:::i;:::-;;:::i;27497:87::-;;;;;;;;;;-1:-1:-1;27543:7:0;27570:6;-1:-1:-1;;;;;27570:6:0;27497:87;;46682:32;;;;;;;;;;-1:-1:-1;46682:32:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46682:32:0;;;;;-1:-1:-1;;;46682:32:0;;;;-1:-1:-1;;;;;;;;46682:32:0;;;;;-1:-1:-1;;;46682:32:0;;;;;;;;;24432:4:1;24420:17;;;24402:36;;24474:17;;;;24469:2;24454:18;;24447:45;24511:10;24557:15;;;24537:18;;;24530:43;;;;24609:15;;;24604:2;24589:18;;24582:43;24662:15;;;;24656:3;24641:19;;24634:44;-1:-1:-1;;;;;24752:15:1;;;24746:3;24731:19;;24724:44;24805:15;24799:3;24784:19;;24777:44;24389:3;24374:19;46682:32:0;24105:722:1;51363:147:0;;;;;;;;;;-1:-1:-1;51363:147:0;;;;;:::i;:::-;;:::i;:::-;;;;23788:13:1;;-1:-1:-1;;;;;23784:39:1;23766:58;;23884:4;23872:17;;;23866:24;-1:-1:-1;;;;;23862:49:1;23840:20;;;23833:79;;;;23739:18;51363:147:0;23558:360:1;34789:98:0;;;;;;;;;;;;;:::i;36685:274::-;;;;;;;;;;-1:-1:-1;36685:274:0;;;;;:::i;:::-;;:::i;35411:63::-;;;;;;;;;;;;;:::i;46401:34::-;;;;;;;;;;;;;;;;51048:196;;;;;;;;;;;;;:::i;46324:38::-;;;;;;;;;;;;;;;37692:311;;;;;;;;;;-1:-1:-1;37692:311:0;;;;;:::i;:::-;;:::i;51962:136::-;;;;;;;;;;-1:-1:-1;51962:136:0;;;;;:::i;:::-;;:::i;34950:455::-;;;;;;;;;;-1:-1:-1;34950:455:0;;;;;:::i;:::-;;:::i;42107:43::-;;;;;;;;;;;;;;;;51848:108;;;;;;;;;;-1:-1:-1;51848:108:0;;;;;:::i;:::-;;:::i;51250:107::-;;;;;;;;;;-1:-1:-1;51250:107:0;;;;;:::i;:::-;;:::i;52104:113::-;;;;;;;;;;-1:-1:-1;52104:113:0;;;;;:::i;:::-;;:::i;37022:186::-;;;;;;;;;;-1:-1:-1;37022:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;37167:25:0;;;37144:4;37167:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37022:186;46280:39;;;;;;;;;;;;;;;35480:120;;;;;;;;;;-1:-1:-1;35480:120:0;;;;;:::i;:::-;;:::i;28406:201::-;;;;;;;;;;-1:-1:-1;28406:201:0;;;;;:::i;:::-;;:::i;32908:370::-;33035:4;-1:-1:-1;;;;;;33065:40:0;;-1:-1:-1;;;33065:40:0;;:99;;-1:-1:-1;;;;;;;33116:48:0;;-1:-1:-1;;;33116:48:0;33065:99;:160;;;-1:-1:-1;;;;;;;33175:50:0;;-1:-1:-1;;;33175:50:0;33065:160;:207;;;-1:-1:-1;;;;;;;;;;11460:40:0;;;33236:36;33051:221;32908:370;-1:-1:-1;;32908:370:0:o;34634:94::-;34688:13;34717:5;34710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34634:94;:::o;36417:204::-;36485:7;36509:16;36517:7;38329:12;;-1:-1:-1;38319:22:0;38242:105;36509:16;36501:74;;;;-1:-1:-1;;;36501:74:0;;22943:2:1;36501:74:0;;;22925:21:1;22982:2;22962:18;;;22955:30;23021:34;23001:18;;;22994:62;-1:-1:-1;;;23072:18:1;;;23065:43;23125:19;;36501:74:0;;;;;;;;;-1:-1:-1;36591:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36591:24:0;;36417:204::o;30666:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35980:379::-;36049:13;36065:24;36081:7;36065:15;:24::i;:::-;36049:40;;36110:5;-1:-1:-1;;;;;36104:11:0;:2;-1:-1:-1;;;;;36104:11:0;;;36096:58;;;;-1:-1:-1;;;36096:58:0;;18988:2:1;36096:58:0;;;18970:21:1;19027:2;19007:18;;;19000:30;19066:34;19046:18;;;19039:62;-1:-1:-1;;;19117:18:1;;;19110:32;19159:19;;36096:58:0;18786:398:1;36096:58:0;26301:10;-1:-1:-1;;;;;36179:21:0;;;;:62;;-1:-1:-1;36204:37:0;36221:5;26301:10;37022:186;:::i;36204:37::-;36163:153;;;;-1:-1:-1;;;36163:153:0;;14525:2:1;36163:153:0;;;14507:21:1;14564:2;14544:18;;;14537:30;14603:34;14583:18;;;14576:62;14674:27;14654:18;;;14647:55;14719:19;;36163:153:0;14323:421:1;36163:153:0;36325:28;36334:2;36338:7;36347:5;36325:8;:28::i;:::-;36042:317;35980:379;;:::o;37267:142::-;37375:28;37385:4;37391:2;37395:7;37375:9;:28::i;52371:766::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;52508:21:::1;::::0;::::1;::::0;52504:91:::1;;52542:10;:45:::0;;-1:-1:-1;;52542:45:0::1;::::0;::::1;::::0;::::1;;;::::0;;52504:91:::1;52605:28;::::0;::::1;::::0;52601:263:::1;;52680:10;:26:::0;::::1;::::0;;;::::1;::::0;::::1;52654:52:::0;;::::1;;52646:140;;;::::0;-1:-1:-1;;;52646:140:0;;14951:2:1;52646:140:0::1;::::0;::::1;14933:21:1::0;14990:2;14970:18;;;14963:30;15029:34;15009:18;;;15002:62;15100:34;15080:18;;;15073:62;-1:-1:-1;;;15151:19:1;;;15144:42;15203:19;;52646:140:0::1;14749:479:1::0;52646:140:0::1;52797:10;:59:::0;;-1:-1:-1;;52797:59:0::1;-1:-1:-1::0;;;52797:59:0::1;::::0;::::1;;;::::0;;52601:263:::1;52874:25;::::0;::::1;::::0;52870:262:::1;;52943:10;:33:::0;::::1;-1:-1:-1::0;;;52943:33:0;;::::1;::::0;::::1;52920:56:::0;;::::1;;52912:148;;;::::0;-1:-1:-1;;;52912:148:0;;10434:2:1;52912:148:0::1;::::0;::::1;10416:21:1::0;10473:2;10453:18;;;10446:30;10512:34;10492:18;;;10485:62;10583:34;10563:18;;;10556:62;-1:-1:-1;;;10634:19:1;;;10627:46;10690:19;;52912:148:0::1;10232:483:1::0;52912:148:0::1;53071:10;:53:::0;;::::1;::::0;::::1;-1:-1:-1::0;;;53071:53:0::1;-1:-1:-1::0;;;;53071:53:0;;::::1;;::::0;;52371:766;;;:::o;32100:744::-;32209:7;32244:16;32254:5;32244:9;:16::i;:::-;32236:5;:24;32228:71;;;;-1:-1:-1;;;32228:71:0;;9213:2:1;32228:71:0;;;9195:21:1;9252:2;9232:18;;;9225:30;9291:34;9271:18;;;9264:62;-1:-1:-1;;;9342:18:1;;;9335:32;9384:19;;32228:71:0;9011:398:1;32228:71:0;32306:22;32331:13;31545:12;;;31469:94;32331:13;32306:38;;32351:19;32381:25;32431:9;32426:350;32450:14;32446:1;:18;32426:350;;;32480:31;32514:14;;;:11;:14;;;;;;;;;32480:48;;;;;;;;;-1:-1:-1;;;;;32480:48:0;;;;;-1:-1:-1;;;32480:48:0;;;-1:-1:-1;;;;;32480:48:0;;;;;;;;32541:28;32537:89;;32602:14;;;-1:-1:-1;32537:89:0;32659:5;-1:-1:-1;;;;;32638:26:0;:17;-1:-1:-1;;;;;32638:26:0;;32634:135;;;32696:5;32681:11;:20;32677:59;;;-1:-1:-1;32723:1:0;-1:-1:-1;32716:8:0;;-1:-1:-1;;;32716:8:0;32677:59;32746:13;;;;:::i;:::-;;;;32634:135;-1:-1:-1;32466:3:0;;;;:::i;:::-;;;;32426:350;;;-1:-1:-1;32782:56:0;;-1:-1:-1;;;32782:56:0;;21328:2:1;32782:56:0;;;21310:21:1;21367:2;21347:18;;;21340:30;21406:34;21386:18;;;21379:62;-1:-1:-1;;;21457:18:1;;;21450:44;21511:19;;32782:56:0;21126:410:1;52223:142:0;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;52308:10:::1;:51:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;52308:51:0;;::::1;::::0;;;::::1;::::0;;52223:142::o;37472:157::-;37584:39;37601:4;37607:2;37611:7;37584:39;;;;;;;;;;;;:16;:39::i;31632:177::-;31699:7;31731:13;31545:12;;;31469:94;31731:13;31723:5;:21;31715:69;;;;-1:-1:-1;;;31715:69:0;;10922:2:1;31715:69:0;;;10904:21:1;10961:2;10941:18;;;10934:30;11000:34;10980:18;;;10973:62;-1:-1:-1;;;11051:18:1;;;11044:33;11094:19;;31715:69:0;10720:399:1;31715:69:0;-1:-1:-1;31798:5:0;31632:177::o;51742:100::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;51813:23:::1;:13;51829:7:::0;;51813:23:::1;:::i;49028:582::-:0;47675:9;47688:10;47675:23;47667:66;;;;-1:-1:-1;;;47667:66:0;;;;;;;:::i;:::-;49168:11:::1;;49181:19;;48243:84;48262:11;;48243:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;48297:28:0::1;::::0;-1:-1:-1;;48314:10:0::1;6775:2:1::0;6771:15;6767:53;48297:28:0::1;::::0;::::1;6755:66:1::0;48275:10:0;;-1:-1:-1;6837:12:1;;;-1:-1:-1;48297:28:0::1;;;;;;;;;;;;;48287:39;;;;;;48243:18;:84::i;:::-;48227:158;;;;-1:-1:-1::0;;;48227:158:0::1;;;;;;;:::i;:::-;49218:10:::2;:23:::0;-1:-1:-1;;;49218:23:0;::::2;-1:-1:-1::0;;;;;49218:23:0::2;49243:8:::0;47841:16:::2;;::::0;::::2;49218:23:::0;47841:16:::2;:::i;:::-;-1:-1:-1::0;;;;;47828:29:0::2;:9;:29;;47810:111;;;;-1:-1:-1::0;;;47810:111:0::2;;;;;;;:::i;:::-;49277:10:::3;:29:::0;::::3;;::::0;;::::3;::::0;::::3;::::0;49308:8;;49277:29;;48021:35;::::3;:24;48034:10;48021:12;:24::i;:::-;:35;;;;:::i;:::-;:44;;48005:119;;;;-1:-1:-1::0;;;48005:119:0::3;;;;;;;:::i;:::-;49363:10:::4;:33:::0;-1:-1:-1;;;49363:33:0;::::4;;;49344:15;:52;::::0;::::4;::::0;:105:::4;;-1:-1:-1::0;49419:10:0::4;:30:::0;-1:-1:-1;;;49419:30:0;::::4;;;49400:15;:49;;49344:105;49328:194;;;::::0;-1:-1:-1;;;49328:194:0;;22519:2:1;49328:194:0::4;::::0;::::4;22501:21:1::0;22558:2;22538:18;;;22531:30;22597:34;22577:18;;;22570:62;22668:25;22648:18;;;22641:53;22711:19;;49328:194:0::4;22317:419:1::0;49328:194:0::4;49529:31;49539:10;49551:8;49529:31;;:9;:31::i;:::-;49580:10;:23:::0;49567:37:::4;::::0;-1:-1:-1;;;49580:23:0;::::4;-1:-1:-1::0;;;;;49580:23:0::4;49567:12;:37::i;:::-;47928:1:::3;;48392::::2;;47740::::1;;;49028:582:::0;;;:::o;34457:118::-;34521:7;34544:20;34556:7;34544:11;:20::i;:::-;:25;;34457:118;-1:-1:-1;;34457:118:0:o;33334:211::-;33398:7;-1:-1:-1;;;;;33422:19:0;;33414:75;;;;-1:-1:-1;;;33414:75:0;;15795:2:1;33414:75:0;;;15777:21:1;15834:2;15814:18;;;15807:30;15873:34;15853:18;;;15846:62;-1:-1:-1;;;15924:18:1;;;15917:41;15975:19;;33414:75:0;15593:407:1;33414:75:0;-1:-1:-1;;;;;;33511:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33511:27:0;;33334:211::o;28148:103::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;28213:30:::1;28240:1;28213:18;:30::i;:::-;28148:103::o:0;48464:558::-;47675:9;47688:10;47675:23;47667:66;;;;-1:-1:-1;;;47667:66:0;;;;;;;:::i;:::-;48597:11:::1;;48610:12;;48243:84;48262:11;;48243:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;48297:28:0::1;::::0;-1:-1:-1;;48314:10:0::1;6775:2:1::0;6771:15;6767:53;48297:28:0::1;::::0;::::1;6755:66:1::0;48275:10:0;;-1:-1:-1;6837:12:1;;;-1:-1:-1;48297:28:0::1;6626:229:1::0;48243:84:0::1;48227:158;;;;-1:-1:-1::0;;;48227:158:0::1;;;;;;;:::i;:::-;48640:10:::2;:23:::0;-1:-1:-1;;;48640:23:0;::::2;-1:-1:-1::0;;;;;48640:23:0::2;48665:8:::0;47841:16:::2;;::::0;::::2;48640:23:::0;47841:16:::2;:::i;:::-;-1:-1:-1::0;;;;;47828:29:0::2;:9;:29;;47810:111;;;;-1:-1:-1::0;;;47810:111:0::2;;;;;;;:::i;:::-;48699:10:::3;:22:::0;::::3;::::0;;::::3;::::0;48723:8;;48699:22;;48021:35;::::3;:24;48034:10;48021:12;:24::i;:::-;:35;;;;:::i;:::-;:44;;48005:119;;;;-1:-1:-1::0;;;48005:119:0::3;;;;;;;:::i;:::-;48778:10:::4;:26:::0;;;::::4;;;48759:15;:45;::::0;::::4;::::0;:98:::4;;-1:-1:-1::0;48827:10:0::4;:30:::0;-1:-1:-1;;;48827:30:0;::::4;;;48808:15;:49;;48759:98;48743:180;;;::::0;-1:-1:-1;;;48743:180:0;;13339:2:1;48743:180:0::4;::::0;::::4;13321:21:1::0;13378:2;13358:18;;;13351:30;13417:34;13397:18;;;13390:62;-1:-1:-1;;;13468:18:1;;;13461:46;13524:19;;48743:180:0::4;13137:412:1::0;48743:180:0::4;48930:31;48940:10;48952:8;48930:31;;:9;:31::i;:::-;48981:10;:23:::0;48968:48:::4;::::0;48981:34:::4;::::0;::::4;::::0;::::4;::::0;-1:-1:-1;;;48981:23:0;::::4;-1:-1:-1::0;;;;;48981:23:0::4;:34;:::i;:::-;-1:-1:-1::0;;;;;48968:48:0::4;:12;:48::i;49616:651::-:0;47675:9;47688:10;47675:23;47667:66;;;;-1:-1:-1;;;47667:66:0;;;;;;;:::i;:::-;49717:10:::1;:22:::0;-1:-1:-1;;;49717:22:0;::::1;-1:-1:-1::0;;;;;49717:22:0::1;49741:8:::0;47841:16:::1;;::::0;::::1;49717:22:::0;47841:16:::1;:::i;:::-;-1:-1:-1::0;;;;;47828:29:0::1;:9;:29;;47810:111;;;;-1:-1:-1::0;;;47810:111:0::1;;;;;;;:::i;:::-;49779:10:::2;:30:::0;-1:-1:-1;;;49779:30:0;::::2;;;:35:::0;;::::2;::::0;:88:::2;;-1:-1:-1::0;49837:10:0::2;:30:::0;-1:-1:-1;;;49837:30:0;::::2;;;49818:15;:49;;49779:88;49761:167;;;::::0;-1:-1:-1;;;49761:167:0;;16975:2:1;49761:167:0::2;::::0;::::2;16957:21:1::0;17014:2;16994:18;;;16987:30;17053:34;17033:18;;;17026:62;-1:-1:-1;;;17104:18:1;;;17097:39;17153:19;;49761:167:0::2;16773:405:1::0;49761:167:0::2;49965:13;49953:8;:25;;;;49935:116;;;::::0;-1:-1:-1;;;49935:116:0;;12917:2:1;49935:116:0::2;::::0;::::2;12899:21:1::0;12956:2;12936:18;;;12929:30;12995:34;12975:18;;;12968:62;-1:-1:-1;;;13046:18:1;;;13039:51;13107:19;;49935:116:0::2;12715:417:1::0;49935:116:0::2;50104:14;50092:8;50076:24;;:13;31545:12:::0;;;31469:94;50076:13:::2;:24;;;;:::i;:::-;:42;;50058:111;;;::::0;-1:-1:-1;;;50058:111:0;;11732:2:1;50058:111:0::2;::::0;::::2;11714:21:1::0;11771:2;11751:18;;;11744:30;11810:32;11790:18;;;11783:60;11860:18;;50058:111:0::2;11530:354:1::0;50058:111:0::2;50176:31;50186:10;50198:8;50176:31;;:9;:31::i;:::-;50227:10;:22:::0;50214:47:::2;::::0;50227:33:::2;::::0;::::2;::::0;::::2;::::0;-1:-1:-1;;;50227:22:0;::::2;-1:-1:-1::0;;;;;50227:22:0::2;:33;:::i;50273:506::-:0;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;50383:14:::1;50371:8;50355:13;31545:12:::0;;;31469:94;50355:13:::1;:24;;;;:::i;:::-;:42;;:88;;;;;50429:14;50417:8;50401:13;;:24;;;;:::i;:::-;:42;;50355:88;50339:159;;;::::0;-1:-1:-1;;;50339:159:0;;20922:2:1;50339:159:0::1;::::0;::::1;20904:21:1::0;20961:2;20941:18;;;20934:30;21000:34;20980:18;;;20973:62;-1:-1:-1;;;21051:18:1;;;21044:35;21096:19;;50339:159:0::1;20720:401:1::0;50339:159:0::1;50507:17;50527:23;50538:12;50527:8:::0;:23:::1;:::i;:::-;50507:43;;50562:9;50557:92;50581:9;50577:1;:13;50557:92;;;50606:35;50616:10;50628:12;50606:9;:35::i;:::-;50592:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50557:92;;;-1:-1:-1::0;50657:17:0::1;50677:23;50688:12;50677:8:::0;:23:::1;:::i;:::-;50657:43;;50707:32;50717:10;50729:9;50707;:32::i;:::-;50765:8;50748:13;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;50273:506:0:o;51363:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;51484:20:0;51496:7;51484:11;:20::i;34789:98::-;34845:13;34874:7;34867:14;;;;;:::i;36685:274::-;-1:-1:-1;;;;;36776:24:0;;26301:10;36776:24;;36768:63;;;;-1:-1:-1;;;36768:63:0;;17801:2:1;36768:63:0;;;17783:21:1;17840:2;17820:18;;;17813:30;17879:28;17859:18;;;17852:56;17925:18;;36768:63:0;17599:350:1;36768:63:0;26301:10;36840:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36840:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36840:53:0;;;;;;;;;;36905:48;;8553:41:1;;;36840:42:0;;26301:10;36905:48;;8526:18:1;36905:48:0;;;;;;;36685:274;;:::o;35411:63::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;35453:8:::1;:15:::0;;-1:-1:-1;;35453:15:0::1;35464:4;35453:15;::::0;;35411:63::o;51048:196::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;24595:1:::1;25193:7;;:19;;25185:63;;;::::0;-1:-1:-1;;;25185:63:0;;21743:2:1;25185:63:0::1;::::0;::::1;21725:21:1::0;21782:2;21762:18;;;21755:30;21821:33;21801:18;;;21794:61;21872:18;;25185:63:0::1;21541:355:1::0;25185:63:0::1;24595:1;25326:7;:18:::0;51131:49:::2;::::0;51113:12:::2;::::0;51131:10:::2;::::0;51154:21:::2;::::0;51113:12;51131:49;51113:12;51131:49;51154:21;51131:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51112:68;;;51195:7;51187:51;;;::::0;-1:-1:-1;;;51187:51:0;;15435:2:1;51187:51:0::2;::::0;::::2;15417:21:1::0;15474:2;15454:18;;;15447:30;15513:33;15493:18;;;15486:61;15564:18;;51187:51:0::2;15233:355:1::0;51187:51:0::2;-1:-1:-1::0;24551:1:0::1;25505:7;:22:::0;51048:196::o;37692:311::-;37829:28;37839:4;37845:2;37849:7;37829:9;:28::i;:::-;37880:48;37903:4;37909:2;37913:7;37922:5;37880:22;:48::i;:::-;37864:133;;;;-1:-1:-1;;;37864:133:0;;;;;;;:::i;:::-;37692:311;;;;:::o;51962:136::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;52050:19:::1;:42:::0;51962:136::o;34950:455::-;35048:13;35089:16;35097:7;38329:12;;-1:-1:-1;38319:22:0;38242:105;35089:16;35073:97;;;;-1:-1:-1;;;35073:97:0;;17385:2:1;35073:97:0;;;17367:21:1;17424:2;17404:18;;;17397:30;17463:34;17443:18;;;17436:62;-1:-1:-1;;;17514:18:1;;;17507:45;17569:19;;35073:97:0;17183:411:1;35073:97:0;35182:8;;;;35179:43;;35208:14;35201:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34950:455;;;:::o;35179:43::-;35231:21;35255:10;:8;:10::i;:::-;35231:34;;35310:1;35292:7;35286:21;:25;:113;;;;;;;;;;;;;;;;;35347:7;35356:18;:7;:16;:18::i;:::-;35330:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35286:113;35272:127;34950:455;-1:-1:-1;;;34950:455:0:o;51848:108::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;51922:12:::1;:28:::0;51848:108::o;51250:107::-;51308:7;51331:20;51345:5;51331:13;:20::i;52104:113::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;52174:10:::1;:37:::0;;-1:-1:-1;;52174:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52104:113::o;35480:120::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;35562:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;35480:120:::0;:::o;28406:201::-;27543:7;27570:6;-1:-1:-1;;;;;27570:6:0;26301:10;27717:23;27709:68;;;;-1:-1:-1;;;27709:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28495:22:0;::::1;28487:73;;;::::0;-1:-1:-1;;;28487:73:0;;9616:2:1;28487:73:0::1;::::0;::::1;9598:21:1::0;9655:2;9635:18;;;9628:30;9694:34;9674:18;;;9667:62;-1:-1:-1;;;9745:18:1;;;9738:36;9791:19;;28487:73:0::1;9414:402:1::0;28487:73:0::1;28571:28;28590:8;28571:18;:28::i;:::-;28406:201:::0;:::o;41929:172::-;42026:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42026:29:0;-1:-1:-1;;;;;42026:29:0;;;;;;;;;42067:28;;42026:24;;42067:28;;;;;;;41929:172;;;:::o;40294:1529::-;40391:35;40429:20;40441:7;40429:11;:20::i;:::-;40500:18;;40391:58;;-1:-1:-1;40458:22:0;;-1:-1:-1;;;;;40484:34:0;26301:10;-1:-1:-1;;;;;40484:34:0;;:81;;;-1:-1:-1;26301:10:0;40529:20;40541:7;40529:11;:20::i;:::-;-1:-1:-1;;;;;40529:36:0;;40484:81;:142;;;-1:-1:-1;40593:18:0;;40576:50;;26301:10;37022:186;:::i;40576:50::-;40458:169;;40652:17;40636:101;;;;-1:-1:-1;;;40636:101:0;;18156:2:1;40636:101:0;;;18138:21:1;18195:2;18175:18;;;18168:30;18234:34;18214:18;;;18207:62;-1:-1:-1;;;18285:18:1;;;18278:48;18343:19;;40636:101:0;17954:414:1;40636:101:0;40784:4;-1:-1:-1;;;;;40762:26:0;:13;:18;;;-1:-1:-1;;;;;40762:26:0;;40746:98;;;;-1:-1:-1;;;40746:98:0;;16207:2:1;40746:98:0;;;16189:21:1;16246:2;16226:18;;;16219:30;16285:34;16265:18;;;16258:62;-1:-1:-1;;;16336:18:1;;;16329:36;16382:19;;40746:98:0;16005:402:1;40746:98:0;-1:-1:-1;;;;;40859:16:0;;40851:66;;;;-1:-1:-1;;;40851:66:0;;11326:2:1;40851:66:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:34;11384:18;;;11377:62;-1:-1:-1;;;11455:18:1;;;11448:35;11500:19;;40851:66:0;11124:401:1;40851:66:0;41026:49;41043:1;41047:7;41056:13;:18;;;41026:8;:49::i;:::-;-1:-1:-1;;;;;41084:18:0;;;;;;:12;:18;;;;;:31;;41114:1;;41084:18;:31;;41114:1;;-1:-1:-1;;;;;41084:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;41084:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41122:16:0;;-1:-1:-1;41122:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;41122:16:0;;:29;;-1:-1:-1;;41122:29:0;;:::i;:::-;;;-1:-1:-1;;;;;41122:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41181:43:0;;;;;;;;-1:-1:-1;;;;;41181:43:0;;;;;-1:-1:-1;;;;;41207:15:0;41181:43;;;;;;;;;-1:-1:-1;41158:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;41158:66:0;-1:-1:-1;;;;;;41158:66:0;;;;;;;;;;;41474:11;41170:7;-1:-1:-1;41474:11:0;:::i;:::-;41537:1;41496:24;;;:11;:24;;;;;:29;41452:33;;-1:-1:-1;;;;;;41496:29:0;41492:236;;41554:20;41562:11;38329:12;;-1:-1:-1;38319:22:0;38242:105;41554:20;41550:171;;;41614:97;;;;;;;;41641:18;;-1:-1:-1;;;;;41614:97:0;;;;;;41672:28;;;;-1:-1:-1;;;;;41614:97:0;;;;;;;;;-1:-1:-1;41587:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41587:124:0;-1:-1:-1;;;;;;41587:124:0;;;;;;;;;;;;41550:171;41760:7;41756:2;-1:-1:-1;;;;;41741:27:0;41750:4;-1:-1:-1;;;;;41741:27:0;;;;;;;;;;;41775:42;40384:1439;;;40294:1529;;;:::o;19193:190::-;19318:4;19371;19342:25;19355:5;19362:4;19342:12;:25::i;:::-;:33;;19193:190;-1:-1:-1;;;;19193:190:0:o;38353:98::-;38418:27;38428:2;38432:8;38418:27;;;;;;;;;;;;:9;:27::i;50838:204::-;50911:5;50898:9;:18;;50890:53;;;;-1:-1:-1;;;50890:53:0;;19811:2:1;50890:53:0;;;19793:21:1;19850:2;19830:18;;;19823:30;-1:-1:-1;;;19869:18:1;;;19862:52;19931:18;;50890:53:0;19609:346:1;50890:53:0;50966:5;50954:9;:17;50950:87;;;50990:10;50982:47;51011:17;51023:5;51011:9;:17;:::i;:::-;50982:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33797:606;-1:-1:-1;;;;;;;;;;;;;;;;;33914:16:0;33922:7;38329:12;;-1:-1:-1;38319:22:0;38242:105;33914:16;33906:71;;;;-1:-1:-1;;;33906:71:0;;10023:2:1;33906:71:0;;;10005:21:1;10062:2;10042:18;;;10035:30;10101:34;10081:18;;;10074:62;-1:-1:-1;;;10152:18:1;;;10145:40;10202:19;;33906:71:0;9821:406:1;33906:71:0;33986:26;34034:12;34023:7;:23;34019:93;;34078:22;34088:12;34078:7;:22;:::i;:::-;:26;;34103:1;34078:26;:::i;:::-;34057:47;;34019:93;34140:7;34120:212;34157:18;34149:4;:26;34120:212;;34194:31;34228:17;;;:11;:17;;;;;;;;;34194:51;;;;;;;;;-1:-1:-1;;;;;34194:51:0;;;;;-1:-1:-1;;;34194:51:0;;;-1:-1:-1;;;;;34194:51:0;;;;;;;;34258:28;34254:71;;34306:9;33797:606;-1:-1:-1;;;;33797:606:0:o;34254:71::-;-1:-1:-1;34177:6:0;;;;:::i;:::-;;;;34120:212;;;-1:-1:-1;34340:57:0;;-1:-1:-1;;;34340:57:0;;22103:2:1;34340:57:0;;;22085:21:1;22142:2;22122:18;;;22115:30;22181:34;22161:18;;;22154:62;-1:-1:-1;;;22232:18:1;;;22225:45;22287:19;;34340:57:0;21901:411:1;28767:191:0;28841:16;28860:6;;-1:-1:-1;;;;;28877:17:0;;;-1:-1:-1;;;;;;28877:17:0;;;;;;28910:40;;28860:6;;;;;;;28910:40;;28841:16;28910:40;28830:128;28767:191;:::o;43644:690::-;43781:4;-1:-1:-1;;;;;43798:13:0;;1563:19;:23;43794:535;;43837:72;;-1:-1:-1;;;43837:72:0;;-1:-1:-1;;;;;43837:36:0;;;;;:72;;26301:10;;43888:4;;43894:7;;43903:5;;43837:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43837:72:0;;;;;;;;-1:-1:-1;;43837:72:0;;;;;;;;;;;;:::i;:::-;;;43824:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44068:13:0;;44064:215;;44101:61;;-1:-1:-1;;;44101:61:0;;;;;;;:::i;44064:215::-;44247:6;44241:13;44232:6;44228:2;44224:15;44217:38;43824:464;-1:-1:-1;;;;;;43959:55:0;-1:-1:-1;;;43959:55:0;;-1:-1:-1;43952:62:0;;43794:535;-1:-1:-1;44317:4:0;43794:535;43644:690;;;;;;:::o;51570:108::-;51630:13;51659;51652:20;;;;;:::i;21024:723::-;21080:13;21301:10;21297:53;;-1:-1:-1;;21328:10:0;;;;;;;;;;;;-1:-1:-1;;;21328:10:0;;;;;21024:723::o;21297:53::-;21375:5;21360:12;21416:78;21423:9;;21416:78;;21449:8;;;;:::i;:::-;;-1:-1:-1;21472:10:0;;-1:-1:-1;21480:2:0;21472:10;;:::i;:::-;;;21416:78;;;21504:19;21536:6;-1:-1:-1;;;;;21526:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21526:17:0;;21504:39;;21554:154;21561:10;;21554:154;;21588:11;21598:1;21588:11;;:::i;:::-;;-1:-1:-1;21657:10:0;21665:2;21657:5;:10;:::i;:::-;21644:24;;:2;:24;:::i;:::-;21631:39;;21614:6;21621;21614:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21614:56:0;;;;;;;;-1:-1:-1;21685:11:0;21694:2;21685:11;;:::i;:::-;;;21554:154;;33551:240;33612:7;-1:-1:-1;;;;;33644:19:0;;33628:102;;;;-1:-1:-1;;;33628:102:0;;12499:2:1;33628:102:0;;;12481:21:1;12538:2;12518:18;;;12511:30;12577:34;12557:18;;;12550:62;-1:-1:-1;;;12628:18:1;;;12621:47;12685:19;;33628:102:0;12297:413:1;33628:102:0;-1:-1:-1;;;;;;33752:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;33752:32:0;;-1:-1:-1;;;;;33752:32:0;;33551:240::o;19745:675::-;19828:7;19871:4;19828:7;19886:497;19910:5;:12;19906:1;:16;19886:497;;;19944:20;19967:5;19973:1;19967:8;;;;;;;;:::i;:::-;;;;;;;19944:31;;20010:12;19994;:28;19990:382;;20496:13;20546:15;;;20582:4;20575:15;;;20629:4;20613:21;;20122:57;;19990:382;;;20496:13;20546:15;;;20582:4;20575:15;;;20629:4;20613:21;;20299:57;;19990:382;-1:-1:-1;19924:3:0;;;;:::i;:::-;;;;19886:497;;;-1:-1:-1;20400:12:0;19745:675;-1:-1:-1;;;19745:675:0:o;38790:1272::-;38918:12;;-1:-1:-1;;;;;38945:16:0;;38937:62;;;;-1:-1:-1;;;38937:62:0;;20520:2:1;38937:62:0;;;20502:21:1;20559:2;20539:18;;;20532:30;20598:34;20578:18;;;20571:62;-1:-1:-1;;;20649:18:1;;;20642:31;20690:19;;38937:62:0;20318:397:1;38937:62:0;39136:21;39144:12;38329;;-1:-1:-1;38319:22:0;38242:105;39136:21;39135:22;39127:64;;;;-1:-1:-1;;;39127:64:0;;20162:2:1;39127:64:0;;;20144:21:1;20201:2;20181:18;;;20174:30;20240:31;20220:18;;;20213:59;20289:18;;39127:64:0;19960:353:1;39127:64:0;39218:12;39206:8;:24;;39198:71;;;;-1:-1:-1;;;39198:71:0;;23357:2:1;39198:71:0;;;23339:21:1;23396:2;23376:18;;;23369:30;23435:34;23415:18;;;23408:62;-1:-1:-1;;;23486:18:1;;;23479:32;23528:19;;39198:71:0;23155:398:1;39198:71:0;-1:-1:-1;;;;;39381:16:0;;39348:30;39381:16;;;:12;:16;;;;;;;;;39348:49;;;;;;;;;-1:-1:-1;;;;;39348:49:0;;;;;-1:-1:-1;;;39348:49:0;;;;;;;;;;;39423:119;;;;;;;;39443:19;;39348:49;;39423:119;;;39443:39;;39473:8;;39443:39;:::i;:::-;-1:-1:-1;;;;;39423:119:0;;;;;39526:8;39491:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;39423:119:0;;;;;;-1:-1:-1;;;;;39404:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;39404:138:0;;;;;;;;;;;;39577:43;;;;;;;;;;-1:-1:-1;;;;;39603:15:0;39577:43;;;;;;;;39549:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39549:71:0;-1:-1:-1;;;;;;39549:71:0;;;;;;;;;;;;;;;;;;39561:12;;39673:281;39697:8;39693:1;:12;39673:281;;;39726:38;;39751:12;;-1:-1:-1;;;;;39726:38:0;;;39743:1;;39726:38;;39743:1;;39726:38;39791:59;39822:1;39826:2;39830:12;39844:5;39791:22;:59::i;:::-;39773:150;;;;-1:-1:-1;;;39773:150:0;;;;;;;:::i;:::-;39932:14;;;;:::i;:::-;;;;39707:3;;;;;:::i;:::-;;;;39673:281;;;-1:-1:-1;39962:12:0;:27;;;39996:60;37692:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:163::-;895:20;;955:10;944:22;;934:33;;924:61;;981:1;978;971:12;996:156;1062:20;;1122:4;1111:16;;1101:27;;1091:55;;1142:1;1139;1132:12;1157:186;1216:6;1269:2;1257:9;1248:7;1244:23;1240:32;1237:52;;;1285:1;1282;1275:12;1237:52;1308:29;1327:9;1308:29;:::i;1348:260::-;1416:6;1424;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;:::-;1506:39;;1564:38;1598:2;1587:9;1583:18;1564:38;:::i;:::-;1554:48;;1348:260;;;;;:::o;1613:328::-;1690:6;1698;1706;1759:2;1747:9;1738:7;1734:23;1730:32;1727:52;;;1775:1;1772;1765:12;1727:52;1798:29;1817:9;1798:29;:::i;:::-;1788:39;;1846:38;1880:2;1869:9;1865:18;1846:38;:::i;:::-;1836:48;;1931:2;1920:9;1916:18;1903:32;1893:42;;1613:328;;;;;:::o;1946:666::-;2041:6;2049;2057;2065;2118:3;2106:9;2097:7;2093:23;2089:33;2086:53;;;2135:1;2132;2125:12;2086:53;2158:29;2177:9;2158:29;:::i;:::-;2148:39;;2206:38;2240:2;2229:9;2225:18;2206:38;:::i;:::-;2196:48;;2291:2;2280:9;2276:18;2263:32;2253:42;;2346:2;2335:9;2331:18;2318:32;-1:-1:-1;;;;;2365:6:1;2362:30;2359:50;;;2405:1;2402;2395:12;2359:50;2428:22;;2481:4;2473:13;;2469:27;-1:-1:-1;2459:55:1;;2510:1;2507;2500:12;2459:55;2533:73;2598:7;2593:2;2580:16;2575:2;2571;2567:11;2533:73;:::i;:::-;2523:83;;;1946:666;;;;;;;:::o;2617:347::-;2682:6;2690;2743:2;2731:9;2722:7;2718:23;2714:32;2711:52;;;2759:1;2756;2749:12;2711:52;2782:29;2801:9;2782:29;:::i;:::-;2772:39;;2861:2;2850:9;2846:18;2833:32;2908:5;2901:13;2894:21;2887:5;2884:32;2874:60;;2930:1;2927;2920:12;2874:60;2953:5;2943:15;;;2617:347;;;;;:::o;2969:254::-;3037:6;3045;3098:2;3086:9;3077:7;3073:23;3069:32;3066:52;;;3114:1;3111;3104:12;3066:52;3137:29;3156:9;3137:29;:::i;:::-;3127:39;3213:2;3198:18;;;;3185:32;;-1:-1:-1;;;2969:254:1:o;3228:180::-;3287:6;3340:2;3328:9;3319:7;3315:23;3311:32;3308:52;;;3356:1;3353;3346:12;3308:52;-1:-1:-1;3379:23:1;;3228:180;-1:-1:-1;3228:180:1:o;3413:245::-;3471:6;3524:2;3512:9;3503:7;3499:23;3495:32;3492:52;;;3540:1;3537;3530:12;3492:52;3579:9;3566:23;3598:30;3622:5;3598:30;:::i;3663:249::-;3732:6;3785:2;3773:9;3764:7;3760:23;3756:32;3753:52;;;3801:1;3798;3791:12;3753:52;3833:9;3827:16;3852:30;3876:5;3852:30;:::i;3917:592::-;3988:6;3996;4049:2;4037:9;4028:7;4024:23;4020:32;4017:52;;;4065:1;4062;4055:12;4017:52;4105:9;4092:23;-1:-1:-1;;;;;4175:2:1;4167:6;4164:14;4161:34;;;4191:1;4188;4181:12;4161:34;4229:6;4218:9;4214:22;4204:32;;4274:7;4267:4;4263:2;4259:13;4255:27;4245:55;;4296:1;4293;4286:12;4245:55;4336:2;4323:16;4362:2;4354:6;4351:14;4348:34;;;4378:1;4375;4368:12;4348:34;4423:7;4418:2;4409:6;4405:2;4401:15;4397:24;4394:37;4391:57;;;4444:1;4441;4434:12;4391:57;4475:2;4467:11;;;;;4497:6;;-1:-1:-1;3917:592:1;;-1:-1:-1;;;;3917:592:1:o;4514:450::-;4583:6;4636:2;4624:9;4615:7;4611:23;4607:32;4604:52;;;4652:1;4649;4642:12;4604:52;4692:9;4679:23;-1:-1:-1;;;;;4717:6:1;4714:30;4711:50;;;4757:1;4754;4747:12;4711:50;4780:22;;4833:4;4825:13;;4821:27;-1:-1:-1;4811:55:1;;4862:1;4859;4852:12;4811:55;4885:73;4950:7;4945:2;4932:16;4927:2;4923;4919:11;4885:73;:::i;5154:328::-;5228:6;5236;5244;5297:2;5285:9;5276:7;5272:23;5268:32;5265:52;;;5313:1;5310;5303:12;5265:52;5336:28;5354:9;5336:28;:::i;:::-;5326:38;;5383:37;5416:2;5405:9;5401:18;5383:37;:::i;:::-;5373:47;;5439:37;5472:2;5461:9;5457:18;5439:37;:::i;:::-;5429:47;;5154:328;;;;;:::o;5487:182::-;5544:6;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5636:27;5653:9;5636:27;:::i;5674:685::-;5767:6;5775;5783;5836:2;5824:9;5815:7;5811:23;5807:32;5804:52;;;5852:1;5849;5842:12;5804:52;5875:27;5892:9;5875:27;:::i;:::-;5865:37;;5953:2;5942:9;5938:18;5925:32;-1:-1:-1;;;;;6017:2:1;6009:6;6006:14;6003:34;;;6033:1;6030;6023:12;6003:34;6071:6;6060:9;6056:22;6046:32;;6116:7;6109:4;6105:2;6101:13;6097:27;6087:55;;6138:1;6135;6128:12;6087:55;6178:2;6165:16;6204:2;6196:6;6193:14;6190:34;;;6220:1;6217;6210:12;6190:34;6273:7;6268:2;6258:6;6255:1;6251:14;6247:2;6243:23;6239:32;6236:45;6233:65;;;6294:1;6291;6284:12;6233:65;6325:2;6321;6317:11;6307:21;;6347:6;6337:16;;;;;5674:685;;;;;:::o;6364:257::-;6405:3;6443:5;6437:12;6470:6;6465:3;6458:19;6486:63;6542:6;6535:4;6530:3;6526:14;6519:4;6512:5;6508:16;6486:63;:::i;:::-;6603:2;6582:15;-1:-1:-1;;6578:29:1;6569:39;;;;6610:4;6565:50;;6364:257;-1:-1:-1;;6364:257:1:o;6860:637::-;7140:3;7178:6;7172:13;7194:53;7240:6;7235:3;7228:4;7220:6;7216:17;7194:53;:::i;:::-;7310:13;;7269:16;;;;7332:57;7310:13;7269:16;7366:4;7354:17;;7332:57;:::i;:::-;-1:-1:-1;;;7411:20:1;;7440:22;;;7489:1;7478:13;;6860:637;-1:-1:-1;;;;6860:637:1:o;7920:488::-;-1:-1:-1;;;;;8189:15:1;;;8171:34;;8241:15;;8236:2;8221:18;;8214:43;8288:2;8273:18;;8266:34;;;8336:3;8331:2;8316:18;;8309:31;;;8114:4;;8357:45;;8382:19;;8374:6;8357:45;:::i;:::-;8349:53;7920:488;-1:-1:-1;;;;;;7920:488:1:o;8787:219::-;8936:2;8925:9;8918:21;8899:4;8956:44;8996:2;8985:9;8981:18;8973:6;8956:44;:::i;11889:403::-;12091:2;12073:21;;;12130:2;12110:18;;;12103:30;12169:34;12164:2;12149:18;;12142:62;-1:-1:-1;;;12235:2:1;12220:18;;12213:37;12282:3;12267:19;;11889:403::o;13554:354::-;13756:2;13738:21;;;13795:2;13775:18;;;13768:30;13834:32;13829:2;13814:18;;13807:60;13899:2;13884:18;;13554:354::o;13913:405::-;14115:2;14097:21;;;14154:2;14134:18;;;14127:30;14193:34;14188:2;14173:18;;14166:62;-1:-1:-1;;;14259:2:1;14244:18;;14237:39;14308:3;14293:19;;13913:405::o;16412:356::-;16614:2;16596:21;;;16633:18;;;16626:30;16692:34;16687:2;16672:18;;16665:62;16759:2;16744:18;;16412:356::o;18373:408::-;18575:2;18557:21;;;18614:2;18594:18;;;18587:30;18653:34;18648:2;18633:18;;18626:62;-1:-1:-1;;;18719:2:1;18704:18;;18697:42;18771:3;18756:19;;18373:408::o;19189:415::-;19391:2;19373:21;;;19430:2;19410:18;;;19403:30;19469:34;19464:2;19449:18;;19442:62;-1:-1:-1;;;19535:2:1;19520:18;;19513:49;19594:3;19579:19;;19189:415::o;24832:253::-;24872:3;-1:-1:-1;;;;;24961:2:1;24958:1;24954:10;24991:2;24988:1;24984:10;25022:3;25018:2;25014:12;25009:3;25006:21;25003:47;;;25030:18;;:::i;:::-;25066:13;;24832:253;-1:-1:-1;;;;24832:253:1:o;25090:128::-;25130:3;25161:1;25157:6;25154:1;25151:13;25148:39;;;25167:18;;:::i;:::-;-1:-1:-1;25203:9:1;;25090:128::o;25223:120::-;25263:1;25289;25279:35;;25294:18;;:::i;:::-;-1:-1:-1;25328:9:1;;25223:120::o;25348:270::-;25387:7;-1:-1:-1;;;;;25464:2:1;25461:1;25457:10;25494:2;25491:1;25487:10;25550:3;25546:2;25542:12;25537:3;25534:21;25527:3;25520:11;25513:19;25509:47;25506:73;;;25559:18;;:::i;:::-;25599:13;;25348:270;-1:-1:-1;;;;25348:270:1:o;25623:246::-;25663:4;-1:-1:-1;;;;;25776:10:1;;;;25746;;25798:12;;;25795:38;;;25813:18;;:::i;:::-;25850:13;;25623:246;-1:-1:-1;;;25623:246:1:o;25874:125::-;25914:4;25942:1;25939;25936:8;25933:34;;;25947:18;;:::i;:::-;-1:-1:-1;25984:9:1;;25874:125::o;26004:258::-;26076:1;26086:113;26100:6;26097:1;26094:13;26086:113;;;26176:11;;;26170:18;26157:11;;;26150:39;26122:2;26115:10;26086:113;;;26217:6;26214:1;26211:13;26208:48;;;-1:-1:-1;;26252:1:1;26234:16;;26227:27;26004:258::o;26267:136::-;26306:3;26334:5;26324:39;;26343:18;;:::i;:::-;-1:-1:-1;;;26379:18:1;;26267:136::o;26408:380::-;26487:1;26483:12;;;;26530;;;26551:61;;26605:4;26597:6;26593:17;26583:27;;26551:61;26658:2;26650:6;26647:14;26627:18;26624:38;26621:161;;;26704:10;26699:3;26695:20;26692:1;26685:31;26739:4;26736:1;26729:15;26767:4;26764:1;26757:15;26621:161;;26408:380;;;:::o;26793:135::-;26832:3;-1:-1:-1;;26853:17:1;;26850:43;;;26873:18;;:::i;:::-;-1:-1:-1;26920:1:1;26909:13;;26793:135::o;26933:112::-;26965:1;26991;26981:35;;26996:18;;:::i;:::-;-1:-1:-1;27030:9:1;;26933:112::o;27050:127::-;27111:10;27106:3;27102:20;27099:1;27092:31;27142:4;27139:1;27132:15;27166:4;27163:1;27156:15;27182:127;27243:10;27238:3;27234:20;27231:1;27224:31;27274:4;27271:1;27264:15;27298:4;27295:1;27288:15;27314:127;27375:10;27370:3;27366:20;27363:1;27356:31;27406:4;27403:1;27396:15;27430:4;27427:1;27420:15;27446:127;27507:10;27502:3;27498:20;27495:1;27488:31;27538:4;27535:1;27528:15;27562:4;27559:1;27552:15;27578:131;-1:-1:-1;;;;;;27652:32:1;;27642:43;;27632:71;;27699:1;27696;27689:12

Swarm Source

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