ETH Price: $2,401.08 (-0.87%)

Token

AzureDragon (AD)
 

Overview

Max Total Supply

3 AD

Holders

3

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ak168.eth
Balance
1 AD
0x1a5ea1a522eea066942644f7626de62265f32c99
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:
AzureDragon

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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 v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}
// 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: tests/ERC721A.sol



pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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



pragma solidity ^0.8.0;




contract AzureDragon is ERC721A, Ownable {
    enum Status {
        Pending,
        PreSale,
        PublicSale,
        Finished
    }

    Status public status;
    string public baseURI;
    bytes32 public root;
    uint256 public tokensReserved;
    uint256 public immutable maxPresaleMint;
    uint256 public immutable maxPublicMint;
    uint256 public immutable maxSupply;
    uint256 public immutable reserveAmount;
    uint256 public constant PresalePRICE = 0.065 ether;
    uint256 public constant PublicPRICE = 0.08 ether;

    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event RootChanged(bytes32 root);
    event ReservedToken(address minter, address recipient, uint256 amount);
    event BaseURIChanged(string newBaseURI);

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Contract is not allowed to mint.");
        _;
    }

    constructor(
        string memory initBaseURI,
        uint256 _maxPresaleMint,
        uint256 _maxPublicMint,
        uint256 _maxSupply,
        uint256 _reserveAmount
    )
        ERC721A(
            "AzureDragon",
            "AD",
            _maxPresaleMint > _maxPublicMint ? _maxPresaleMint : _maxPublicMint,
            _maxSupply
        )
    {
        baseURI = initBaseURI;
        maxPresaleMint = _maxPresaleMint;
        maxPublicMint = _maxPublicMint;
        maxSupply = _maxSupply;
        reserveAmount = _reserveAmount;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        string memory uri = super.tokenURI(tokenId);
        return
            bytes(uri).length > 0 ? string(abi.encodePacked(uri, ".json")) : "";
    }

    function reserve(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Zero address");
        require(amount > 0, "Invalid amount");
        require(
            totalSupply() + amount <= collectionSize,
            "Max supply exceeded"
        );
        require(
            tokensReserved + amount <= reserveAmount,
            "Max reserve amount exceeded"
        );

        uint256 multiple = amount / maxBatchSize;
        for (uint256 i = 0; i < multiple; i++) {
            _safeMint(recipient, maxBatchSize);
        }
        uint256 remainder = amount % maxBatchSize;
        if (remainder != 0) {
            _safeMint(recipient, remainder);
        }
        tokensReserved += amount;
        emit ReservedToken(msg.sender, recipient, amount);
    }

    function presaleMint(uint256 amount, bytes32[] calldata proof)
        external
        payable
        callerIsUser
    {
        require(status == Status.PreSale, "Presale is not active.");
        require(
            MerkleProof.verify(proof,root, keccak256(abi.encodePacked(msg.sender))),
            "Invalid proof."
        );
        require(
            numberMinted(msg.sender) + amount <= maxPresaleMint,
            "Max mint amount per wallet exceeded."
        );
        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=collectionSize,
            "Max supply exceeded."
        );

        _safeMint(msg.sender, amount);
        refundIfOver(PresalePRICE * amount);

        emit Minted(msg.sender, amount);
    }

    function mint(uint256 amount) external payable callerIsUser {
        require(status == Status.PublicSale, "Public sale is not active.");
        require(amount <= maxPublicMint, "Max mint amount per tx exceeded.");
        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=collectionSize,
            "Max supply exceeded."
        );

        _safeMint(msg.sender, amount);
        refundIfOver(PublicPRICE * amount);

        emit Minted(msg.sender, amount);
    }

    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 withdraw() external onlyOwner {
        require(status == Status.Finished, "Invalid status for withdrawn.");

        payable(owner()).transfer(address(this).balance);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(_status);
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
        emit RootChanged(_root);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"uint256","name":"_maxPresaleMint","type":"uint256"},{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"RootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum AzureDragon.Status","name":"status","type":"uint8"}],"name":"StatusChanged","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":"PresalePRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum AzureDragon.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum AzureDragon.Status","name":"","type":"uint8"}],"stateMutability":"view","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":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040526000805560006007553480156200001b57600080fd5b506040516200361d3803806200361d8339810160408190526200003e91620002e0565b6040518060400160405280600b81526020016a20bd3ab932a23930b3b7b760a91b81525060405180604001604052806002815260200161105160f21b8152508486116200008c57846200008e565b855b8460008111620000fc5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200015e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000f3565b83516200017390600190602087019062000224565b5082516200018990600290602086019062000224565b5060a09190915260805250620001a1905033620001d2565b8451620001b690600990602088019062000224565b5060c09390935260e0919091526101005261012052506200041e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023290620003e2565b90600052602060002090601f016020900481019282620002565760008555620002a1565b82601f106200027157805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a157825182559160200191906001019062000284565b50620002af929150620002b3565b5090565b5b80821115620002af5760008155600101620002b4565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a08688031215620002f957600080fd5b85516001600160401b03808211156200031157600080fd5b818801915088601f8301126200032657600080fd5b8151818111156200033b576200033b620002ca565b604051601f8201601f19908116603f01168101908382118183101715620003665762000366620002ca565b81604052828152602093508b848487010111156200038357600080fd5b600091505b82821015620003a7578482018401518183018501529083019062000388565b82821115620003b95760008484830101525b928a015160408b015160608c01516080909c0151949d919c509a99509297509195505050505050565b600181811c90821680620003f757607f821691505b6020821081036200041857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051610100516101205161314d620004d06000396000818161041b0152818161113d015281816114a001526118bb015260006106ac01526000818161065801526110a90152600081816105c901526118080152600081816115220152818161155a015281816115980152818161208b015281816120b501526125d3015260008181611119015281816114270152818161189701528181611e900152611ec2015261314d6000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063cabadaa0116100ab578063dc33e6811161006f578063dc33e68114610704578063e3e1e8ef14610724578063e985e9c514610737578063ebf0c71714610780578063f2fde38b1461079657600080fd5b8063cabadaa014610646578063cc47a40b1461067a578063d5abeb011461069a578063d7224ba0146106ce578063dab5f340146106e457600080fd5b8063a22cb465116100f2578063a22cb46514610597578063b4576278146105b7578063b69ab6b3146105eb578063b88d4fde14610606578063c87b56dd1461062657600080fd5b8063715018a6146104ee5780638da5cb5b146105035780639231ab2a1461052157806395d89b411461056f578063a0712d681461058457600080fd5b80633ccfd60b116101bc57806355bf2c121161018057806355bf2c121461045d57806355f804b3146104795780636352211e146104995780636c0360eb146104b957806370a08231146104ce57600080fd5b80633ccfd60b146103be57806342842e0e146103d3578063433adb05146103f35780634b09b72a146104095780634f6ccce71461043d57600080fd5b8063200d2ed211610203578063200d2ed21461031057806323b872dd1461033e5780632d20fb601461035e5780632e49d78b1461037e5780632f745c591461039e57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612a53565b6107b6565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610823565b60405161026c9190612ac8565b3480156102a357600080fd5b506102b76102b2366004612adb565b6108b5565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612b10565b610945565b005b3480156102fd57600080fd5b506000545b60405190815260200161026c565b34801561031c57600080fd5b5060085461033190600160a01b900460ff1681565b60405161026c9190612b50565b34801561034a57600080fd5b506102ef610359366004612b78565b610a5c565b34801561036a57600080fd5b506102ef610379366004612adb565b610a67565b34801561038a57600080fd5b506102ef610399366004612bb4565b610a9d565b3480156103aa57600080fd5b506103026103b9366004612b10565b610b2b565b3480156103ca57600080fd5b506102ef610c97565b3480156103df57600080fd5b506102ef6103ee366004612b78565b610d67565b3480156103ff57600080fd5b50610302600b5481565b34801561041557600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b34801561044957600080fd5b50610302610458366004612adb565b610d82565b34801561046957600080fd5b5061030267011c37937e08000081565b34801561048557600080fd5b506102ef610494366004612bd5565b610de4565b3480156104a557600080fd5b506102b76104b4366004612adb565b610e58565b3480156104c557600080fd5b5061028a610e6a565b3480156104da57600080fd5b506103026104e9366004612c47565b610ef8565b3480156104fa57600080fd5b506102ef610f89565b34801561050f57600080fd5b506008546001600160a01b03166102b7565b34801561052d57600080fd5b5061054161053c366004612adb565b610fbf565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161026c565b34801561057b57600080fd5b5061028a610fdc565b6102ef610592366004612adb565b610feb565b3480156105a357600080fd5b506102ef6105b2366004612c62565b611223565b3480156105c357600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f757600080fd5b5061030266e6ed27d666800081565b34801561061257600080fd5b506102ef610621366004612cb4565b6112e7565b34801561063257600080fd5b5061028a610641366004612adb565b611320565b34801561065257600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b34801561068657600080fd5b506102ef610695366004612b10565b611375565b3480156106a657600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b3480156106da57600080fd5b5061030260075481565b3480156106f057600080fd5b506102ef6106ff366004612adb565b611635565b34801561071057600080fd5b5061030261071f366004612c47565b611694565b6102ef610732366004612d90565b61169f565b34801561074357600080fd5b50610260610752366004612e0f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b50610302600a5481565b3480156107a257600080fd5b506102ef6107b1366004612c47565b6119a3565b60006001600160e01b031982166380ac58cd60e01b14806107e757506001600160e01b03198216635b5e139f60e01b145b8061080257506001600160e01b0319821663780e9d6360e01b145b8061081d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461083290612e42565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90612e42565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c2826000541190565b6109295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095082610e58565b9050806001600160a01b0316836001600160a01b0316036109be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610920565b336001600160a01b03821614806109da57506109da8133610752565b610a4c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610920565b610a57838383611a3b565b505050565b610a57838383611a97565b6008546001600160a01b03163314610a915760405162461bcd60e51b815260040161092090612e7c565b610a9a81611e1f565b50565b6008546001600160a01b03163314610ac75760405162461bcd60e51b815260040161092090612e7c565b6008805482919060ff60a01b1916600160a01b836003811115610aec57610aec612b3a565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610b209190612b50565b60405180910390a150565b6000610b3683610ef8565b8210610b8f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610920565b600080549080805b83811015610c37576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bea57805192505b876001600160a01b0316836001600160a01b031603610c2457868403610c165750935061081d92505050565b83610c2081612ec7565b9450505b5080610c2f81612ec7565b915050610b97565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610920565b6008546001600160a01b03163314610cc15760405162461bcd60e51b815260040161092090612e7c565b6003600854600160a01b900460ff166003811115610ce157610ce1612b3a565b14610d2e5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c69642073746174757320666f722077697468647261776e2e0000006044820152606401610920565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a9a573d6000803e3d6000fd5b610a57838383604051806020016040528060008152506112e7565b600080548210610de05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610920565b5090565b6008546001600160a01b03163314610e0e5760405162461bcd60e51b815260040161092090612e7c565b610e1a600983836129ad565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610e4c929190612ee0565b60405180910390a15050565b6000610e6382612009565b5192915050565b60098054610e7790612e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea390612e42565b8015610ef05780601f10610ec557610100808354040283529160200191610ef0565b820191906000526020600020905b815481529060010190602001808311610ed357829003601f168201915b505050505081565b60006001600160a01b038216610f645760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610920565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610fb35760405162461bcd60e51b815260040161092090612e7c565b610fbd60006121b3565b565b604080518082019091526000808252602082015261081d82612009565b60606002805461083290612e42565b32331461103a5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610920565b6002600854600160a01b900460ff16600381111561105a5761105a612b3a565b146110a75760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e0000000000006044820152606401610920565b7f00000000000000000000000000000000000000000000000000000000000000008111156111175760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420616d6f756e74207065722074782065786365656465642e6044820152606401610920565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f00000000000000000000000000000000000000000000000000000000000000008361116660005490565b6111709190612f0f565b61117a9190612f0f565b6111849190612f27565b11156111c95760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610920565b6111d33382612205565b6111ed6111e88267011c37937e080000612f3e565b612223565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9101610b20565b336001600160a01b0383160361127b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610920565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112f2848484611a97565b6112fe848484846122aa565b61131a5760405162461bcd60e51b815260040161092090612f5d565b50505050565b6060600061132d836123ac565b9050600081511161134d576040518060200160405280600081525061136e565b8060405160200161135e9190612fb0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b815260040161092090612e7c565b6001600160a01b0382166113e45760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610920565b600081116114255760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610920565b7f00000000000000000000000000000000000000000000000000000000000000008161145060005490565b61145a9190612f0f565b111561149e5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610920565b7f000000000000000000000000000000000000000000000000000000000000000081600b546114cd9190612f0f565b111561151b5760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e7420657863656564656400000000006044820152606401610920565b60006115477f000000000000000000000000000000000000000000000000000000000000000083612fef565b905060005b818110156115905761157e847f0000000000000000000000000000000000000000000000000000000000000000612205565b8061158881612ec7565b91505061154c565b5060006115bd7f000000000000000000000000000000000000000000000000000000000000000084613003565b905080156115cf576115cf8482612205565b82600b60008282546115e19190612f0f565b9091555050604080513381526001600160a01b03861660208201529081018490527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a150505050565b6008546001600160a01b0316331461165f5760405162461bcd60e51b815260040161092090612e7c565b600a8190556040518181527f545a99af2f74d472d3ceb11889ff68b31a1a02f48a9431f04cda814892ee57e290602001610b20565b600061081d82612462565b3233146116ee5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610920565b6001600854600160a01b900460ff16600381111561170e5761170e612b3a565b146117545760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b6044820152606401610920565b6117c982828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120612500565b6118065760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610920565b7f00000000000000000000000000000000000000000000000000000000000000008361183133611694565b61183b9190612f0f565b11156118955760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656044820152633232b21760e11b6064820152608401610920565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f0000000000000000000000000000000000000000000000000000000000000000856118e460005490565b6118ee9190612f0f565b6118f89190612f0f565b6119029190612f27565b11156119475760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610920565b6119513384612205565b6119656111e88466e6ed27d6668000612f3e565b60408051338152602081018590527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1505050565b6008546001600160a01b031633146119cd5760405162461bcd60e51b815260040161092090612e7c565b6001600160a01b038116611a325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610920565b610a9a816121b3565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611aa282612009565b80519091506000906001600160a01b0316336001600160a01b03161480611ad9575033611ace846108b5565b6001600160a01b0316145b80611aeb57508151611aeb9033610752565b905080611b555760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610920565b846001600160a01b031682600001516001600160a01b031614611bc95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610920565b6001600160a01b038416611c2d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610920565b611c3d6000848460000151611a3b565b6001600160a01b0385166000908152600460205260408120805460019290611c6f9084906001600160801b0316613017565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611cbb9185911661303f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d43846001612f0f565b6000818152600360205260409020549091506001600160a01b0316611dd557611d6d816000541190565b15611dd55760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611e6f5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610920565b60006001611e7d8484612f0f565b611e879190612f27565b9050611eb460017f0000000000000000000000000000000000000000000000000000000000000000612f27565b811115611ee957611ee660017f0000000000000000000000000000000000000000000000000000000000000000612f27565b90505b611ef4816000541190565b611f4f5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610920565b815b818111611ff5576000818152600360205260409020546001600160a01b0316611fe3576000611f7f82612009565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611fed81612ec7565b915050611f51565b50612001816001612f0f565b600755505050565b6040805180820190915260008082526020820152612028826000541190565b6120875760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610920565b60007f000000000000000000000000000000000000000000000000000000000000000083106120e8576120da7f000000000000000000000000000000000000000000000000000000000000000084612f27565b6120e5906001612f0f565b90505b825b818110612152576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561213f57949350505050565b508061214a8161306a565b9150506120ea565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610920565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61221f828260405180602001604052806000815250612516565b5050565b8034101561226c5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610920565b80341115610a9a57336108fc6122828334612f27565b6040518115909202916000818181858888f1935050505015801561221f573d6000803e3d6000fd5b60006001600160a01b0384163b156123a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122ee903390899088908890600401613081565b6020604051808303816000875af1925050508015612329575060408051601f3d908101601f19168201909252612326918101906130be565b60015b612386573d808015612357576040519150601f19603f3d011682016040523d82523d6000602084013e61235c565b606091505b50805160000361237e5760405162461bcd60e51b815260040161092090612f5d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123a4565b5060015b949350505050565b60606123b9826000541190565b61241d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610920565b60006124276127f1565b90506000815111612447576040518060200160405280600081525061136e565b8061245184612800565b60405160200161135e9291906130db565b60006001600160a01b0382166124d45760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610920565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b60008261250d8584612901565b14949350505050565b6000546001600160a01b0384166125795760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610920565b612584816000541190565b156125d15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610920565b7f000000000000000000000000000000000000000000000000000000000000000083111561264c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610920565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126a890879061303f565b6001600160801b031681526020018583602001516126c6919061303f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127e65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127aa60008884886122aa565b6127c65760405162461bcd60e51b815260040161092090612f5d565b816127d081612ec7565b92505080806127de90612ec7565b91505061275d565b506000819055611e17565b60606009805461083290612e42565b6060816000036128275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612851578061283b81612ec7565b915061284a9050600a83612fef565b915061282b565b60008167ffffffffffffffff81111561286c5761286c612c9e565b6040519080825280601f01601f191660200182016040528015612896576020820181803683370190505b5090505b84156123a4576128ab600183612f27565b91506128b8600a86613003565b6128c3906030612f0f565b60f81b8183815181106128d8576128d8613101565b60200101906001600160f81b031916908160001a9053506128fa600a86612fef565b945061289a565b600081815b84518110156129a557600085828151811061292357612923613101565b60200260200101519050808311612965576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612992565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061299d81612ec7565b915050612906565b509392505050565b8280546129b990612e42565b90600052602060002090601f0160209004810192826129db5760008555612a21565b82601f106129f45782800160ff19823516178555612a21565b82800160010185558215612a21579182015b82811115612a21578235825591602001919060010190612a06565b50610de09291505b80821115610de05760008155600101612a29565b6001600160e01b031981168114610a9a57600080fd5b600060208284031215612a6557600080fd5b813561136e81612a3d565b60005b83811015612a8b578181015183820152602001612a73565b8381111561131a5750506000910152565b60008151808452612ab4816020860160208601612a70565b601f01601f19169290920160200192915050565b60208152600061136e6020830184612a9c565b600060208284031215612aed57600080fd5b5035919050565b80356001600160a01b0381168114612b0b57600080fd5b919050565b60008060408385031215612b2357600080fd5b612b2c83612af4565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612b7257634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215612b8d57600080fd5b612b9684612af4565b9250612ba460208501612af4565b9150604084013590509250925092565b600060208284031215612bc657600080fd5b81356004811061136e57600080fd5b60008060208385031215612be857600080fd5b823567ffffffffffffffff80821115612c0057600080fd5b818501915085601f830112612c1457600080fd5b813581811115612c2357600080fd5b866020828501011115612c3557600080fd5b60209290920196919550909350505050565b600060208284031215612c5957600080fd5b61136e82612af4565b60008060408385031215612c7557600080fd5b612c7e83612af4565b915060208301358015158114612c9357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612cca57600080fd5b612cd385612af4565b9350612ce160208601612af4565b925060408501359150606085013567ffffffffffffffff80821115612d0557600080fd5b818701915087601f830112612d1957600080fd5b813581811115612d2b57612d2b612c9e565b604051601f8201601f19908116603f01168101908382118183101715612d5357612d53612c9e565b816040528281528a6020848701011115612d6c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215612da557600080fd5b83359250602084013567ffffffffffffffff80821115612dc457600080fd5b818601915086601f830112612dd857600080fd5b813581811115612de757600080fd5b8760208260051b8501011115612dfc57600080fd5b6020830194508093505050509250925092565b60008060408385031215612e2257600080fd5b612e2b83612af4565b9150612e3960208401612af4565b90509250929050565b600181811c90821680612e5657607f821691505b602082108103612e7657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201612ed957612ed9612eb1565b5060010190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60008219821115612f2257612f22612eb1565b500190565b600082821015612f3957612f39612eb1565b500390565b6000816000190483118215151615612f5857612f58612eb1565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008251612fc2818460208701612a70565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b600082612ffe57612ffe612fd9565b500490565b60008261301257613012612fd9565b500690565b60006001600160801b038381169083168181101561303757613037612eb1565b039392505050565b60006001600160801b0380831681851680830382111561306157613061612eb1565b01949350505050565b60008161307957613079612eb1565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130b490830184612a9c565b9695505050505050565b6000602082840312156130d057600080fd5b815161136e81612a3d565b600083516130ed818460208801612a70565b835190830190613061818360208801612a70565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a63e047010771e6967294544d9e91071789c39c2e04acdf988dce4225de78bb964736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f676174617761792e7468656d6176657273652e696f2f4150492f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063cabadaa0116100ab578063dc33e6811161006f578063dc33e68114610704578063e3e1e8ef14610724578063e985e9c514610737578063ebf0c71714610780578063f2fde38b1461079657600080fd5b8063cabadaa014610646578063cc47a40b1461067a578063d5abeb011461069a578063d7224ba0146106ce578063dab5f340146106e457600080fd5b8063a22cb465116100f2578063a22cb46514610597578063b4576278146105b7578063b69ab6b3146105eb578063b88d4fde14610606578063c87b56dd1461062657600080fd5b8063715018a6146104ee5780638da5cb5b146105035780639231ab2a1461052157806395d89b411461056f578063a0712d681461058457600080fd5b80633ccfd60b116101bc57806355bf2c121161018057806355bf2c121461045d57806355f804b3146104795780636352211e146104995780636c0360eb146104b957806370a08231146104ce57600080fd5b80633ccfd60b146103be57806342842e0e146103d3578063433adb05146103f35780634b09b72a146104095780634f6ccce71461043d57600080fd5b8063200d2ed211610203578063200d2ed21461031057806323b872dd1461033e5780632d20fb601461035e5780632e49d78b1461037e5780632f745c591461039e57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612a53565b6107b6565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610823565b60405161026c9190612ac8565b3480156102a357600080fd5b506102b76102b2366004612adb565b6108b5565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612b10565b610945565b005b3480156102fd57600080fd5b506000545b60405190815260200161026c565b34801561031c57600080fd5b5060085461033190600160a01b900460ff1681565b60405161026c9190612b50565b34801561034a57600080fd5b506102ef610359366004612b78565b610a5c565b34801561036a57600080fd5b506102ef610379366004612adb565b610a67565b34801561038a57600080fd5b506102ef610399366004612bb4565b610a9d565b3480156103aa57600080fd5b506103026103b9366004612b10565b610b2b565b3480156103ca57600080fd5b506102ef610c97565b3480156103df57600080fd5b506102ef6103ee366004612b78565b610d67565b3480156103ff57600080fd5b50610302600b5481565b34801561041557600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000037881565b34801561044957600080fd5b50610302610458366004612adb565b610d82565b34801561046957600080fd5b5061030267011c37937e08000081565b34801561048557600080fd5b506102ef610494366004612bd5565b610de4565b3480156104a557600080fd5b506102b76104b4366004612adb565b610e58565b3480156104c557600080fd5b5061028a610e6a565b3480156104da57600080fd5b506103026104e9366004612c47565b610ef8565b3480156104fa57600080fd5b506102ef610f89565b34801561050f57600080fd5b506008546001600160a01b03166102b7565b34801561052d57600080fd5b5061054161053c366004612adb565b610fbf565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161026c565b34801561057b57600080fd5b5061028a610fdc565b6102ef610592366004612adb565b610feb565b3480156105a357600080fd5b506102ef6105b2366004612c62565b611223565b3480156105c357600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000a81565b3480156105f757600080fd5b5061030266e6ed27d666800081565b34801561061257600080fd5b506102ef610621366004612cb4565b6112e7565b34801561063257600080fd5b5061028a610641366004612adb565b611320565b34801561065257600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000a81565b34801561068657600080fd5b506102ef610695366004612b10565b611375565b3480156106a657600080fd5b506103027f00000000000000000000000000000000000000000000000000000000000022b881565b3480156106da57600080fd5b5061030260075481565b3480156106f057600080fd5b506102ef6106ff366004612adb565b611635565b34801561071057600080fd5b5061030261071f366004612c47565b611694565b6102ef610732366004612d90565b61169f565b34801561074357600080fd5b50610260610752366004612e0f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b50610302600a5481565b3480156107a257600080fd5b506102ef6107b1366004612c47565b6119a3565b60006001600160e01b031982166380ac58cd60e01b14806107e757506001600160e01b03198216635b5e139f60e01b145b8061080257506001600160e01b0319821663780e9d6360e01b145b8061081d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461083290612e42565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90612e42565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c2826000541190565b6109295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095082610e58565b9050806001600160a01b0316836001600160a01b0316036109be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610920565b336001600160a01b03821614806109da57506109da8133610752565b610a4c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610920565b610a57838383611a3b565b505050565b610a57838383611a97565b6008546001600160a01b03163314610a915760405162461bcd60e51b815260040161092090612e7c565b610a9a81611e1f565b50565b6008546001600160a01b03163314610ac75760405162461bcd60e51b815260040161092090612e7c565b6008805482919060ff60a01b1916600160a01b836003811115610aec57610aec612b3a565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610b209190612b50565b60405180910390a150565b6000610b3683610ef8565b8210610b8f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610920565b600080549080805b83811015610c37576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bea57805192505b876001600160a01b0316836001600160a01b031603610c2457868403610c165750935061081d92505050565b83610c2081612ec7565b9450505b5080610c2f81612ec7565b915050610b97565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610920565b6008546001600160a01b03163314610cc15760405162461bcd60e51b815260040161092090612e7c565b6003600854600160a01b900460ff166003811115610ce157610ce1612b3a565b14610d2e5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c69642073746174757320666f722077697468647261776e2e0000006044820152606401610920565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a9a573d6000803e3d6000fd5b610a57838383604051806020016040528060008152506112e7565b600080548210610de05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610920565b5090565b6008546001600160a01b03163314610e0e5760405162461bcd60e51b815260040161092090612e7c565b610e1a600983836129ad565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610e4c929190612ee0565b60405180910390a15050565b6000610e6382612009565b5192915050565b60098054610e7790612e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea390612e42565b8015610ef05780601f10610ec557610100808354040283529160200191610ef0565b820191906000526020600020905b815481529060010190602001808311610ed357829003601f168201915b505050505081565b60006001600160a01b038216610f645760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610920565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610fb35760405162461bcd60e51b815260040161092090612e7c565b610fbd60006121b3565b565b604080518082019091526000808252602082015261081d82612009565b60606002805461083290612e42565b32331461103a5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610920565b6002600854600160a01b900460ff16600381111561105a5761105a612b3a565b146110a75760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e0000000000006044820152606401610920565b7f000000000000000000000000000000000000000000000000000000000000000a8111156111175760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420616d6f756e74207065722074782065786365656465642e6044820152606401610920565b7f00000000000000000000000000000000000000000000000000000000000022b8600b547f00000000000000000000000000000000000000000000000000000000000003788361116660005490565b6111709190612f0f565b61117a9190612f0f565b6111849190612f27565b11156111c95760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610920565b6111d33382612205565b6111ed6111e88267011c37937e080000612f3e565b612223565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9101610b20565b336001600160a01b0383160361127b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610920565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112f2848484611a97565b6112fe848484846122aa565b61131a5760405162461bcd60e51b815260040161092090612f5d565b50505050565b6060600061132d836123ac565b9050600081511161134d576040518060200160405280600081525061136e565b8060405160200161135e9190612fb0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b815260040161092090612e7c565b6001600160a01b0382166113e45760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610920565b600081116114255760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610920565b7f00000000000000000000000000000000000000000000000000000000000022b88161145060005490565b61145a9190612f0f565b111561149e5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610920565b7f000000000000000000000000000000000000000000000000000000000000037881600b546114cd9190612f0f565b111561151b5760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e7420657863656564656400000000006044820152606401610920565b60006115477f000000000000000000000000000000000000000000000000000000000000000a83612fef565b905060005b818110156115905761157e847f000000000000000000000000000000000000000000000000000000000000000a612205565b8061158881612ec7565b91505061154c565b5060006115bd7f000000000000000000000000000000000000000000000000000000000000000a84613003565b905080156115cf576115cf8482612205565b82600b60008282546115e19190612f0f565b9091555050604080513381526001600160a01b03861660208201529081018490527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a150505050565b6008546001600160a01b0316331461165f5760405162461bcd60e51b815260040161092090612e7c565b600a8190556040518181527f545a99af2f74d472d3ceb11889ff68b31a1a02f48a9431f04cda814892ee57e290602001610b20565b600061081d82612462565b3233146116ee5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610920565b6001600854600160a01b900460ff16600381111561170e5761170e612b3a565b146117545760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b6044820152606401610920565b6117c982828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120612500565b6118065760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610920565b7f000000000000000000000000000000000000000000000000000000000000000a8361183133611694565b61183b9190612f0f565b11156118955760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656044820152633232b21760e11b6064820152608401610920565b7f00000000000000000000000000000000000000000000000000000000000022b8600b547f0000000000000000000000000000000000000000000000000000000000000378856118e460005490565b6118ee9190612f0f565b6118f89190612f0f565b6119029190612f27565b11156119475760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610920565b6119513384612205565b6119656111e88466e6ed27d6668000612f3e565b60408051338152602081018590527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1505050565b6008546001600160a01b031633146119cd5760405162461bcd60e51b815260040161092090612e7c565b6001600160a01b038116611a325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610920565b610a9a816121b3565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611aa282612009565b80519091506000906001600160a01b0316336001600160a01b03161480611ad9575033611ace846108b5565b6001600160a01b0316145b80611aeb57508151611aeb9033610752565b905080611b555760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610920565b846001600160a01b031682600001516001600160a01b031614611bc95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610920565b6001600160a01b038416611c2d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610920565b611c3d6000848460000151611a3b565b6001600160a01b0385166000908152600460205260408120805460019290611c6f9084906001600160801b0316613017565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611cbb9185911661303f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d43846001612f0f565b6000818152600360205260409020549091506001600160a01b0316611dd557611d6d816000541190565b15611dd55760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611e6f5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610920565b60006001611e7d8484612f0f565b611e879190612f27565b9050611eb460017f00000000000000000000000000000000000000000000000000000000000022b8612f27565b811115611ee957611ee660017f00000000000000000000000000000000000000000000000000000000000022b8612f27565b90505b611ef4816000541190565b611f4f5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610920565b815b818111611ff5576000818152600360205260409020546001600160a01b0316611fe3576000611f7f82612009565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611fed81612ec7565b915050611f51565b50612001816001612f0f565b600755505050565b6040805180820190915260008082526020820152612028826000541190565b6120875760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610920565b60007f000000000000000000000000000000000000000000000000000000000000000a83106120e8576120da7f000000000000000000000000000000000000000000000000000000000000000a84612f27565b6120e5906001612f0f565b90505b825b818110612152576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561213f57949350505050565b508061214a8161306a565b9150506120ea565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610920565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61221f828260405180602001604052806000815250612516565b5050565b8034101561226c5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610920565b80341115610a9a57336108fc6122828334612f27565b6040518115909202916000818181858888f1935050505015801561221f573d6000803e3d6000fd5b60006001600160a01b0384163b156123a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122ee903390899088908890600401613081565b6020604051808303816000875af1925050508015612329575060408051601f3d908101601f19168201909252612326918101906130be565b60015b612386573d808015612357576040519150601f19603f3d011682016040523d82523d6000602084013e61235c565b606091505b50805160000361237e5760405162461bcd60e51b815260040161092090612f5d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123a4565b5060015b949350505050565b60606123b9826000541190565b61241d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610920565b60006124276127f1565b90506000815111612447576040518060200160405280600081525061136e565b8061245184612800565b60405160200161135e9291906130db565b60006001600160a01b0382166124d45760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610920565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b60008261250d8584612901565b14949350505050565b6000546001600160a01b0384166125795760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610920565b612584816000541190565b156125d15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610920565b7f000000000000000000000000000000000000000000000000000000000000000a83111561264c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610920565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126a890879061303f565b6001600160801b031681526020018583602001516126c6919061303f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127e65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127aa60008884886122aa565b6127c65760405162461bcd60e51b815260040161092090612f5d565b816127d081612ec7565b92505080806127de90612ec7565b91505061275d565b506000819055611e17565b60606009805461083290612e42565b6060816000036128275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612851578061283b81612ec7565b915061284a9050600a83612fef565b915061282b565b60008167ffffffffffffffff81111561286c5761286c612c9e565b6040519080825280601f01601f191660200182016040528015612896576020820181803683370190505b5090505b84156123a4576128ab600183612f27565b91506128b8600a86613003565b6128c3906030612f0f565b60f81b8183815181106128d8576128d8613101565b60200101906001600160f81b031916908160001a9053506128fa600a86612fef565b945061289a565b600081815b84518110156129a557600085828151811061292357612923613101565b60200260200101519050808311612965576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612992565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061299d81612ec7565b915050612906565b509392505050565b8280546129b990612e42565b90600052602060002090601f0160209004810192826129db5760008555612a21565b82601f106129f45782800160ff19823516178555612a21565b82800160010185558215612a21579182015b82811115612a21578235825591602001919060010190612a06565b50610de09291505b80821115610de05760008155600101612a29565b6001600160e01b031981168114610a9a57600080fd5b600060208284031215612a6557600080fd5b813561136e81612a3d565b60005b83811015612a8b578181015183820152602001612a73565b8381111561131a5750506000910152565b60008151808452612ab4816020860160208601612a70565b601f01601f19169290920160200192915050565b60208152600061136e6020830184612a9c565b600060208284031215612aed57600080fd5b5035919050565b80356001600160a01b0381168114612b0b57600080fd5b919050565b60008060408385031215612b2357600080fd5b612b2c83612af4565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612b7257634e487b7160e01b600052602160045260246000fd5b91905290565b600080600060608486031215612b8d57600080fd5b612b9684612af4565b9250612ba460208501612af4565b9150604084013590509250925092565b600060208284031215612bc657600080fd5b81356004811061136e57600080fd5b60008060208385031215612be857600080fd5b823567ffffffffffffffff80821115612c0057600080fd5b818501915085601f830112612c1457600080fd5b813581811115612c2357600080fd5b866020828501011115612c3557600080fd5b60209290920196919550909350505050565b600060208284031215612c5957600080fd5b61136e82612af4565b60008060408385031215612c7557600080fd5b612c7e83612af4565b915060208301358015158114612c9357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612cca57600080fd5b612cd385612af4565b9350612ce160208601612af4565b925060408501359150606085013567ffffffffffffffff80821115612d0557600080fd5b818701915087601f830112612d1957600080fd5b813581811115612d2b57612d2b612c9e565b604051601f8201601f19908116603f01168101908382118183101715612d5357612d53612c9e565b816040528281528a6020848701011115612d6c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215612da557600080fd5b83359250602084013567ffffffffffffffff80821115612dc457600080fd5b818601915086601f830112612dd857600080fd5b813581811115612de757600080fd5b8760208260051b8501011115612dfc57600080fd5b6020830194508093505050509250925092565b60008060408385031215612e2257600080fd5b612e2b83612af4565b9150612e3960208401612af4565b90509250929050565b600181811c90821680612e5657607f821691505b602082108103612e7657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201612ed957612ed9612eb1565b5060010190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60008219821115612f2257612f22612eb1565b500190565b600082821015612f3957612f39612eb1565b500390565b6000816000190483118215151615612f5857612f58612eb1565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008251612fc2818460208701612a70565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b600082612ffe57612ffe612fd9565b500490565b60008261301257613012612fd9565b500690565b60006001600160801b038381169083168181101561303757613037612eb1565b039392505050565b60006001600160801b0380831681851680830382111561306157613061612eb1565b01949350505050565b60008161307957613079612eb1565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130b490830184612a9c565b9695505050505050565b6000602082840312156130d057600080fd5b815161136e81612a3d565b600083516130ed818460208801612a70565b835190830190613061818360208801612a70565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a63e047010771e6967294544d9e91071789c39c2e04acdf988dce4225de78bb964736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f676174617761792e7468656d6176657273652e696f2f4150492f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://gataway.themaverse.io/API/
Arg [1] : _maxPresaleMint (uint256): 10
Arg [2] : _maxPublicMint (uint256): 10
Arg [3] : _maxSupply (uint256): 8888
Arg [4] : _reserveAmount (uint256): 888

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000378
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [6] : 68747470733a2f2f676174617761792e7468656d6176657273652e696f2f4150
Arg [7] : 492f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44077:5333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27562:422;;;;;;;;;;-1:-1:-1;27562:422:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27562:422:0;;;;;;;;29523:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31218:292::-;;;;;;;;;;-1:-1:-1;31218:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31218:292:0;1528:203:1;30739:413:0;;;;;;;;;;-1:-1:-1;30739:413:0;;;;;:::i;:::-;;:::i;:::-;;25918:100;;;;;;;;;;-1:-1:-1;25971:7:0;25998:12;25918:100;;;2319:25:1;;;2307:2;2292:18;25918:100:0;2173:177:1;44228:20:0;;;;;;;;;;-1:-1:-1;44228:20:0;;;;-1:-1:-1;;;44228:20:0;;;;;;;;;;;;;:::i;32245:162::-;;;;;;;;;;-1:-1:-1;32245:162:0;;;;;:::i;:::-;;:::i;49000:111::-;;;;;;;;;;-1:-1:-1;49000:111:0;;;;;:::i;:::-;;:::i;48741:127::-;;;;;;;;;;-1:-1:-1;48741:127:0;;;;;:::i;:::-;;:::i;26626:864::-;;;;;;;;;;-1:-1:-1;26626:864:0;;;;;:::i;:::-;;:::i;48391:186::-;;;;;;;;;;;;;:::i;32478:177::-;;;;;;;;;;-1:-1:-1;32478:177:0;;;;;:::i;:::-;;:::i;44309:29::-;;;;;;;;;;;;;;;;44477:38;;;;;;;;;;;;;;;26095:228;;;;;;;;;;-1:-1:-1;26095:228:0;;;;;:::i;:::-;;:::i;44579:48::-;;;;;;;;;;;;44617:10;44579:48;;48585:148;;;;;;;;;;-1:-1:-1;48585:148:0;;;;;:::i;:::-;;:::i;29332:124::-;;;;;;;;;;-1:-1:-1;29332:124:0;;;;;:::i;:::-;;:::i;44255:21::-;;;;;;;;;;;;;:::i;28048:258::-;;;;;;;;;;-1:-1:-1;28048:258:0;;;;;:::i;:::-;;:::i;43198:103::-;;;;;;;;;;;;;:::i;42547:87::-;;;;;;;;;;-1:-1:-1;42620:6:0;;-1:-1:-1;;;;;42620:6:0;42547:87;;49240:167;;;;;;;;;;-1:-1:-1;49240:167:0;;;;;:::i;:::-;;:::i;:::-;;;;4454:13:1;;-1:-1:-1;;;;;4450:39:1;4432:58;;4550:4;4538:17;;;4532:24;4558:18;4528:49;4506:20;;;4499:79;;;;4405:18;49240:167:0;4224:360:1;29692:104:0;;;;;;;;;;;;;:::i;47643:508::-;;;;;;:::i;:::-;;:::i;31582:311::-;;;;;;;;;;-1:-1:-1;31582:311:0;;;;;:::i;:::-;;:::i;44345:39::-;;;;;;;;;;;;;;;44522:50;;;;;;;;;;;;44561:11;44522:50;;32726:355;;;;;;;;;;-1:-1:-1;32726:355:0;;;;;:::i;:::-;;:::i;45707:298::-;;;;;;;;;;-1:-1:-1;45707:298:0;;;;;:::i;:::-;;:::i;44391:38::-;;;;;;;;;;;;;;;46013:832;;;;;;;;;;-1:-1:-1;46013:832:0;;;;;:::i;:::-;;:::i;44436:34::-;;;;;;;;;;;;;;;37607:43;;;;;;;;;;;;;;;;48876:116;;;;;;;;;;-1:-1:-1;48876:116:0;;;;;:::i;:::-;;:::i;49119:113::-;;;;;;;;;;-1:-1:-1;49119:113:0;;;;;:::i;:::-;;:::i;46853:782::-;;;;;;:::i;:::-;;:::i;31964:214::-;;;;;;;;;;-1:-1:-1;31964:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32135:25:0;;;32106:4;32135:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31964:214;44283:19;;;;;;;;;;;;;;;;43456:201;;;;;;;;;;-1:-1:-1;43456:201:0;;;;;:::i;:::-;;:::i;27562:422::-;27709:4;-1:-1:-1;;;;;;27751:40:0;;-1:-1:-1;;;27751:40:0;;:105;;-1:-1:-1;;;;;;;27808:48:0;;-1:-1:-1;;;27808:48:0;27751:105;:172;;;-1:-1:-1;;;;;;;27873:50:0;;-1:-1:-1;;;27873:50:0;27751:172;:225;;;-1:-1:-1;;;;;;;;;;13572:40:0;;;27940:36;27731:245;27562:422;-1:-1:-1;;27562:422:0:o;29523:100::-;29577:13;29610:5;29603:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29523:100;:::o;31218:292::-;31322:7;31369:16;31377:7;33393:4;33427:12;-1:-1:-1;33417:22:0;33336:111;31369:16;31347:111;;;;-1:-1:-1;;;31347:111:0;;8123:2:1;31347:111:0;;;8105:21:1;8162:2;8142:18;;;8135:30;8201:34;8181:18;;;8174:62;-1:-1:-1;;;8252:18:1;;;8245:43;8305:19;;31347:111:0;;;;;;;;;-1:-1:-1;31478:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31478:24:0;;31218:292::o;30739:413::-;30812:13;30828:24;30844:7;30828:15;:24::i;:::-;30812:40;;30877:5;-1:-1:-1;;;;;30871:11:0;:2;-1:-1:-1;;;;;30871:11:0;;30863:58;;;;-1:-1:-1;;;30863:58:0;;8537:2:1;30863:58:0;;;8519:21:1;8576:2;8556:18;;;8549:30;8615:34;8595:18;;;8588:62;-1:-1:-1;;;8666:18:1;;;8659:32;8708:19;;30863:58:0;8335:398:1;30863:58:0;23322:10;-1:-1:-1;;;;;30956:21:0;;;;:62;;-1:-1:-1;30981:37:0;30998:5;23322:10;31964:214;:::i;30981:37::-;30934:169;;;;-1:-1:-1;;;30934:169:0;;8940:2:1;30934:169:0;;;8922:21:1;8979:2;8959:18;;;8952:30;9018:34;8998:18;;;8991:62;9089:27;9069:18;;;9062:55;9134:19;;30934:169:0;8738:421:1;30934:169:0;31116:28;31125:2;31129:7;31138:5;31116:8;:28::i;:::-;30801:351;30739:413;;:::o;32245:162::-;32371:28;32381:4;32387:2;32391:7;32371:9;:28::i;49000:111::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;49075:28:::1;49094:8;49075:18;:28::i;:::-;49000:111:::0;:::o;48741:127::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;48806:6:::1;:16:::0;;48815:7;;48806:6;-1:-1:-1;;;;48806:16:0::1;-1:-1:-1::0;;;48815:7:0;48806:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;48838:22;48852:7;48838:22;;;;;;:::i;:::-;;;;;;;;48741:127:::0;:::o;26626:864::-;26751:7;26792:16;26802:5;26792:9;:16::i;:::-;26784:5;:24;26776:71;;;;-1:-1:-1;;;26776:71:0;;9727:2:1;26776:71:0;;;9709:21:1;9766:2;9746:18;;;9739:30;9805:34;9785:18;;;9778:62;-1:-1:-1;;;9856:18:1;;;9849:32;9898:19;;26776:71:0;9525:398:1;26776:71:0;26858:22;25998:12;;;26858:22;;26990:426;27014:14;27010:1;:18;26990:426;;;27050:31;27084:14;;;:11;:14;;;;;;;;;27050:48;;;;;;;;;-1:-1:-1;;;;;27050:48:0;;;;;-1:-1:-1;;;27050:48:0;;;;;;;;;;;;27117:28;27113:103;;27186:14;;;-1:-1:-1;27113:103:0;27255:5;-1:-1:-1;;;;;27234:26:0;:17;-1:-1:-1;;;;;27234:26:0;;27230:175;;27300:5;27285:11;:20;27281:77;;-1:-1:-1;27337:1:0;-1:-1:-1;27330:8:0;;-1:-1:-1;;;27330:8:0;27281:77;27376:13;;;;:::i;:::-;;;;27230:175;-1:-1:-1;27030:3:0;;;;:::i;:::-;;;;26990:426;;;-1:-1:-1;27426:56:0;;-1:-1:-1;;;27426:56:0;;10402:2:1;27426:56:0;;;10384:21:1;10441:2;10421:18;;;10414:30;10480:34;10460:18;;;10453:62;-1:-1:-1;;;10531:18:1;;;10524:44;10585:19;;27426:56:0;10200:410:1;48391:186:0;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;48459:15:::1;48449:6;::::0;-1:-1:-1;;;48449:6:0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;48441:67;;;::::0;-1:-1:-1;;;48441:67:0;;10817:2:1;48441:67:0::1;::::0;::::1;10799:21:1::0;10856:2;10836:18;;;10829:30;10895:31;10875:18;;;10868:59;10944:18;;48441:67:0::1;10615:353:1::0;48441:67:0::1;42620:6:::0;;48521:48:::1;::::0;-1:-1:-1;;;;;42620:6:0;;;;48547:21:::1;48521:48:::0;::::1;;;::::0;::::1;::::0;;;48547:21;42620:6;48521:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;32478:177:::0;32608:39;32625:4;32631:2;32635:7;32608:39;;;;;;;;;;;;:16;:39::i;26095:228::-;26198:7;25998:12;;26231:5;:21;26223:69;;;;-1:-1:-1;;;26223:69:0;;11175:2:1;26223:69:0;;;11157:21:1;11214:2;11194:18;;;11187:30;11253:34;11233:18;;;11226:62;-1:-1:-1;;;11304:18:1;;;11297:33;11347:19;;26223:69:0;10973:399:1;26223:69:0;-1:-1:-1;26310:5:0;26095:228::o;48585:148::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;48663:20:::1;:7;48673:10:::0;;48663:20:::1;:::i;:::-;;48699:26;48714:10;;48699:26;;;;;;;:::i;:::-;;;;;;;;48585:148:::0;;:::o;29332:124::-;29396:7;29423:20;29435:7;29423:11;:20::i;:::-;:25;;29332:124;-1:-1:-1;;29332:124:0:o;44255:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28048:258::-;28112:7;-1:-1:-1;;;;;28154:19:0;;28132:112;;;;-1:-1:-1;;;28132:112:0;;11974:2:1;28132:112:0;;;11956:21:1;12013:2;11993:18;;;11986:30;12052:34;12032:18;;;12025:62;-1:-1:-1;;;12103:18:1;;;12096:41;12154:19;;28132:112:0;11772:407:1;28132:112:0;-1:-1:-1;;;;;;28270:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28270:27:0;;28048:258::o;43198:103::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;43263:30:::1;43290:1;43263:18;:30::i;:::-;43198:103::o:0;49240:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;49379:20:0;49391:7;49379:11;:20::i;29692:104::-;29748:13;29781:7;29774:14;;;;;:::i;47643:508::-;44934:9;44947:10;44934:23;44926:68;;;;-1:-1:-1;;;44926:68:0;;12386:2:1;44926:68:0;;;12368:21:1;;;12405:18;;;12398:30;12464:34;12444:18;;;12437:62;12516:18;;44926:68:0;12184:356:1;44926:68:0;47732:17:::1;47722:6;::::0;-1:-1:-1;;;47722:6:0;::::1;;;:27;::::0;::::1;;;;;;:::i;:::-;;47714:66;;;::::0;-1:-1:-1;;;47714:66:0;;12747:2:1;47714:66:0::1;::::0;::::1;12729:21:1::0;12786:2;12766:18;;;12759:30;12825:28;12805:18;;;12798:56;12871:18;;47714:66:0::1;12545:350:1::0;47714:66:0::1;47809:13;47799:6;:23;;47791:68;;;::::0;-1:-1:-1;;;47791:68:0;;13102:2:1;47791:68:0::1;::::0;::::1;13084:21:1::0;;;13121:18;;;13114:30;13180:34;13160:18;;;13153:62;13232:18;;47791:68:0::1;12900:356:1::0;47791:68:0::1;47950:14;47933;;47917:13;47908:6;47892:13;25971:7:::0;25998:12;;25918:100;47892:13:::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:72;;47870:142;;;::::0;-1:-1:-1;;;47870:142:0;;13726:2:1;47870:142:0::1;::::0;::::1;13708:21:1::0;13765:2;13745:18;;;13738:30;-1:-1:-1;;;13784:18:1;;;13777:50;13844:18;;47870:142:0::1;13524:344:1::0;47870:142:0::1;48025:29;48035:10;48047:6;48025:9;:29::i;:::-;48065:34;48078:20;48092:6:::0;44617:10:::1;48078:20;:::i;:::-;48065:12;:34::i;:::-;48117:26;::::0;;48124:10:::1;14220:51:1::0;;14302:2;14287:18;;14280:34;;;48117:26:0::1;::::0;14193:18:1;48117:26:0::1;14046:274:1::0;31582:311:0;23322:10;-1:-1:-1;;;;;31700:24:0;;;31692:63;;;;-1:-1:-1;;;31692:63:0;;14527:2:1;31692:63:0;;;14509:21:1;14566:2;14546:18;;;14539:30;14605:28;14585:18;;;14578:56;14651:18;;31692:63:0;14325:350:1;31692:63:0;23322:10;31768:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31768:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31768:53:0;;;;;;;;;;31837:48;;540:41:1;;;31768:42:0;;23322:10;31837:48;;513:18:1;31837:48:0;;;;;;;31582:311;;:::o;32726:355::-;32885:28;32895:4;32901:2;32905:7;32885:9;:28::i;:::-;32946:48;32969:4;32975:2;32979:7;32988:5;32946:22;:48::i;:::-;32924:149;;;;-1:-1:-1;;;32924:149:0;;;;;;;:::i;:::-;32726:355;;;;:::o;45707:298::-;45825:13;45856:17;45876:23;45891:7;45876:14;:23::i;:::-;45856:43;;45950:1;45936:3;45930:17;:21;:67;;;;;;;;;;;;;;;;;45978:3;45961:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;45930:67;45910:87;45707:298;-1:-1:-1;;;45707:298:0:o;46013:832::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46103:23:0;::::1;46095:48;;;::::0;-1:-1:-1;;;46095:48:0;;15750:2:1;46095:48:0::1;::::0;::::1;15732:21:1::0;15789:2;15769:18;;;15762:30;-1:-1:-1;;;15808:18:1;;;15801:42;15860:18;;46095:48:0::1;15548:336:1::0;46095:48:0::1;46171:1;46162:6;:10;46154:37;;;::::0;-1:-1:-1;;;46154:37:0;;16091:2:1;46154:37:0::1;::::0;::::1;16073:21:1::0;16130:2;16110:18;;;16103:30;-1:-1:-1;;;16149:18:1;;;16142:44;16203:18;;46154:37:0::1;15889:338:1::0;46154:37:0::1;46250:14;46240:6;46224:13;25971:7:::0;25998:12;;25918:100;46224:13:::1;:22;;;;:::i;:::-;:40;;46202:109;;;::::0;-1:-1:-1;;;46202:109:0;;16434:2:1;46202:109:0::1;::::0;::::1;16416:21:1::0;16473:2;16453:18;;;16446:30;-1:-1:-1;;;16492:18:1;;;16485:49;16551:18;;46202:109:0::1;16232:343:1::0;46202:109:0::1;46371:13;46361:6;46344:14;;:23;;;;:::i;:::-;:40;;46322:117;;;::::0;-1:-1:-1;;;46322:117:0;;16782:2:1;46322:117:0::1;::::0;::::1;16764:21:1::0;16821:2;16801:18;;;16794:30;16860:29;16840:18;;;16833:57;16907:18;;46322:117:0::1;16580:351:1::0;46322:117:0::1;46452:16;46471:21;46480:12;46471:6:::0;:21:::1;:::i;:::-;46452:40;;46508:9;46503:100;46527:8;46523:1;:12;46503:100;;;46557:34;46567:9;46578:12;46557:9;:34::i;:::-;46537:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46503:100;;;-1:-1:-1::0;46613:17:0::1;46633:21;46642:12;46633:6:::0;:21:::1;:::i;:::-;46613:41:::0;-1:-1:-1;46669:14:0;;46665:78:::1;;46700:31;46710:9;46721;46700;:31::i;:::-;46771:6;46753:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;46793:44:0::1;::::0;;46807:10:::1;17550:34:1::0;;-1:-1:-1;;;;;17620:15:1;;17615:2;17600:18;;17593:43;17652:18;;;17645:34;;;46793:44:0::1;::::0;17500:2:1;17485:18;46793:44:0::1;;;;;;;46084:761;;46013:832:::0;;:::o;48876:116::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;48938:4:::1;:12:::0;;;48966:18:::1;::::0;2319:25:1;;;48966:18:0::1;::::0;2307:2:1;2292:18;48966::0::1;2173:177:1::0;49119:113:0;49177:7;49204:20;49218:5;49204:13;:20::i;46853:782::-;44934:9;44947:10;44934:23;44926:68;;;;-1:-1:-1;;;44926:68:0;;12386:2:1;44926:68:0;;;12368:21:1;;;12405:18;;;12398:30;12464:34;12444:18;;;12437:62;12516:18;;44926:68:0;12184:356:1;44926:68:0;47007:14:::1;46997:6;::::0;-1:-1:-1;;;46997:6:0;::::1;;;:24;::::0;::::1;;;;;;:::i;:::-;;46989:59;;;::::0;-1:-1:-1;;;46989:59:0;;17892:2:1;46989:59:0::1;::::0;::::1;17874:21:1::0;17931:2;17911:18;;;17904:30;-1:-1:-1;;;17950:18:1;;;17943:52;18012:18;;46989:59:0::1;17690:346:1::0;46989:59:0::1;47081:71;47100:5;;47081:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;47106:4:0::1;::::0;47122:28:::1;::::0;-1:-1:-1;;47139:10:0::1;18190:2:1::0;18186:15;18182:53;47122:28:0::1;::::0;::::1;18170:66:1::0;47106:4:0;;-1:-1:-1;18252:12:1;;;-1:-1:-1;47122:28:0::1;;;;;;;;;;;;47112:39;;;;;;47081:18;:71::i;:::-;47059:135;;;::::0;-1:-1:-1;;;47059:135:0;;18477:2:1;47059:135:0::1;::::0;::::1;18459:21:1::0;18516:2;18496:18;;;18489:30;-1:-1:-1;;;18535:18:1;;;18528:44;18589:18;;47059:135:0::1;18275:338:1::0;47059:135:0::1;47264:14;47254:6;47227:24;47240:10;47227:12;:24::i;:::-;:33;;;;:::i;:::-;:51;;47205:137;;;::::0;-1:-1:-1;;;47205:137:0;;18820:2:1;47205:137:0::1;::::0;::::1;18802:21:1::0;18859:2;18839:18;;;18832:30;18898:34;18878:18;;;18871:62;-1:-1:-1;;;18949:18:1;;;18942:34;18993:19;;47205:137:0::1;18618:400:1::0;47205:137:0::1;47433:14;47416;;47400:13;47391:6;47375:13;25971:7:::0;25998:12;;25918:100;47375:13:::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:72;;47353:142;;;::::0;-1:-1:-1;;;47353:142:0;;13726:2:1;47353:142:0::1;::::0;::::1;13708:21:1::0;13765:2;13745:18;;;13738:30;-1:-1:-1;;;13784:18:1;;;13777:50;13844:18;;47353:142:0::1;13524:344:1::0;47353:142:0::1;47508:29;47518:10;47530:6;47508:9;:29::i;:::-;47548:35;47561:21;47576:6:::0;44561:11:::1;47561:21;:::i;47548:35::-;47601:26;::::0;;47608:10:::1;14220:51:1::0;;14302:2;14287:18;;14280:34;;;47601:26:0::1;::::0;14193:18:1;47601:26:0::1;;;;;;;46853:782:::0;;;:::o;43456:201::-;42620:6;;-1:-1:-1;;;;;42620:6:0;23322:10;42767:23;42759:68;;;;-1:-1:-1;;;42759:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43545:22:0;::::1;43537:73;;;::::0;-1:-1:-1;;;43537:73:0;;19225:2:1;43537:73:0::1;::::0;::::1;19207:21:1::0;19264:2;19244:18;;;19237:30;19303:34;19283:18;;;19276:62;-1:-1:-1;;;19354:18:1;;;19347:36;19400:19;;43537:73:0::1;19023:402:1::0;43537:73:0::1;43621:28;43640:8;43621:18;:28::i;37403:196::-:0;37518:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37518:29:0;-1:-1:-1;;;;;37518:29:0;;;;;;;;;37563:28;;37518:24;;37563:28;;;;;;;37403:196;;;:::o;35576:1709::-;35691:35;35729:20;35741:7;35729:11;:20::i;:::-;35804:18;;35691:58;;-1:-1:-1;35762:22:0;;-1:-1:-1;;;;;35788:34:0;23322:10;-1:-1:-1;;;;;35788:34:0;;:87;;;-1:-1:-1;23322:10:0;35839:20;35851:7;35839:11;:20::i;:::-;-1:-1:-1;;;;;35839:36:0;;35788:87;:154;;;-1:-1:-1;35909:18:0;;35892:50;;23322:10;31964:214;:::i;35892:50::-;35762:181;;35978:17;35956:117;;;;-1:-1:-1;;;35956:117:0;;19632:2:1;35956:117:0;;;19614:21:1;19671:2;19651:18;;;19644:30;19710:34;19690:18;;;19683:62;-1:-1:-1;;;19761:18:1;;;19754:48;19819:19;;35956:117:0;19430:414:1;35956:117:0;36130:4;-1:-1:-1;;;;;36108:26:0;:13;:18;;;-1:-1:-1;;;;;36108:26:0;;36086:114;;;;-1:-1:-1;;;36086:114:0;;20051:2:1;36086:114:0;;;20033:21:1;20090:2;20070:18;;;20063:30;20129:34;20109:18;;;20102:62;-1:-1:-1;;;20180:18:1;;;20173:36;20226:19;;36086:114:0;19849:402:1;36086:114:0;-1:-1:-1;;;;;36219:16:0;;36211:66;;;;-1:-1:-1;;;36211:66:0;;20458:2:1;36211:66:0;;;20440:21:1;20497:2;20477:18;;;20470:30;20536:34;20516:18;;;20509:62;-1:-1:-1;;;20587:18:1;;;20580:35;20632:19;;36211:66:0;20256:401:1;36211:66:0;36398:49;36415:1;36419:7;36428:13;:18;;;36398:8;:49::i;:::-;-1:-1:-1;;;;;36460:18:0;;;;;;:12;:18;;;;;:31;;36490:1;;36460:18;:31;;36490:1;;-1:-1:-1;;;;;36460:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36460:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36502:16:0;;-1:-1:-1;36502:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36502:16:0;;:29;;-1:-1:-1;;36502:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36502:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36565:43:0;;;;;;;;-1:-1:-1;;;;;36565:43:0;;;;;;36591:15;36565:43;;;;;;;;;-1:-1:-1;36542:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36542:66:0;-1:-1:-1;;;;;;36542:66:0;;;;;;;;;;;36870:11;36554:7;-1:-1:-1;36870:11:0;:::i;:::-;36937:1;36896:24;;;:11;:24;;;;;:29;36848:33;;-1:-1:-1;;;;;;36896:29:0;36892:288;;36960:20;36968:11;33393:4;33427:12;-1:-1:-1;33417:22:0;33336:111;36960:20;36956:213;;;37028:125;;;;;;;;37065:18;;-1:-1:-1;;;;;37028:125:0;;;;;;37106:28;;;;37028:125;;;;;;;;;;-1:-1:-1;37001:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;37001:152:0;-1:-1:-1;;;;;;37001:152:0;;;;;;;;;;;;36956:213;37216:7;37212:2;-1:-1:-1;;;;;37197:27:0;37206:4;-1:-1:-1;;;;;37197:27:0;;;;;;;;;;;37235:42;35680:1605;;;35576:1709;;;:::o;37763:950::-;37857:24;;37900:12;37892:49;;;;-1:-1:-1;;;37892:49:0;;21373:2:1;37892:49:0;;;21355:21:1;21412:2;21392:18;;;21385:30;21451:26;21431:18;;;21424:54;21495:18;;37892:49:0;21171:348:1;37892:49:0;37952:16;38002:1;37971:28;37991:8;37971:17;:28;:::i;:::-;:32;;;;:::i;:::-;37952:51;-1:-1:-1;38029:18:0;38046:1;38029:14;:18;:::i;:::-;38018:8;:29;38014:91;;;38075:18;38092:1;38075:14;:18;:::i;:::-;38064:29;;38014:91;38228:17;38236:8;33393:4;33427:12;-1:-1:-1;33417:22:0;33336:111;38228:17;38220:68;;;;-1:-1:-1;;;38220:68:0;;21726:2:1;38220:68:0;;;21708:21:1;21765:2;21745:18;;;21738:30;21804:34;21784:18;;;21777:62;-1:-1:-1;;;21855:18:1;;;21848:36;21901:19;;38220:68:0;21524:402:1;38220:68:0;38316:17;38299:357;38340:8;38335:1;:13;38299:357;;38405:1;38374:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;38374:19:0;38370:275;;38428:31;38462:14;38474:1;38462:11;:14::i;:::-;38512:117;;;;;;;;38549:14;;-1:-1:-1;;;;;38512:117:0;;;;;;38586:24;;;;38512:117;;;;;;;;;;-1:-1:-1;38495:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;38495:134:0;-1:-1:-1;;;;;;38495:134:0;;;;;;;;;;;;-1:-1:-1;38370:275:0;38350:3;;;;:::i;:::-;;;;38299:357;;;-1:-1:-1;38693:12:0;:8;38704:1;38693:12;:::i;:::-;38666:24;:39;-1:-1:-1;;;37763:950:0:o;28588:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;28723:16:0;28731:7;33393:4;33427:12;-1:-1:-1;33417:22:0;33336:111;28723:16;28715:71;;;;-1:-1:-1;;;28715:71:0;;22133:2:1;28715:71:0;;;22115:21:1;22172:2;22152:18;;;22145:30;22211:34;22191:18;;;22184:62;-1:-1:-1;;;22262:18:1;;;22255:40;22312:19;;28715:71:0;21931:406:1;28715:71:0;28799:26;28851:12;28840:7;:23;28836:103;;28901:22;28911:12;28901:7;:22;:::i;:::-;:26;;28926:1;28901:26;:::i;:::-;28880:47;;28836:103;28971:7;28951:242;28988:18;28980:4;:26;28951:242;;29031:31;29065:17;;;:11;:17;;;;;;;;;29031:51;;;;;;;;;-1:-1:-1;;;;;29031:51:0;;;;;-1:-1:-1;;;29031:51:0;;;;;;;;;;;;29101:28;29097:85;;29157:9;28588:682;-1:-1:-1;;;;28588:682:0:o;29097:85::-;-1:-1:-1;29008:6:0;;;;:::i;:::-;;;;28951:242;;;-1:-1:-1;29205:57:0;;-1:-1:-1;;;29205:57:0;;22685:2:1;29205:57:0;;;22667:21:1;22724:2;22704:18;;;22697:30;22763:34;22743:18;;;22736:62;-1:-1:-1;;;22814:18:1;;;22807:45;22869:19;;29205:57:0;22483:411:1;43817:191:0;43910:6;;;-1:-1:-1;;;;;43927:17:0;;;-1:-1:-1;;;;;;43927:17:0;;;;;;;43960:40;;43910:6;;;43927:17;43910:6;;43960:40;;43891:16;;43960:40;43880:128;43817:191;:::o;33455:104::-;33524:27;33534:2;33538:8;33524:27;;;;;;;;;;;;:9;:27::i;:::-;33455:104;;:::o;48159:224::-;48236:5;48223:9;:18;;48215:53;;;;-1:-1:-1;;;48215:53:0;;23101:2:1;48215:53:0;;;23083:21:1;23140:2;23120:18;;;23113:30;-1:-1:-1;;;23159:18:1;;;23152:52;23221:18;;48215:53:0;22899:346:1;48215:53:0;48295:5;48283:9;:17;48279:97;;;48325:10;48317:47;48346:17;48358:5;48346:9;:17;:::i;:::-;48317:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39278:985;39433:4;-1:-1:-1;;;;;39454:13:0;;3652:19;:23;39450:806;;39507:175;;-1:-1:-1;;;39507:175:0;;-1:-1:-1;;;;;39507:36:0;;;;;:175;;23322:10;;39601:4;;39628:7;;39658:5;;39507:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39507:175:0;;;;;;;;-1:-1:-1;;39507:175:0;;;;;;;;;;;;:::i;:::-;;;39486:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39869:6;:13;39886:1;39869:18;39865:321;;39912:109;;-1:-1:-1;;;39912:109:0;;;;;;;:::i;39865:321::-;40136:6;40130:13;40121:6;40117:2;40113:15;40106:38;39486:715;-1:-1:-1;;;;;;39746:55:0;-1:-1:-1;;;39746:55:0;;-1:-1:-1;39739:62:0;;39450:806;-1:-1:-1;40240:4:0;39450:806;39278:985;;;;;;:::o;29867:468::-;29985:13;30038:16;30046:7;33393:4;33427:12;-1:-1:-1;33417:22:0;33336:111;30038:16;30016:113;;;;-1:-1:-1;;;30016:113:0;;24200:2:1;30016:113:0;;;24182:21:1;24239:2;24219:18;;;24212:30;24278:34;24258:18;;;24251:62;-1:-1:-1;;;24329:18:1;;;24322:45;24384:19;;30016:113:0;23998:411:1;30016:113:0;30142:21;30166:10;:8;:10::i;:::-;30142:34;;30231:1;30213:7;30207:21;:25;:120;;;;;;;;;;;;;;;;;30276:7;30285:18;:7;:16;:18::i;:::-;30259:45;;;;;;;;;:::i;28314:266::-;28375:7;-1:-1:-1;;;;;28417:19:0;;28395:118;;;;-1:-1:-1;;;28395:118:0;;25091:2:1;28395:118:0;;;25073:21:1;25130:2;25110:18;;;25103:30;25169:34;25149:18;;;25142:62;-1:-1:-1;;;25220:18:1;;;25213:47;25277:19;;28395:118:0;24889:413:1;28395:118:0;-1:-1:-1;;;;;;28539:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28539:32:0;;-1:-1:-1;;;;;28539:32:0;;28314:266::o;21305:190::-;21430:4;21483;21454:25;21467:5;21474:4;21454:12;:25::i;:::-;:33;;21305:190;-1:-1:-1;;;;21305:190:0:o;33922:1400::-;34045:20;34068:12;-1:-1:-1;;;;;34099:16:0;;34091:62;;;;-1:-1:-1;;;34091:62:0;;25509:2:1;34091:62:0;;;25491:21:1;25548:2;25528:18;;;25521:30;25587:34;25567:18;;;25560:62;-1:-1:-1;;;25638:18:1;;;25631:31;25679:19;;34091:62:0;25307:397:1;34091:62:0;34298:21;34306:12;33393:4;33427:12;-1:-1:-1;33417:22:0;33336:111;34298:21;34297:22;34289:64;;;;-1:-1:-1;;;34289:64:0;;25911:2:1;34289:64:0;;;25893:21:1;25950:2;25930:18;;;25923:30;25989:31;25969:18;;;25962:59;26038:18;;34289:64:0;25709:353:1;34289:64:0;34384:12;34372:8;:24;;34364:71;;;;-1:-1:-1;;;34364:71:0;;26269:2:1;34364:71:0;;;26251:21:1;26308:2;26288:18;;;26281:30;26347:34;26327:18;;;26320:62;-1:-1:-1;;;26398:18:1;;;26391:32;26440:19;;34364:71:0;26067:398:1;34364:71:0;-1:-1:-1;;;;;34555:16:0;;34522:30;34555:16;;;:12;:16;;;;;;;;;34522:49;;;;;;;;;-1:-1:-1;;;;;34522:49:0;;;;;-1:-1:-1;;;34522:49:0;;;;;;;;;;;34601:135;;;;;;;;34627:19;;34522:49;;34601:135;;;34627:39;;34657:8;;34627:39;:::i;:::-;-1:-1:-1;;;;;34601:135:0;;;;;34716:8;34681:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34601:135:0;;;;;;-1:-1:-1;;;;;34582:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;34582:154:0;;;;;;;;;;;;34775:43;;;;;;;;;;;34801:15;34775:43;;;;;;;;34747:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34747:71:0;-1:-1:-1;;;;;;34747:71:0;;;;;;;;;;;;;;;;;;34759:12;;34879:325;34903:8;34899:1;:12;34879:325;;;34938:38;;34963:12;;-1:-1:-1;;;;;34938:38:0;;;34955:1;;34938:38;;34955:1;;34938:38;35017:59;35048:1;35052:2;35056:12;35070:5;35017:22;:59::i;:::-;34991:172;;;;-1:-1:-1;;;34991:172:0;;;;;;;:::i;:::-;35178:14;;;;:::i;:::-;;;;34913:3;;;;;:::i;:::-;;;;34879:325;;;-1:-1:-1;35216:12:0;:27;;;35254:60;32726:355;45599:100;45651:13;45684:7;45677:14;;;;;:::i;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;21857:701;21940:7;21983:4;21940:7;21998:523;22022:5;:12;22018:1;:16;21998:523;;;22056:20;22079:5;22085:1;22079:8;;;;;;;;:::i;:::-;;;;;;;22056:31;;22122:12;22106;:28;22102:408;;22259:44;;;;;;26759:19:1;;;26794:12;;;26787:28;;;26831:12;;22259:44:0;;;;;;;;;;;;22249:55;;;;;;22234:70;;22102:408;;;22449:44;;;;;;26759:19:1;;;26794:12;;;26787:28;;;26831:12;;22449:44:0;;;;;;;;;;;;22439:55;;;;;;22424:70;;22102:408;-1:-1:-1;22036:3:0;;;;:::i;:::-;;;;21998:523;;;-1:-1:-1;22538:12:0;21857:701;-1:-1:-1;;;21857:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:339;2630:2;2615:18;;2663:1;2652:13;;2642:144;;2708:10;2703:3;2699:20;2696:1;2689:31;2743:4;2740:1;2733:15;2771:4;2768:1;2761:15;2642:144;2795:25;;;2487:339;:::o;2831:328::-;2908:6;2916;2924;2977:2;2965:9;2956:7;2952:23;2948:32;2945:52;;;2993:1;2990;2983:12;2945:52;3016:29;3035:9;3016:29;:::i;:::-;3006:39;;3064:38;3098:2;3087:9;3083:18;3064:38;:::i;:::-;3054:48;;3149:2;3138:9;3134:18;3121:32;3111:42;;2831:328;;;;;:::o;3164:267::-;3234:6;3287:2;3275:9;3266:7;3262:23;3258:32;3255:52;;;3303:1;3300;3293:12;3255:52;3342:9;3329:23;3381:1;3374:5;3371:12;3361:40;;3397:1;3394;3387:12;3436:592;3507:6;3515;3568:2;3556:9;3547:7;3543:23;3539:32;3536:52;;;3584:1;3581;3574:12;3536:52;3624:9;3611:23;3653:18;3694:2;3686:6;3683:14;3680:34;;;3710:1;3707;3700:12;3680:34;3748:6;3737:9;3733:22;3723:32;;3793:7;3786:4;3782:2;3778:13;3774:27;3764:55;;3815:1;3812;3805:12;3764:55;3855:2;3842:16;3881:2;3873:6;3870:14;3867:34;;;3897:1;3894;3887:12;3867:34;3942:7;3937:2;3928:6;3924:2;3920:15;3916:24;3913:37;3910:57;;;3963:1;3960;3953:12;3910:57;3994:2;3986:11;;;;;4016:6;;-1:-1:-1;3436:592:1;;-1:-1:-1;;;;3436:592:1:o;4033:186::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4184:29;4203:9;4184:29;:::i;4589:347::-;4654:6;4662;4715:2;4703:9;4694:7;4690:23;4686:32;4683:52;;;4731:1;4728;4721:12;4683:52;4754:29;4773:9;4754:29;:::i;:::-;4744:39;;4833:2;4822:9;4818:18;4805:32;4880:5;4873:13;4866:21;4859:5;4856:32;4846:60;;4902:1;4899;4892:12;4846:60;4925:5;4915:15;;;4589:347;;;;;:::o;4941:127::-;5002:10;4997:3;4993:20;4990:1;4983:31;5033:4;5030:1;5023:15;5057:4;5054:1;5047:15;5073:1138;5168:6;5176;5184;5192;5245:3;5233:9;5224:7;5220:23;5216:33;5213:53;;;5262:1;5259;5252:12;5213:53;5285:29;5304:9;5285:29;:::i;:::-;5275:39;;5333:38;5367:2;5356:9;5352:18;5333:38;:::i;:::-;5323:48;;5418:2;5407:9;5403:18;5390:32;5380:42;;5473:2;5462:9;5458:18;5445:32;5496:18;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5591:6;5580:9;5576:22;5566:32;;5636:7;5629:4;5625:2;5621:13;5617:27;5607:55;;5658:1;5655;5648:12;5607:55;5694:2;5681:16;5716:2;5712;5709:10;5706:36;;;5722:18;;:::i;:::-;5797:2;5791:9;5765:2;5851:13;;-1:-1:-1;;5847:22:1;;;5871:2;5843:31;5839:40;5827:53;;;5895:18;;;5915:22;;;5892:46;5889:72;;;5941:18;;:::i;:::-;5981:10;5977:2;5970:22;6016:2;6008:6;6001:18;6056:7;6051:2;6046;6042;6038:11;6034:20;6031:33;6028:53;;;6077:1;6074;6067:12;6028:53;6133:2;6128;6124;6120:11;6115:2;6107:6;6103:15;6090:46;6178:1;6173:2;6168;6160:6;6156:15;6152:24;6145:35;6199:6;6189:16;;;;;;;5073:1138;;;;;;;:::o;6401:683::-;6496:6;6504;6512;6565:2;6553:9;6544:7;6540:23;6536:32;6533:52;;;6581:1;6578;6571:12;6533:52;6617:9;6604:23;6594:33;;6678:2;6667:9;6663:18;6650:32;6701:18;6742:2;6734:6;6731:14;6728:34;;;6758:1;6755;6748:12;6728:34;6796:6;6785:9;6781:22;6771:32;;6841:7;6834:4;6830:2;6826:13;6822:27;6812:55;;6863:1;6860;6853:12;6812:55;6903:2;6890:16;6929:2;6921:6;6918:14;6915:34;;;6945:1;6942;6935:12;6915:34;6998:7;6993:2;6983:6;6980:1;6976:14;6972:2;6968:23;6964:32;6961:45;6958:65;;;7019:1;7016;7009:12;6958:65;7050:2;7046;7042:11;7032:21;;7072:6;7062:16;;;;;6401:683;;;;;:::o;7089:260::-;7157:6;7165;7218:2;7206:9;7197:7;7193:23;7189:32;7186:52;;;7234:1;7231;7224:12;7186:52;7257:29;7276:9;7257:29;:::i;:::-;7247:39;;7305:38;7339:2;7328:9;7324:18;7305:38;:::i;:::-;7295:48;;7089:260;;;;;:::o;7536:380::-;7615:1;7611:12;;;;7658;;;7679:61;;7733:4;7725:6;7721:17;7711:27;;7679:61;7786:2;7778:6;7775:14;7755:18;7752:38;7749:161;;7832:10;7827:3;7823:20;7820:1;7813:31;7867:4;7864:1;7857:15;7895:4;7892:1;7885:15;7749:161;;7536:380;;;:::o;9164:356::-;9366:2;9348:21;;;9385:18;;;9378:30;9444:34;9439:2;9424:18;;9417:62;9511:2;9496:18;;9164:356::o;9928:127::-;9989:10;9984:3;9980:20;9977:1;9970:31;10020:4;10017:1;10010:15;10044:4;10041:1;10034:15;10060:135;10099:3;10120:17;;;10117:43;;10140:18;;:::i;:::-;-1:-1:-1;10187:1:1;10176:13;;10060:135::o;11377:390::-;11536:2;11525:9;11518:21;11575:6;11570:2;11559:9;11555:18;11548:34;11632:6;11624;11619:2;11608:9;11604:18;11591:48;11688:1;11659:22;;;11683:2;11655:31;;;11648:42;;;;11751:2;11730:15;;;-1:-1:-1;;11726:29:1;11711:45;11707:54;;11377:390;-1:-1:-1;11377:390:1:o;13261:128::-;13301:3;13332:1;13328:6;13325:1;13322:13;13319:39;;;13338:18;;:::i;:::-;-1:-1:-1;13374:9:1;;13261:128::o;13394:125::-;13434:4;13462:1;13459;13456:8;13453:34;;;13467:18;;:::i;:::-;-1:-1:-1;13504:9:1;;13394:125::o;13873:168::-;13913:7;13979:1;13975;13971:6;13967:14;13964:1;13961:21;13956:1;13949:9;13942:17;13938:45;13935:71;;;13986:18;;:::i;:::-;-1:-1:-1;14026:9:1;;13873:168::o;14680:415::-;14882:2;14864:21;;;14921:2;14901:18;;;14894:30;14960:34;14955:2;14940:18;;14933:62;-1:-1:-1;;;15026:2:1;15011:18;;15004:49;15085:3;15070:19;;14680:415::o;15100:443::-;15332:3;15370:6;15364:13;15386:53;15432:6;15427:3;15420:4;15412:6;15408:17;15386:53;:::i;:::-;-1:-1:-1;;;15461:16:1;;15486:22;;;-1:-1:-1;15535:1:1;15524:13;;15100:443;-1:-1:-1;15100:443:1:o;16936:127::-;16997:10;16992:3;16988:20;16985:1;16978:31;17028:4;17025:1;17018:15;17052:4;17049:1;17042:15;17068:120;17108:1;17134;17124:35;;17139:18;;:::i;:::-;-1:-1:-1;17173:9:1;;17068:120::o;17193:112::-;17225:1;17251;17241:35;;17256:18;;:::i;:::-;-1:-1:-1;17290:9:1;;17193:112::o;20662:246::-;20702:4;-1:-1:-1;;;;;20815:10:1;;;;20785;;20837:12;;;20834:38;;;20852:18;;:::i;:::-;20889:13;;20662:246;-1:-1:-1;;;20662:246:1:o;20913:253::-;20953:3;-1:-1:-1;;;;;21042:2:1;21039:1;21035:10;21072:2;21069:1;21065:10;21103:3;21099:2;21095:12;21090:3;21087:21;21084:47;;;21111:18;;:::i;:::-;21147:13;;20913:253;-1:-1:-1;;;;20913:253:1:o;22342:136::-;22381:3;22409:5;22399:39;;22418:18;;:::i;:::-;-1:-1:-1;;;22454:18:1;;22342:136::o;23250:489::-;-1:-1:-1;;;;;23519:15:1;;;23501:34;;23571:15;;23566:2;23551:18;;23544:43;23618:2;23603:18;;23596:34;;;23666:3;23661:2;23646:18;;23639:31;;;23444:4;;23687:46;;23713:19;;23705:6;23687:46;:::i;:::-;23679:54;23250:489;-1:-1:-1;;;;;;23250:489:1:o;23744:249::-;23813:6;23866:2;23854:9;23845:7;23841:23;23837:32;23834:52;;;23882:1;23879;23872:12;23834:52;23914:9;23908:16;23933:30;23957:5;23933:30;:::i;24414:470::-;24593:3;24631:6;24625:13;24647:53;24693:6;24688:3;24681:4;24673:6;24669:17;24647:53;:::i;:::-;24763:13;;24722:16;;;;24785:57;24763:13;24722:16;24819:4;24807:17;;24785:57;:::i;26470:127::-;26531:10;26526:3;26522:20;26519:1;26512:31;26562:4;26559:1;26552:15;26586:4;26583:1;26576:15

Swarm Source

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