Token NFT

 

Overview ERC-721

Total Supply:
1 NFT

Holders:
1 addresses
 
Balance
1 NFT
0xc03c79ce39fbae587a97cdcaa581d482818f97ce
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AbraxasSimple

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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.7.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 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/m00nm00se.sol



pragma solidity >=0.7.0 <0.9.0;




contract AbraxasSimple is ERC721Enumerable, Ownable 
{
    using Strings for string;
    uint256 public maxSupply = 10000;
    uint public presaleTokensSold = 1000;
    uint256 public price = 0; 
    uint public perAddressLimit = 10;
    bool public saleIsActive = true;
    bool public preSaleIsActive = false;
    bool public whitelist = true;
    bool public revealed = false;
    string private _baseTokenURI;
    string public notRevealedUri;
    bytes32 root;
    mapping(address => uint) public addressMintedBalance;

   

    constructor() ERC721("NFT", "NFT") {}

    function mint(uint256 _mintAmount, bytes32[] memory proof) external payable
    {
        require(!whitelist || verify(proof), "Address not whitelisted");
        require(msg.sender == tx.origin, "No transaction from smart contracts!");
        require(preSaleIsActive || saleIsActive, "Sale must be active to mint");
        require(_mintAmount > 0 && _mintAmount <= 10, "Max 10 NFTs per transaction");
        require(msg.value >= price * _mintAmount, "Not enough ETH for transaction");
        require(addressMintedBalance[msg.sender] + _mintAmount <= perAddressLimit, "Max NFT per address exceeded");
        
        for (uint i = 0; i < _mintAmount; i++) 
        {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }

        if (preSaleIsActive) presaleTokensSold++;
    }

    //case ethereum does something crazy
    function setPrice(uint256 newPrice) external onlyOwner 
    {
        price = newPrice;
    }

   

    function setPerAddressLimit(uint newLimit) external onlyOwner 
    {
        perAddressLimit = newLimit;
    }

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

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

    function flipSaleState() external onlyOwner 
    {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() external onlyOwner 
    {
        preSaleIsActive = !preSaleIsActive;
    }

    function flipWhitelistingState() external onlyOwner 
    {
        whitelist = !whitelist;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
       
    } 
    

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

    function verify(bytes32[] memory proof) internal view returns (bool) 
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, root, leaf);
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view
        override(ERC721Enumerable) returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    ////
    //URI management part
    ////
    
    function _setBaseURI(string memory baseURI) internal virtual {
        _baseTokenURI = baseURI;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }
  
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if(revealed == false) {
            return notRevealedUri;
        }

        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052612710600b556103e8600c556000600d55600a600e55600f805463ffffffff1916620100011790553480156200003957600080fd5b5060408051808201825260038082526213919560ea1b602080840182815285518087019096529285528401528151919291620000789160009162000107565b5080516200008e90600190602084019062000107565b505050620000ab620000a5620000b160201b60201c565b620000b5565b620001ea565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600181811c90821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b6126c980620001fa6000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063a475b5dd116100b6578063dab5f3401161007a578063dab5f34014610664578063e985e9c514610684578063eb8d2444146106cd578063f0325549146106e7578063f2c4ce1e146106fc578063f2fde38b1461071c57600080fd5b8063a475b5dd146105e6578063b88d4fde146105fb578063ba41b0c61461061b578063c87b56dd1461062e578063d5abeb011461064e57600080fd5b806393e59dc1116100fd57806393e59dc11461056657806395d89b4114610586578063969a55ec1461059b578063a035b1fe146105b0578063a22cb465146105c657600080fd5b80636352211e146104d357806370a08231146104f3578063715018a6146105135780638da5cb5b1461052857806391b7f5ed1461054657600080fd5b80632f745c59116101c7578063438b63001161018b578063438b63001461042f5780634f6ccce71461045c578063518302271461047c57806355f804b31461049d5780636007eeed146104bd57600080fd5b80632f745c59146103bc578063341c3304146103dc57806334918dfd146103f25780633ccfd60b1461040757806342842e0e1461040f57600080fd5b806318160ddd1161020e57806318160ddd1461031157806318cae269146103305780631f0234d81461035d57806323b872dd1461037c57806329f767e81461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063081c8c44146102da578063095ea7b3146102ef575b600080fd5b34801561025757600080fd5b5061026b610266366004612016565b61073c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561074d565b604051610277919061208b565b3480156102ae57600080fd5b506102c26102bd36600461209e565b6107df565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b50610295610806565b3480156102fb57600080fd5b5061030f61030a3660046120d3565b610894565b005b34801561031d57600080fd5b506008545b604051908152602001610277565b34801561033c57600080fd5b5061032261034b3660046120fd565b60136020526000908152604090205481565b34801561036957600080fd5b50600f5461026b90610100900460ff1681565b34801561038857600080fd5b5061030f610397366004612118565b6109af565b3480156103a857600080fd5b5061030f6103b736600461209e565b6109e0565b3480156103c857600080fd5b506103226103d73660046120d3565b6109ed565b3480156103e857600080fd5b50610322600c5481565b3480156103fe57600080fd5b5061030f610a83565b61030f610a9f565b34801561041b57600080fd5b5061030f61042a366004612118565b610b1b565b34801561043b57600080fd5b5061044f61044a3660046120fd565b610b36565b6040516102779190612154565b34801561046857600080fd5b5061032261047736600461209e565b610bd8565b34801561048857600080fd5b50600f5461026b906301000000900460ff1681565b3480156104a957600080fd5b5061030f6104b8366004612237565b610c6b565b3480156104c957600080fd5b50610322600e5481565b3480156104df57600080fd5b506102c26104ee36600461209e565b610c7c565b3480156104ff57600080fd5b5061032261050e3660046120fd565b610cdc565b34801561051f57600080fd5b5061030f610d62565b34801561053457600080fd5b50600a546001600160a01b03166102c2565b34801561055257600080fd5b5061030f61056136600461209e565b610d76565b34801561057257600080fd5b50600f5461026b9062010000900460ff1681565b34801561059257600080fd5b50610295610d83565b3480156105a757600080fd5b5061030f610d92565b3480156105bc57600080fd5b50610322600d5481565b3480156105d257600080fd5b5061030f6105e1366004612280565b610db9565b3480156105f257600080fd5b5061030f610dc8565b34801561060757600080fd5b5061030f6106163660046122bc565b610de5565b61030f610629366004612338565b610e1d565b34801561063a57600080fd5b5061029561064936600461209e565b6110ee565b34801561065a57600080fd5b50610322600b5481565b34801561067057600080fd5b5061030f61067f36600461209e565b611263565b34801561069057600080fd5b5061026b61069f3660046123ea565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106d957600080fd5b50600f5461026b9060ff1681565b3480156106f357600080fd5b5061030f611270565b34801561070857600080fd5b5061030f610717366004612237565b611295565b34801561072857600080fd5b5061030f6107373660046120fd565b6112b0565b600061074782611326565b92915050565b60606000805461075c9061241d565b80601f01602080910402602001604051908101604052809291908181526020018280546107889061241d565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ea8261134b565b506000908152600460205260409020546001600160a01b031690565b601180546108139061241d565b80601f016020809104026020016040519081016040528092919081815260200182805461083f9061241d565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b505050505081565b600061089f82610c7c565b9050806001600160a01b0316836001600160a01b031614156109125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061092e575061092e813361069f565b6109a05760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610909565b6109aa83836113aa565b505050565b6109b93382611418565b6109d55760405162461bcd60e51b815260040161090990612458565b6109aa838383611497565b6109e861163e565b600e55565b60006109f883610cdc565b8210610a5a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610909565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a8b61163e565b600f805460ff19811660ff90911615179055565b610aa761163e565b6000610abb600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b05576040519150601f19603f3d011682016040523d82523d6000602084013e610b0a565b606091505b5050905080610b1857600080fd5b50565b6109aa83838360405180602001604052806000815250610de5565b60606000610b4383610cdc565b905060008167ffffffffffffffff811115610b6057610b60612198565b604051908082528060200260200182016040528015610b89578160200160208202803683370190505b50905060005b82811015610bd057610ba185826109ed565b828281518110610bb357610bb36124a6565b602090810291909101015280610bc8816124d2565b915050610b8f565b509392505050565b6000610be360085490565b8210610c465760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610909565b60088281548110610c5957610c596124a6565b90600052602060002001549050919050565b610c7361163e565b610b1881611698565b6000818152600260205260408120546001600160a01b0316806107475760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610909565b60006001600160a01b038216610d465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610909565b506001600160a01b031660009081526003602052604090205490565b610d6a61163e565b610d7460006116ab565b565b610d7e61163e565b600d55565b60606001805461075c9061241d565b610d9a61163e565b600f805462ff0000198116620100009182900460ff1615909102179055565b610dc43383836116fd565b5050565b610dd061163e565b600f805463ff00000019166301000000179055565b610def3383611418565b610e0b5760405162461bcd60e51b815260040161090990612458565b610e17848484846117cc565b50505050565b600f5462010000900460ff161580610e395750610e39816117ff565b610e855760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610909565b333214610ee05760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b6064820152608401610909565b600f54610100900460ff1680610ef85750600f5460ff165b610f445760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610909565b600082118015610f555750600a8211155b610fa15760405162461bcd60e51b815260206004820152601b60248201527f4d6178203130204e46547320706572207472616e73616374696f6e00000000006044820152606401610909565b81600d54610faf91906124ed565b341015610ffe5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610909565b600e543360009081526013602052604090205461101c90849061250c565b111561106a5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610909565b60005b828110156110c457336000908152601360205260408120805491611090836124d2565b91905055506110b2336110a260085490565b6110ad90600161250c565b611847565b806110bc816124d2565b91505061106d565b50600f54610100900460ff1615610dc457600c80549060006110e5836124d2565b91905055505050565b6000818152600260205260409020546060906001600160a01b031661116d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610909565b600f546301000000900460ff16611210576011805461118b9061241d565b80601f01602080910402602001604051908101604052809291908181526020018280546111b79061241d565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b50505050509050919050565b600061121b83611861565b9050600081511161123b576040518060200160405280600081525061125c565b8060405160200161124c9190612524565b6040516020818303038152906040525b9392505050565b61126b61163e565b601255565b61127861163e565b600f805461ff001981166101009182900460ff1615909102179055565b61129d61163e565b8051610dc4906011906020840190611f67565b6112b861163e565b6001600160a01b03811661131d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610909565b610b18816116ab565b60006001600160e01b0319821663780e9d6360e01b14806107475750610747826118b1565b6000818152600260205260409020546001600160a01b0316610b185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610909565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113df82610c7c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061142483610c7c565b9050806001600160a01b0316846001600160a01b0316148061146b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061148f5750836001600160a01b0316611484846107df565b6001600160a01b0316145b949350505050565b826001600160a01b03166114aa82610c7c565b6001600160a01b03161461150e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610909565b6001600160a01b0382166115705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610909565b61157b838383611901565b6115866000826113aa565b6001600160a01b03831660009081526003602052604081208054600192906115af90849061254d565b90915550506001600160a01b03821660009081526003602052604081208054600192906115dd90849061250c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610d745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610909565b8051610dc4906010906020840190611f67565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561175f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610909565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117d7848484611497565b6117e38484848461190c565b610e175760405162461bcd60e51b815260040161090990612564565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061125c8360125483611a0a565b610dc4828260405180602001604052806000815250611a20565b606061186c8261134b565b6000611876611a53565b90506000815111611896576040518060200160405280600081525061125c565b806118a084611a62565b60405160200161124c9291906125b6565b60006001600160e01b031982166380ac58cd60e01b14806118e257506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b0319831614610747565b6109aa838383611b60565b60006001600160a01b0384163b156119ff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119509033908990889088906004016125e5565b6020604051808303816000875af192505050801561198b575060408051601f3d908101601f1916820190925261198891810190612622565b60015b6119e5573d8080156119b9576040519150601f19603f3d011682016040523d82523d6000602084013e6119be565b606091505b5080516119dd5760405162461bcd60e51b815260040161090990612564565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061148f565b506001949350505050565b600082611a178584611c18565b14949350505050565b611a2a8383611c5d565b611a37600084848461190c565b6109aa5760405162461bcd60e51b815260040161090990612564565b60606010805461075c9061241d565b606081611a865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ab05780611a9a816124d2565b9150611aa99050600a83612655565b9150611a8a565b60008167ffffffffffffffff811115611acb57611acb612198565b6040519080825280601f01601f191660200182016040528015611af5576020820181803683370190505b5090505b841561148f57611b0a60018361254d565b9150611b17600a86612669565b611b2290603061250c565b60f81b818381518110611b3757611b376124a6565b60200101906001600160f81b031916908160001a905350611b59600a86612655565b9450611af9565b6001600160a01b038316611bbb57611bb681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bde565b816001600160a01b0316836001600160a01b031614611bde57611bde8382611dab565b6001600160a01b038216611bf5576109aa81611e48565b826001600160a01b0316826001600160a01b0316146109aa576109aa8282611ef7565b600081815b8451811015610bd057611c4982868381518110611c3c57611c3c6124a6565b6020026020010151611f3b565b915080611c55816124d2565b915050611c1d565b6001600160a01b038216611cb35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610909565b6000818152600260205260409020546001600160a01b031615611d185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610909565b611d2460008383611901565b6001600160a01b0382166000908152600360205260408120805460019290611d4d90849061250c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611db884610cdc565b611dc2919061254d565b600083815260076020526040902054909150808214611e15576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e5a9060019061254d565b60008381526009602052604081205460088054939450909284908110611e8257611e826124a6565b906000526020600020015490508060088381548110611ea357611ea36124a6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611edb57611edb61267d565b6001900381819060005260206000200160009055905550505050565b6000611f0283610cdc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000818310611f5757600082815260208490526040902061125c565b5060009182526020526040902090565b828054611f739061241d565b90600052602060002090601f016020900481019282611f955760008555611fdb565b82601f10611fae57805160ff1916838001178555611fdb565b82800160010185558215611fdb579182015b82811115611fdb578251825591602001919060010190611fc0565b50611fe7929150611feb565b5090565b5b80821115611fe75760008155600101611fec565b6001600160e01b031981168114610b1857600080fd5b60006020828403121561202857600080fd5b813561125c81612000565b60005b8381101561204e578181015183820152602001612036565b83811115610e175750506000910152565b60008151808452612077816020860160208601612033565b601f01601f19169290920160200192915050565b60208152600061125c602083018461205f565b6000602082840312156120b057600080fd5b5035919050565b80356001600160a01b03811681146120ce57600080fd5b919050565b600080604083850312156120e657600080fd5b6120ef836120b7565b946020939093013593505050565b60006020828403121561210f57600080fd5b61125c826120b7565b60008060006060848603121561212d57600080fd5b612136846120b7565b9250612144602085016120b7565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561218c57835183529284019291840191600101612170565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121d7576121d7612198565b604052919050565b600067ffffffffffffffff8311156121f9576121f9612198565b61220c601f8401601f19166020016121ae565b905082815283838301111561222057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561224957600080fd5b813567ffffffffffffffff81111561226057600080fd5b8201601f8101841361227157600080fd5b61148f848235602084016121df565b6000806040838503121561229357600080fd5b61229c836120b7565b9150602083013580151581146122b157600080fd5b809150509250929050565b600080600080608085870312156122d257600080fd5b6122db856120b7565b93506122e9602086016120b7565b925060408501359150606085013567ffffffffffffffff81111561230c57600080fd5b8501601f8101871361231d57600080fd5b61232c878235602084016121df565b91505092959194509250565b6000806040838503121561234b57600080fd5b8235915060208084013567ffffffffffffffff8082111561236b57600080fd5b818601915086601f83011261237f57600080fd5b81358181111561239157612391612198565b8060051b91506123a28483016121ae565b81815291830184019184810190898411156123bc57600080fd5b938501935b838510156123da578435825293850193908501906123c1565b8096505050505050509250929050565b600080604083850312156123fd57600080fd5b612406836120b7565b9150612414602084016120b7565b90509250929050565b600181811c9082168061243157607f821691505b6020821081141561245257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124e6576124e66124bc565b5060010190565b6000816000190483118215151615612507576125076124bc565b500290565b6000821982111561251f5761251f6124bc565b500190565b60008251612536818460208701612033565b64173539b7b760d91b920191825250600501919050565b60008282101561255f5761255f6124bc565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516125c8818460208801612033565b8351908301906125dc818360208801612033565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126189083018461205f565b9695505050505050565b60006020828403121561263457600080fd5b815161125c81612000565b634e487b7160e01b600052601260045260246000fd5b6000826126645761266461263f565b500490565b6000826126785761267861263f565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ad42350e6bef8ca9239ac9704131624c0ad0bf50d4d9a993995a8784eb074e9664736f6c634300080b0033

Deployed ByteCode Sourcemap

54964:4411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58324:177;;;;;;;;;;-1:-1:-1;58324:177:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;58324:177:0;;;;;;;;35469:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36982:171::-;;;;;;;;;;-1:-1:-1;36982:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;36982:171:0;1528:203:1;55394:28:0;;;;;;;;;;;;;:::i;36499:417::-;;;;;;;;;;-1:-1:-1;36499:417:0;;;;;:::i;:::-;;:::i;:::-;;49375:113;;;;;;;;;;-1:-1:-1;49463:10:0;:17;49375:113;;;2319:25:1;;;2307:2;2292:18;49375:113:0;2173:177:1;55448:52:0;;;;;;;;;;-1:-1:-1;55448:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;55247:35;;;;;;;;;;-1:-1:-1;55247:35:0;;;;;;;;;;;37682:336;;;;;;;;;;-1:-1:-1;37682:336:0;;;;;:::i;:::-;;:::i;56578:113::-;;;;;;;;;;-1:-1:-1;56578:113:0;;;;;:::i;:::-;;:::i;49043:256::-;;;;;;;;;;-1:-1:-1;49043:256:0;;;;;:::i;:::-;;:::i;55095:36::-;;;;;;;;;;;;;;;;56910:97;;;;;;;;;;;;;:::i;57627:164::-;;;:::i;38089:185::-;;;;;;;;;;-1:-1:-1;38089:185:0;;;;;:::i;:::-;;:::i;57236:375::-;;;;;;;;;;-1:-1:-1;57236:375:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49565:233::-;;;;;;;;;;-1:-1:-1;49565:233:0;;;;;:::i;:::-;;:::i;55324:28::-;;;;;;;;;;-1:-1:-1;55324:28:0;;;;;;;;;;;58795:101;;;;;;;;;;-1:-1:-1;58795:101:0;;;;;:::i;:::-;;:::i;55170:32::-;;;;;;;;;;;;;;;;35180:222;;;;;;;;;;-1:-1:-1;35180:222:0;;;;;:::i;:::-;;:::i;34911:207::-;;;;;;;;;;-1:-1:-1;34911:207:0;;;;;:::i;:::-;;:::i;13998:103::-;;;;;;;;;;;;;:::i;13350:87::-;;;;;;;;;;-1:-1:-1;13423:6:0;;-1:-1:-1;;;;;13423:6:0;13350:87;;56467:96;;;;;;;;;;-1:-1:-1;56467:96:0;;;;;:::i;:::-;;:::i;55289:28::-;;;;;;;;;;-1:-1:-1;55289:28:0;;;;;;;;;;;35638:104;;;;;;;;;;;;;:::i;57129:99::-;;;;;;;;;;;;;:::i;55138:24::-;;;;;;;;;;;;;;;;37225:155;;;;;;;;;;-1:-1:-1;37225:155:0;;;;;:::i;:::-;;:::i;56833:69::-;;;;;;;;;;;;;:::i;38345:323::-;;;;;;;;;;-1:-1:-1;38345:323:0;;;;;:::i;:::-;;:::i;55561:856::-;;;;;;:::i;:::-;;:::i;58906:466::-;;;;;;;;;;-1:-1:-1;58906:466:0;;;;;:::i;:::-;;:::i;55056:32::-;;;;;;;;;;;;;;;;57806:87;;;;;;;;;;-1:-1:-1;57806:87:0;;;;;:::i;:::-;;:::i;37451:164::-;;;;;;;;;;-1:-1:-1;37451:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37572:25:0;;;37548:4;37572:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37451:164;55209:31;;;;;;;;;;-1:-1:-1;55209:31:0;;;;;;;;57015:106;;;;;;;;;;;;;:::i;56699:126::-;;;;;;;;;;-1:-1:-1;56699:126:0;;;;;:::i;:::-;;:::i;14256:201::-;;;;;;;;;;-1:-1:-1;14256:201:0;;;;;:::i;:::-;;:::i;58324:177::-;58428:4;58457:36;58481:11;58457:23;:36::i;:::-;58450:43;58324:177;-1:-1:-1;;58324:177:0:o;35469:100::-;35523:13;35556:5;35549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35469:100;:::o;36982:171::-;37058:7;37078:23;37093:7;37078:14;:23::i;:::-;-1:-1:-1;37121:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37121:24:0;;36982:171::o;55394:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36499:417::-;36580:13;36596:23;36611:7;36596:14;:23::i;:::-;36580:39;;36644:5;-1:-1:-1;;;;;36638:11:0;:2;-1:-1:-1;;;;;36638:11:0;;;36630:57;;;;-1:-1:-1;;;36630:57:0;;7876:2:1;36630:57:0;;;7858:21:1;7915:2;7895:18;;;7888:30;7954:34;7934:18;;;7927:62;-1:-1:-1;;;8005:18:1;;;7998:31;8046:19;;36630:57:0;;;;;;;;;11981:10;-1:-1:-1;;;;;36722:21:0;;;;:62;;-1:-1:-1;36747:37:0;36764:5;11981:10;37451:164;:::i;36747:37::-;36700:174;;;;-1:-1:-1;;;36700:174:0;;8278:2:1;36700:174:0;;;8260:21:1;8317:2;8297:18;;;8290:30;8356:34;8336:18;;;8329:62;8427:32;8407:18;;;8400:60;8477:19;;36700:174:0;8076:426:1;36700:174:0;36887:21;36896:2;36900:7;36887:8;:21::i;:::-;36569:347;36499:417;;:::o;37682:336::-;37877:41;11981:10;37910:7;37877:18;:41::i;:::-;37869:100;;;;-1:-1:-1;;;37869:100:0;;;;;;;:::i;:::-;37982:28;37992:4;37998:2;38002:7;37982:9;:28::i;56578:113::-;13236:13;:11;:13::i;:::-;56657:15:::1;:26:::0;56578:113::o;49043:256::-;49140:7;49176:23;49193:5;49176:16;:23::i;:::-;49168:5;:31;49160:87;;;;-1:-1:-1;;;49160:87:0;;9124:2:1;49160:87:0;;;9106:21:1;9163:2;9143:18;;;9136:30;9202:34;9182:18;;;9175:62;-1:-1:-1;;;9253:18:1;;;9246:41;9304:19;;49160:87:0;8922:407:1;49160:87:0;-1:-1:-1;;;;;;49265:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;49043:256::o;56910:97::-;13236:13;:11;:13::i;:::-;56987:12:::1;::::0;;-1:-1:-1;;56971:28:0;::::1;56987:12;::::0;;::::1;56986:13;56971:28;::::0;;56910:97::o;57627:164::-;13236:13;:11;:13::i;:::-;57684:7:::1;57705;13423:6:::0;;-1:-1:-1;;;;;13423:6:0;;13350:87;57705:7:::1;-1:-1:-1::0;;;;;57697:21:0::1;57726;57697:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57683:69;;;57771:2;57763:11;;;::::0;::::1;;57672:119;57627:164::o:0;38089:185::-;38227:39;38244:4;38250:2;38254:7;38227:39;;;;;;;;;;;;:16;:39::i;57236:375::-;57296:16;57330:23;57356:17;57366:6;57356:9;:17::i;:::-;57330:43;;57384:25;57426:15;57412:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57412:30:0;;57384:58;;57468:9;57463:113;57483:15;57479:1;:19;57463:113;;;57534:30;57554:6;57562:1;57534:19;:30::i;:::-;57520:8;57529:1;57520:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;57500:3;;;;:::i;:::-;;;;57463:113;;;-1:-1:-1;57595:8:0;57236:375;-1:-1:-1;;;57236:375:0:o;49565:233::-;49640:7;49676:30;49463:10;:17;;49375:113;49676:30;49668:5;:38;49660:95;;;;-1:-1:-1;;;49660:95:0;;10150:2:1;49660:95:0;;;10132:21:1;10189:2;10169:18;;;10162:30;10228:34;10208:18;;;10201:62;-1:-1:-1;;;10279:18:1;;;10272:42;10331:19;;49660:95:0;9948:408:1;49660:95:0;49773:10;49784:5;49773:17;;;;;;;;:::i;:::-;;;;;;;;;49766:24;;49565:233;;;:::o;58795:101::-;13236:13;:11;:13::i;:::-;58868:20:::1;58880:7;58868:11;:20::i;35180:222::-:0;35252:7;35288:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35288:16:0;35323:19;35315:56;;;;-1:-1:-1;;;35315:56:0;;10563:2:1;35315:56:0;;;10545:21:1;10602:2;10582:18;;;10575:30;-1:-1:-1;;;10621:18:1;;;10614:54;10685:18;;35315:56:0;10361:348:1;34911:207:0;34983:7;-1:-1:-1;;;;;35011:19:0;;35003:73;;;;-1:-1:-1;;;35003:73:0;;10916:2:1;35003:73:0;;;10898:21:1;10955:2;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;-1:-1:-1;;;11045:18:1;;;11038:39;11094:19;;35003:73:0;10714:405:1;35003:73:0;-1:-1:-1;;;;;;35094:16:0;;;;;:9;:16;;;;;;;34911:207::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;56467:96::-;13236:13;:11;:13::i;:::-;56539:5:::1;:16:::0;56467:96::o;35638:104::-;35694:13;35727:7;35720:14;;;;;:::i;57129:99::-;13236:13;:11;:13::i;:::-;57211:9:::1;::::0;;-1:-1:-1;;57198:22:0;::::1;57211:9:::0;;;;::::1;;;57210:10;57198:22:::0;;::::1;;::::0;;57129:99::o;37225:155::-;37320:52;11981:10;37353:8;37363;37320:18;:52::i;:::-;37225:155;;:::o;56833:69::-;13236:13;:11;:13::i;:::-;56879:8:::1;:15:::0;;-1:-1:-1;;56879:15:0::1;::::0;::::1;::::0;;56833:69::o;38345:323::-;38519:41;11981:10;38552:7;38519:18;:41::i;:::-;38511:100;;;;-1:-1:-1;;;38511:100:0;;;;;;;:::i;:::-;38622:38;38636:4;38642:2;38646:7;38655:4;38622:13;:38::i;:::-;38345:323;;;;:::o;55561:856::-;55662:9;;;;;;;55661:10;;:27;;;55675:13;55682:5;55675:6;:13::i;:::-;55653:63;;;;-1:-1:-1;;;55653:63:0;;11326:2:1;55653:63:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:25;11384:18;;;11377:53;11447:18;;55653:63:0;11124:347:1;55653:63:0;55735:10;55749:9;55735:23;55727:72;;;;-1:-1:-1;;;55727:72:0;;11678:2:1;55727:72:0;;;11660:21:1;11717:2;11697:18;;;11690:30;11756:34;11736:18;;;11729:62;-1:-1:-1;;;11807:18:1;;;11800:34;11851:19;;55727:72:0;11476:400:1;55727:72:0;55818:15;;;;;;;;:31;;-1:-1:-1;55837:12:0;;;;55818:31;55810:71;;;;-1:-1:-1;;;55810:71:0;;12083:2:1;55810:71:0;;;12065:21:1;12122:2;12102:18;;;12095:30;12161:29;12141:18;;;12134:57;12208:18;;55810:71:0;11881:351:1;55810:71:0;55914:1;55900:11;:15;:36;;;;;55934:2;55919:11;:17;;55900:36;55892:76;;;;-1:-1:-1;;;55892:76:0;;12439:2:1;55892:76:0;;;12421:21:1;12478:2;12458:18;;;12451:30;12517:29;12497:18;;;12490:57;12564:18;;55892:76:0;12237:351:1;55892:76:0;56008:11;56000:5;;:19;;;;:::i;:::-;55987:9;:32;;55979:75;;;;-1:-1:-1;;;55979:75:0;;12968:2:1;55979:75:0;;;12950:21:1;13007:2;12987:18;;;12980:30;13046:32;13026:18;;;13019:60;13096:18;;55979:75:0;12766:354:1;55979:75:0;56123:15;;56094:10;56073:32;;;;:20;:32;;;;;;:46;;56108:11;;56073:46;:::i;:::-;:65;;56065:106;;;;-1:-1:-1;;;56065:106:0;;13460:2:1;56065:106:0;;;13442:21:1;13499:2;13479:18;;;13472:30;13538;13518:18;;;13511:58;13586:18;;56065:106:0;13258:352:1;56065:106:0;56197:6;56192:165;56213:11;56209:1;:15;56192:165;;;56277:10;56256:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;56305:40;56315:10;56327:13;49463:10;:17;;49375:113;56327:13;:17;;56343:1;56327:17;:::i;:::-;56305:9;:40::i;:::-;56226:3;;;;:::i;:::-;;;;56192:165;;;-1:-1:-1;56373:15:0;;;;;;;56369:40;;;56390:17;:19;;;:17;:19;;;:::i;:::-;;;;;;55561:856;;:::o;58906:466::-;40240:4;40264:16;;;:7;:16;;;;;;58979:13;;-1:-1:-1;;;;;40264:16:0;59010:113;;;;-1:-1:-1;;;59010:113:0;;13817:2:1;59010:113:0;;;13799:21:1;13856:2;13836:18;;;13829:30;13895:34;13875:18;;;13868:62;-1:-1:-1;;;13946:18:1;;;13939:45;14001:19;;59010:113:0;13615:411:1;59010:113:0;59139:8;;;;;;;59136:70;;59180:14;59173:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58906:466;;;:::o;59136:70::-;59218:23;59244;59259:7;59244:14;:23::i;:::-;59218:49;;59311:1;59291:9;59285:23;:27;:79;;;;;;;;;;;;;;;;;59339:9;59322:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;59285:79;59278:86;58906:466;-1:-1:-1;;;58906:466:0:o;57806:87::-;13236:13;:11;:13::i;:::-;57873:4:::1;:12:::0;57806:87::o;57015:106::-;13236:13;:11;:13::i;:::-;57098:15:::1;::::0;;-1:-1:-1;;57079:34:0;::::1;57098:15;::::0;;;::::1;;;57097:16;57079:34:::0;;::::1;;::::0;;57015:106::o;56699:126::-;13236:13;:11;:13::i;:::-;56785:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14256:201::-:0;13236:13;:11;:13::i;:::-;-1:-1:-1;;;;;14345:22:0;::::1;14337:73;;;::::0;-1:-1:-1;;;14337:73:0;;14681:2:1;14337:73:0::1;::::0;::::1;14663:21:1::0;14720:2;14700:18;;;14693:30;14759:34;14739:18;;;14732:62;-1:-1:-1;;;14810:18:1;;;14803:36;14856:19;;14337:73:0::1;14479:402:1::0;14337:73:0::1;14421:28;14440:8;14421:18;:28::i;48735:224::-:0;48837:4;-1:-1:-1;;;;;;48861:50:0;;-1:-1:-1;;;48861:50:0;;:90;;;48915:36;48939:11;48915:23;:36::i;44957:135::-;40240:4;40264:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40264:16:0;45031:53;;;;-1:-1:-1;;;45031:53:0;;10563:2:1;45031:53:0;;;10545:21:1;10602:2;10582:18;;;10575:30;-1:-1:-1;;;10621:18:1;;;10614:54;10685:18;;45031:53:0;10361:348:1;44236:174:0;44311:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44311:29:0;-1:-1:-1;;;;;44311:29:0;;;;;;;;:24;;44365:23;44311:24;44365:14;:23::i;:::-;-1:-1:-1;;;;;44356:46:0;;;;;;;;;;;44236:174;;:::o;40469:264::-;40562:4;40579:13;40595:23;40610:7;40595:14;:23::i;:::-;40579:39;;40648:5;-1:-1:-1;;;;;40637:16:0;:7;-1:-1:-1;;;;;40637:16:0;;:52;;;-1:-1:-1;;;;;;37572:25:0;;;37548:4;37572:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40657:32;40637:87;;;;40717:7;-1:-1:-1;;;;;40693:31:0;:20;40705:7;40693:11;:20::i;:::-;-1:-1:-1;;;;;40693:31:0;;40637:87;40629:96;40469:264;-1:-1:-1;;;;40469:264:0:o;43492:625::-;43651:4;-1:-1:-1;;;;;43624:31:0;:23;43639:7;43624:14;:23::i;:::-;-1:-1:-1;;;;;43624:31:0;;43616:81;;;;-1:-1:-1;;;43616:81:0;;15088:2:1;43616:81:0;;;15070:21:1;15127:2;15107:18;;;15100:30;15166:34;15146:18;;;15139:62;-1:-1:-1;;;15217:18:1;;;15210:35;15262:19;;43616:81:0;14886:401:1;43616:81:0;-1:-1:-1;;;;;43716:16:0;;43708:65;;;;-1:-1:-1;;;43708:65:0;;15494:2:1;43708:65:0;;;15476:21:1;15533:2;15513:18;;;15506:30;15572:34;15552:18;;;15545:62;-1:-1:-1;;;15623:18:1;;;15616:34;15667:19;;43708:65:0;15292:400:1;43708:65:0;43786:39;43807:4;43813:2;43817:7;43786:20;:39::i;:::-;43890:29;43907:1;43911:7;43890:8;:29::i;:::-;-1:-1:-1;;;;;43932:15:0;;;;;;:9;:15;;;;;:20;;43951:1;;43932:15;:20;;43951:1;;43932:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43963:13:0;;;;;;:9;:13;;;;;:18;;43980:1;;43963:13;:18;;43980:1;;43963:18;:::i;:::-;;;;-1:-1:-1;;43992:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43992:21:0;-1:-1:-1;;;;;43992:21:0;;;;;;;;;44031:27;;43992:16;;44031:27;;;;;;;36569:347;36499:417;;:::o;13515:132::-;13423:6;;-1:-1:-1;;;;;13423:6:0;11981:10;13579:23;13571:68;;;;-1:-1:-1;;;13571:68:0;;16029:2:1;13571:68:0;;;16011:21:1;;;16048:18;;;16041:30;16107:34;16087:18;;;16080:62;16159:18;;13571:68:0;15827:356:1;58566:103:0;58638:23;;;;:13;;:23;;;;;:::i;14617:191::-;14710:6;;;-1:-1:-1;;;;;14727:17:0;;;-1:-1:-1;;;;;;14727:17:0;;;;;;;14760:40;;14710:6;;;14727:17;14710:6;;14760:40;;14691:16;;14760:40;14680:128;14617:191;:::o;44553:315::-;44708:8;-1:-1:-1;;;;;44699:17:0;:5;-1:-1:-1;;;;;44699:17:0;;;44691:55;;;;-1:-1:-1;;;44691:55:0;;16390:2:1;44691:55:0;;;16372:21:1;16429:2;16409:18;;;16402:30;16468:27;16448:18;;;16441:55;16513:18;;44691:55:0;16188:349:1;44691:55:0;-1:-1:-1;;;;;44757:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44757:46:0;;;;;;;;;;44819:41;;540::1;;;44819::0;;513:18:1;44819:41:0;;;;;;;44553:315;;;:::o;39549:313::-;39705:28;39715:4;39721:2;39725:7;39705:9;:28::i;:::-;39752:47;39775:4;39781:2;39785:7;39794:4;39752:22;:47::i;:::-;39744:110;;;;-1:-1:-1;;;39744:110:0;;;;;;;:::i;57901:203::-;58012:28;;-1:-1:-1;;58029:10:0;17110:2:1;17106:15;17102:53;58012:28:0;;;17090:66:1;57964:4:0;;;;17172:12:1;;58012:28:0;;;;;;;;;;;;58002:39;;;;;;57987:54;;58059:37;58078:5;58085:4;;58091;58059:18;:37::i;41075:110::-;41151:26;41161:2;41165:7;41151:26;;;;;;;;;;;;:9;:26::i;35813:281::-;35886:13;35912:23;35927:7;35912:14;:23::i;:::-;35948:21;35972:10;:8;:10::i;:::-;35948:34;;36024:1;36006:7;36000:21;:25;:86;;;;;;;;;;;;;;;;;36052:7;36061:18;:7;:16;:18::i;:::-;36035:45;;;;;;;;;:::i;34542:305::-;34644:4;-1:-1:-1;;;;;;34681:40:0;;-1:-1:-1;;;34681:40:0;;:105;;-1:-1:-1;;;;;;;34738:48:0;;-1:-1:-1;;;34738:48:0;34681:105;:158;;;-1:-1:-1;;;;;;;;;;26313:40:0;;;34803:36;26204:157;58116:196;58259:45;58286:4;58292:2;58296:7;58259:26;:45::i;45656:853::-;45810:4;-1:-1:-1;;;;;45831:13:0;;16343:19;:23;45827:675;;45867:71;;-1:-1:-1;;;45867:71:0;;-1:-1:-1;;;;;45867:36:0;;;;;:71;;11981:10;;45918:4;;45924:7;;45933:4;;45867:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45867:71:0;;;;;;;;-1:-1:-1;;45867:71:0;;;;;;;;;;;;:::i;:::-;;;45863:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46108:13:0;;46104:328;;46151:60;;-1:-1:-1;;;46151:60:0;;;;;;;:::i;46104:328::-;46382:6;46376:13;46367:6;46363:2;46359:15;46352:38;45863:584;-1:-1:-1;;;;;;45989:51:0;-1:-1:-1;;;45989:51:0;;-1:-1:-1;45982:58:0;;45827:675;-1:-1:-1;46486:4:0;45656:853;;;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;41412:319::-;41541:18;41547:2;41551:7;41541:5;:18::i;:::-;41592:53;41623:1;41627:2;41631:7;41640:4;41592:22;:53::i;:::-;41570:153;;;;-1:-1:-1;;;41570:153:0;;;;;;;:::i;58677:106::-;58729:13;58762;58755:20;;;;;:::i;9155:723::-;9211:13;9432:10;9428:53;;-1:-1:-1;;9459:10:0;;;;;;;;;;;;-1:-1:-1;;;9459:10:0;;;;;9155:723::o;9428:53::-;9506:5;9491:12;9547:78;9554:9;;9547:78;;9580:8;;;;:::i;:::-;;-1:-1:-1;9603:10:0;;-1:-1:-1;9611:2:0;9603:10;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9657:17:0;;9635:39;;9685:154;9692:10;;9685:154;;9719:11;9729:1;9719:11;;:::i;:::-;;-1:-1:-1;9788:10:0;9796:2;9788:5;:10;:::i;:::-;9775:24;;:2;:24;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9745:56:0;;;;;;;;-1:-1:-1;9816:11:0;9825:2;9816:11;;:::i;:::-;;;9685:154;;50411:589;-1:-1:-1;;;;;50617:18:0;;50613:187;;50652:40;50684:7;51827:10;:17;;51800:24;;;;:15;:24;;;;;:44;;;51855:24;;;;;;;;;;;;51723:164;50652:40;50613:187;;;50722:2;-1:-1:-1;;;;;50714:10:0;:4;-1:-1:-1;;;;;50714:10:0;;50710:90;;50741:47;50774:4;50780:7;50741:32;:47::i;:::-;-1:-1:-1;;;;;50814:16:0;;50810:183;;50847:45;50884:7;50847:36;:45::i;50810:183::-;50920:4;-1:-1:-1;;;;;50914:10:0;:2;-1:-1:-1;;;;;50914:10:0;;50910:83;;50941:40;50969:2;50973:7;50941:27;:40::i;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;42067:439;-1:-1:-1;;;;;42147:16:0;;42139:61;;;;-1:-1:-1;;;42139:61:0;;18994:2:1;42139:61:0;;;18976:21:1;;;19013:18;;;19006:30;19072:34;19052:18;;;19045:62;19124:18;;42139:61:0;18792:356:1;42139:61:0;40240:4;40264:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40264:16:0;:30;42211:58;;;;-1:-1:-1;;;42211:58:0;;19355:2:1;42211:58:0;;;19337:21:1;19394:2;19374:18;;;19367:30;19433;19413:18;;;19406:58;19481:18;;42211:58:0;19153:352:1;42211:58:0;42282:45;42311:1;42315:2;42319:7;42282:20;:45::i;:::-;-1:-1:-1;;;;;42340:13:0;;;;;;:9;:13;;;;;:18;;42357:1;;42340:13;:18;;42357:1;;42340:18;:::i;:::-;;;;-1:-1:-1;;42369:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42369:21:0;-1:-1:-1;;;;;42369:21:0;;;;;;;;42408:33;;42369:16;;;42408:33;;42369:16;;42408:33;37225:155;;:::o;52514:988::-;52780:22;52830:1;52805:22;52822:4;52805:16;:22::i;:::-;:26;;;;:::i;:::-;52842:18;52863:26;;;:17;:26;;;;;;52780:51;;-1:-1:-1;52996:28:0;;;52992:328;;-1:-1:-1;;;;;53063:18:0;;53041:19;53063:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53114:30;;;;;;:44;;;53231:30;;:17;:30;;;;;:43;;;52992:328;-1:-1:-1;53416:26:0;;;;:17;:26;;;;;;;;53409:33;;;-1:-1:-1;;;;;53460:18:0;;;;;:12;:18;;;;;:34;;;;;;;53453:41;52514:988::o;53797:1079::-;54075:10;:17;54050:22;;54075:21;;54095:1;;54075:21;:::i;:::-;54107:18;54128:24;;;:15;:24;;;;;;54501:10;:26;;54050:46;;-1:-1:-1;54128:24:0;;54050:46;;54501:26;;;;;;:::i;:::-;;;;;;;;;54479:48;;54565:11;54540:10;54551;54540:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54645:28;;;:15;:28;;;;;;;:41;;;54817:24;;;;;54810:31;54852:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53868:1008;;;53797:1079;:::o;51301:221::-;51386:14;51403:20;51420:2;51403:16;:20::i;:::-;-1:-1:-1;;;;;51434:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51479:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51301:221:0:o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;-1:-1:-1;8518:13:0;8612:15;;;8648:4;8641:15;8695:4;8679:21;;;8293:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:275;3719:2;3713:9;3784:2;3765:13;;-1:-1:-1;;3761:27:1;3749:40;;3819:18;3804:34;;3840:22;;;3801:62;3798:88;;;3866:18;;:::i;:::-;3902:2;3895:22;3648:275;;-1:-1:-1;3648:275:1:o;3928:407::-;3993:5;4027:18;4019:6;4016:30;4013:56;;;4049:18;;:::i;:::-;4087:57;4132:2;4111:15;;-1:-1:-1;;4107:29:1;4138:4;4103:40;4087:57;:::i;:::-;4078:66;;4167:6;4160:5;4153:21;4207:3;4198:6;4193:3;4189:16;4186:25;4183:45;;;4224:1;4221;4214:12;4183:45;4273:6;4268:3;4261:4;4254:5;4250:16;4237:43;4327:1;4320:4;4311:6;4304:5;4300:18;4296:29;4289:40;3928:407;;;;;:::o;4340:451::-;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4518:9;4505:23;4551:18;4543:6;4540:30;4537:50;;;4583:1;4580;4573:12;4537:50;4606:22;;4659:4;4651:13;;4647:27;-1:-1:-1;4637:55:1;;4688:1;4685;4678:12;4637:55;4711:74;4777:7;4772:2;4759:16;4754:2;4750;4746:11;4711:74;:::i;4796:347::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4961:29;4980:9;4961:29;:::i;:::-;4951:39;;5040:2;5029:9;5025:18;5012:32;5087:5;5080:13;5073:21;5066:5;5063:32;5053:60;;5109:1;5106;5099:12;5053:60;5132:5;5122:15;;;4796:347;;;;;:::o;5148:667::-;5243:6;5251;5259;5267;5320:3;5308:9;5299:7;5295:23;5291:33;5288:53;;;5337:1;5334;5327:12;5288:53;5360:29;5379:9;5360:29;:::i;:::-;5350:39;;5408:38;5442:2;5431:9;5427:18;5408:38;:::i;:::-;5398:48;;5493:2;5482:9;5478:18;5465:32;5455:42;;5548:2;5537:9;5533:18;5520:32;5575:18;5567:6;5564:30;5561:50;;;5607:1;5604;5597:12;5561:50;5630:22;;5683:4;5675:13;;5671:27;-1:-1:-1;5661:55:1;;5712:1;5709;5702:12;5661:55;5735:74;5801:7;5796:2;5783:16;5778:2;5774;5770:11;5735:74;:::i;:::-;5725:84;;;5148:667;;;;;;;:::o;5820:1014::-;5913:6;5921;5974:2;5962:9;5953:7;5949:23;5945:32;5942:52;;;5990:1;5987;5980:12;5942:52;6026:9;6013:23;6003:33;;6055:2;6108;6097:9;6093:18;6080:32;6131:18;6172:2;6164:6;6161:14;6158:34;;;6188:1;6185;6178:12;6158:34;6226:6;6215:9;6211:22;6201:32;;6271:7;6264:4;6260:2;6256:13;6252:27;6242:55;;6293:1;6290;6283:12;6242:55;6329:2;6316:16;6351:2;6347;6344:10;6341:36;;;6357:18;;:::i;:::-;6403:2;6400:1;6396:10;6386:20;;6426:28;6450:2;6446;6442:11;6426:28;:::i;:::-;6488:15;;;6558:11;;;6554:20;;;6519:12;;;;6586:19;;;6583:39;;;6618:1;6615;6608:12;6583:39;6642:11;;;;6662:142;6678:6;6673:3;6670:15;6662:142;;;6744:17;;6732:30;;6695:12;;;;6782;;;;6662:142;;;6823:5;6813:15;;;;;;;;5820:1014;;;;;:::o;7024:260::-;7092:6;7100;7153:2;7141:9;7132:7;7128:23;7124:32;7121:52;;;7169:1;7166;7159:12;7121:52;7192:29;7211:9;7192:29;:::i;:::-;7182:39;;7240:38;7274:2;7263:9;7259:18;7240:38;:::i;:::-;7230:48;;7024:260;;;;;:::o;7289:380::-;7368:1;7364:12;;;;7411;;;7432:61;;7486:4;7478:6;7474:17;7464:27;;7432:61;7539:2;7531:6;7528:14;7508:18;7505:38;7502:161;;;7585:10;7580:3;7576:20;7573:1;7566:31;7620:4;7617:1;7610:15;7648:4;7645:1;7638:15;7502:161;;7289:380;;;:::o;8507:410::-;8709:2;8691:21;;;8748:2;8728:18;;;8721:30;8787:34;8782:2;8767:18;;8760:62;-1:-1:-1;;;8853:2:1;8838:18;;8831:44;8907:3;8892:19;;8507:410::o;9544:127::-;9605:10;9600:3;9596:20;9593:1;9586:31;9636:4;9633:1;9626:15;9660:4;9657:1;9650:15;9676:127;9737:10;9732:3;9728:20;9725:1;9718:31;9768:4;9765:1;9758:15;9792:4;9789:1;9782:15;9808:135;9847:3;-1:-1:-1;;9868:17:1;;9865:43;;;9888:18;;:::i;:::-;-1:-1:-1;9935:1:1;9924:13;;9808:135::o;12593:168::-;12633:7;12699:1;12695;12691:6;12687:14;12684:1;12681:21;12676:1;12669:9;12662:17;12658:45;12655:71;;;12706:18;;:::i;:::-;-1:-1:-1;12746:9:1;;12593:168::o;13125:128::-;13165:3;13196:1;13192:6;13189:1;13186:13;13183:39;;;13202:18;;:::i;:::-;-1:-1:-1;13238:9:1;;13125:128::o;14031:443::-;14263:3;14301:6;14295:13;14317:53;14363:6;14358:3;14351:4;14343:6;14339:17;14317:53;:::i;:::-;-1:-1:-1;;;14392:16:1;;14417:22;;;-1:-1:-1;14466:1:1;14455:13;;14031:443;-1:-1:-1;14031:443:1:o;15697:125::-;15737:4;15765:1;15762;15759:8;15756:34;;;15770:18;;:::i;:::-;-1:-1:-1;15807:9:1;;15697:125::o;16542:414::-;16744:2;16726:21;;;16783:2;16763:18;;;16756:30;16822:34;16817:2;16802:18;;16795:62;-1:-1:-1;;;16888:2:1;16873:18;;16866:48;16946:3;16931:19;;16542:414::o;17195:470::-;17374:3;17412:6;17406:13;17428:53;17474:6;17469:3;17462:4;17454:6;17450:17;17428:53;:::i;:::-;17544:13;;17503:16;;;;17566:57;17544:13;17503:16;17600:4;17588:17;;17566:57;:::i;:::-;17639:20;;17195:470;-1:-1:-1;;;;17195:470:1:o;17670:489::-;-1:-1:-1;;;;;17939:15:1;;;17921:34;;17991:15;;17986:2;17971:18;;17964:43;18038:2;18023:18;;18016:34;;;18086:3;18081:2;18066:18;;18059:31;;;17864:4;;18107:46;;18133:19;;18125:6;18107:46;:::i;:::-;18099:54;17670:489;-1:-1:-1;;;;;;17670:489:1:o;18164:249::-;18233:6;18286:2;18274:9;18265:7;18261:23;18257:32;18254:52;;;18302:1;18299;18292:12;18254:52;18334:9;18328:16;18353:30;18377:5;18353:30;:::i;18418:127::-;18479:10;18474:3;18470:20;18467:1;18460:31;18510:4;18507:1;18500:15;18534:4;18531:1;18524:15;18550:120;18590:1;18616;18606:35;;18621:18;;:::i;:::-;-1:-1:-1;18655:9:1;;18550:120::o;18675:112::-;18707:1;18733;18723:35;;18738:18;;:::i;:::-;-1:-1:-1;18772:9:1;;18675:112::o;19510:127::-;19571:10;19566:3;19562:20;19559:1;19552:31;19602:4;19599:1;19592:15;19626:4;19623:1;19616:15

Swarm Source

ipfs://ad42350e6bef8ca9239ac9704131624c0ad0bf50d4d9a993995a8784eb074e96
Loading