ETH Price: $2,518.49 (-0.16%)

Token

HoodyNightmare (HN)
 

Overview

Max Total Supply

6,666 HN

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kingyolo.eth
Balance
2 HN
0xcA3DaA627ca0C1eb3DFC91dEd2A0B310abA03476
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HoodyNightmare

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

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

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

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

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

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

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    pragma solidity ^0.8.7;
    
    contract HoodyNightmare is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL = "ipfs://QmNkW6XpddHMrjssjN57qKCyGqNk7RTJT9vW2B3Gbq22ar";

  
  

  uint256 public cost = 0.05 ether;


  uint16 public constant maxSupply = 6666;
  uint8 public maxMintAmountPerTx = 5;
                                                             
  bool public WLpaused = true;
  bool public paused = true;
  bool public reveal =false;
  mapping (address => uint8) public NFTPerWLAddress;
  uint8 public maxWLMintAmountPerWallet = 1;  
  uint16 public freeLimit = 1266;
  
  
  bytes32 public whitelistMerkleRoot = 0x4c9165404eabf0706aa8fd9960759642c69e2106d6f57bb640dde826a4aa4960;
  

  constructor() ERC721A("HoodyNightmare", "HN") {
  }

  
 
  function mint(uint16 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount <= maxMintAmountPerTx, "Exceeds max nft per transaction.");

    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender , _mintAmount);
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  

   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }
 
   function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
 



 function setMaxLimitPerWlAddress(uint8 _limit) external onlyOwner{
    maxWLMintAmountPerWallet = _limit;
   delete _limit;

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

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external  {
        
       bytes32  leafnode = getLeafNode(msg.sender);
        uint8 _txPerAddress = NFTPerWLAddress[msg.sender];
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (_txPerAddress + _mintAmount <= maxWLMintAmountPerWallet, "Exceeds max free nfts allowed per wallet");
      


    require(!WLpaused, "Contract is Paused!");
    require(totalSupply() + _mintAmount < freeLimit, "Exceeds max whitelist Supply");
    
     _safeMint(msg.sender , _mintAmount);
      NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount;
      
      delete _mintAmount;
       delete _txPerAddress;
    
    }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
   function setFreeLimit(uint16 _freeLimit) external onlyOwner {
    freeLimit = _freeLimit;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
    WLpaused = true;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(0xA18Cc799F8B858F3c9e994Abde094A28BA121843).transfer(_balance ); 
       
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_freeLimit","type":"uint16"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxLimitPerWlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000197565b50604051806060016040528060358152602001620027c16035913980516200005991600b9160209091019062000197565b5066b1a2bc2ec50000600c55600d80546201010563ffffffff19909116179055600f805462ffffff19166204f2011790557f4c9165404eabf0706aa8fd9960759642c69e2106d6f57bb640dde826a4aa4960601055348015620000bb57600080fd5b506040518060400160405280600e81526020016d486f6f64794e696768746d61726560901b81525060405180604001604052806002815260200161242760f11b81525081600290805190602001906200011692919062000197565b5080516200012c90600390602084019062000197565b50506001600055506200013f3362000145565b6200027a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a5906200023d565b90600052602060002090601f016020900481019282620001c9576000855562000214565b82601f10620001e457805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000214578251825591602001919060010190620001f7565b506200022292915062000226565b5090565b5b8082111562000222576000815560010162000227565b600181811c908216806200025257607f821691505b602082108114156200027457634e487b7160e01b600052602260045260246000fd5b50919050565b612537806200028a6000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063bd32fb661161007a578063bd32fb66146106d7578063c87b56dd146106f7578063d5abeb0114610717578063e985e9c51461072d578063eef440af14610776578063f2fde38b1461078b57600080fd5b8063a22cb46514610640578063a475b5dd14610660578063aa06229014610681578063aa98e0c6146106a1578063b88d4fde146106b757600080fd5b80637ec4a659116100fd5780637ec4a659146105b45780637f6e9093146105d45780638da5cb5b146105f357806394354fd01461061157806395d89b411461062b57600080fd5b80636352211e1461051f57806365db54741461053f57806370a082311461055f578063715018a61461057f5780637b6b15041461059457600080fd5b8063269bbebd116101d257806342842e0e1161019657806342842e0e1461044357806344a0d68a14610463578063506c20301461048357806358381669146104af57806359bf5dbb146104cf5780635c975abb146104ff57600080fd5b8063269bbebd146103b15780632f6f98e1146103e457806337a66d85146104045780633bd64968146104195780633ccfd60b1461042e57600080fd5b80631067fcc7116102195780631067fcc71461031c57806313faede61461033c57806318160ddd1461036057806323b872dd1461037e57806323cf0a221461039e57600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063093cfa63146102e5578063095ea7b3146102fc575b600080fd5b34801561026257600080fd5b50610276610271366004612080565b6107ab565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107fd565b6040516102829190612308565b3480156102b957600080fd5b506102cd6102c8366004612067565b61088f565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506102fa6108d3565b005b34801561030857600080fd5b506102fa61031736600461203d565b610923565b34801561032857600080fd5b506102fa6103373660046120ba565b6109b1565b34801561034857600080fd5b50610352600c5481565b604051908152602001610282565b34801561036c57600080fd5b50610352600154600054036000190190565b34801561038a57600080fd5b506102fa610399366004611f49565b6109f2565b6102fa6103ac366004612103565b6109fd565b3480156103bd57600080fd5b50600f546103d190610100900461ffff1681565b60405161ffff9091168152602001610282565b3480156103f057600080fd5b506102fa6103ff36600461211e565b610b7e565b34801561041057600080fd5b506102fa610c20565b34801561042557600080fd5b506102fa610c73565b34801561043a57600080fd5b506102fa610cbe565b34801561044f57600080fd5b506102fa61045e366004611f49565b610d2b565b34801561046f57600080fd5b506102fa61047e366004612067565b610d46565b34801561048f57600080fd5b50600f5461049d9060ff1681565b60405160ff9091168152602001610282565b3480156104bb57600080fd5b506102fa6104ca366004612155565b610d75565b3480156104db57600080fd5b5061049d6104ea366004611efb565b600e6020526000908152604090205460ff1681565b34801561050b57600080fd5b50600d546102769062010000900460ff1681565b34801561052b57600080fd5b506102cd61053a366004612067565b610fbc565b34801561054b57600080fd5b506102fa61055a366004612103565b610fce565b34801561056b57600080fd5b5061035261057a366004611efb565b611016565b34801561058b57600080fd5b506102fa611065565b3480156105a057600080fd5b506102fa6105af36600461213a565b61109b565b3480156105c057600080fd5b506102fa6105cf3660046120ba565b6110db565b3480156105e057600080fd5b50600d5461027690610100900460ff1681565b3480156105ff57600080fd5b506008546001600160a01b03166102cd565b34801561061d57600080fd5b50600d5461049d9060ff1681565b34801561063757600080fd5b506102a0611118565b34801561064c57600080fd5b506102fa61065b366004612001565b611127565b34801561066c57600080fd5b50600d54610276906301000000900460ff1681565b34801561068d57600080fd5b506102fa61069c36600461213a565b6111bd565b3480156106ad57600080fd5b5061035260105481565b3480156106c357600080fd5b506102fa6106d2366004611f85565b6111fd565b3480156106e357600080fd5b506102fa6106f2366004612067565b61124e565b34801561070357600080fd5b506102a0610712366004612067565b61127d565b34801561072357600080fd5b506103d1611a0a81565b34801561073957600080fd5b50610276610748366004611f16565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102a06113ee565b34801561079757600080fd5b506102fa6107a6366004611efb565b61147c565b60006001600160e01b031982166380ac58cd60e01b14806107dc57506001600160e01b03198216635b5e139f60e01b145b806107f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461080c90612429565b80601f016020809104026020016040519081016040528092919081815260200182805461083890612429565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b600061089a82611517565b6108b7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109065760405162461bcd60e51b81526004016108fd9061231b565b60405180910390fd5b600d805461ff001981166101009182900460ff1615909102179055565b600061092e82610fbc565b9050806001600160a01b0316836001600160a01b031614156109635760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098357506109818133610748565b155b156109a1576040516367d9dca160e11b815260040160405180910390fd5b6109ac838383611550565b505050565b6008546001600160a01b031633146109db5760405162461bcd60e51b81526004016108fd9061231b565b80516109ee90600b906020840190611dad565b5050565b6109ac8383836115ac565b6000610a10600154600054036000190190565b9050611a0a610a1f8383612350565b61ffff161115610a675760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016108fd565b600d5460ff1661ffff83161115610ac05760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206e667420706572207472616e73616374696f6e2e60448201526064016108fd565b600d5462010000900460ff1615610b195760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108fd565b8161ffff16600c54610b2b91906123c7565b341015610b705760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108fd565b6109ee338361ffff1661179c565b6008546001600160a01b03163314610ba85760405162461bcd60e51b81526004016108fd9061231b565b6000610bbb600154600054036000190190565b9050611a0a610bca8483612350565b61ffff161115610c125760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016108fd565b6109ac828461ffff1661179c565b6008546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016108fd9061231b565b600d805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6008546001600160a01b03163314610c9d5760405162461bcd60e51b81526004016108fd9061231b565b600d805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610ce85760405162461bcd60e51b81526004016108fd9061231b565b604051479073a18cc799f8b858f3c9e994abde094a28ba1218439082156108fc029083906000818181858888f193505050501580156109ee573d6000803e3d6000fd5b6109ac838383604051806020016040528060008152506111fd565b6008546001600160a01b03163314610d705760405162461bcd60e51b81526004016108fd9061231b565b600c55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600e6020908152604091829020548251868302818101840190945286815293945060ff1692610e02928592889188918291908501908490808284376000920191909152506117b692505050565b610e455760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108fd565b600f5460ff16610e55868361238e565b60ff161115610eb75760405162461bcd60e51b815260206004820152602860248201527f45786365656473206d61782066726565206e66747320616c6c6f7765642070656044820152671c881dd85b1b195d60c21b60648201526084016108fd565b600d54610100900460ff1615610f055760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973205061757365642160681b60448201526064016108fd565b600f54610100900461ffff1660ff8616610f26600154600054036000190190565b610f309190612376565b10610f7d5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d61782077686974656c69737420537570706c790000000060448201526064016108fd565b610f8a338660ff1661179c565b610f94858261238e565b336000908152600e60205260409020805460ff191660ff929092169190911790555050505050565b6000610fc7826117c5565b5192915050565b6008546001600160a01b03163314610ff85760405162461bcd60e51b81526004016108fd9061231b565b600f805461ffff9092166101000262ffff0019909216919091179055565b60006001600160a01b03821661103f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461108f5760405162461bcd60e51b81526004016108fd9061231b565b61109960006118ee565b565b6008546001600160a01b031633146110c55760405162461bcd60e51b81526004016108fd9061231b565b600f805460ff191660ff92909216919091179055565b6008546001600160a01b031633146111055760405162461bcd60e51b81526004016108fd9061231b565b80516109ee906009906020840190611dad565b60606003805461080c90612429565b6001600160a01b0382163314156111515760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111e75760405162461bcd60e51b81526004016108fd9061231b565b600d805460ff191660ff92909216919091179055565b6112088484846115ac565b6001600160a01b0383163b1515801561122a575061122884848484611940565b155b15611248576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112785760405162461bcd60e51b81526004016108fd9061231b565b601055565b606061128882611517565b6112ec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fd565b600d546301000000900460ff1661138f57600b805461130a90612429565b80601f016020809104026020016040519081016040528092919081815260200182805461133690612429565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b50505050509050919050565b6000611399611a38565b905060008151116113b957604051806020016040528060008152506113e7565b806113c384611a47565b600a6040516020016113d793929190612207565b6040516020818303038152906040525b9392505050565b600b80546113fb90612429565b80601f016020809104026020016040519081016040528092919081815260200182805461142790612429565b80156114745780601f1061144957610100808354040283529160200191611474565b820191906000526020600020905b81548152906001019060200180831161145757829003601f168201915b505050505081565b6008546001600160a01b031633146114a65760405162461bcd60e51b81526004016108fd9061231b565b6001600160a01b03811661150b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fd565b611514816118ee565b50565b60008160011115801561152b575060005482105b80156107f7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115b7826117c5565b9050836001600160a01b031681600001516001600160a01b0316146115ee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061160c575061160c8533610748565b8061162757503361161c8461088f565b6001600160a01b0316145b90508061164757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661166e57604051633a954ecd60e21b815260040160405180910390fd5b61167a60008487611550565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611750576000548214611750578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109ee828260405180602001604052806000815250611b45565b60006113e78260105485611b52565b604080516060810182526000808252602082018190529181019190915281806001111580156117f5575060005481105b156118d557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118d35780516001600160a01b031615611869579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118ce579392505050565b611869565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119759033908990889088906004016122cb565b602060405180830381600087803b15801561198f57600080fd5b505af19250505080156119bf575060408051601f3d908101601f191682019092526119bc9181019061209d565b60015b611a1a573d8080156119ed576040519150601f19603f3d011682016040523d82523d6000602084013e6119f2565b606091505b508051611a12576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461080c90612429565b606081611a6b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a955780611a7f81612464565b9150611a8e9050600a836123b3565b9150611a6f565b60008167ffffffffffffffff811115611ab057611ab06124d5565b6040519080825280601f01601f191660200182016040528015611ada576020820181803683370190505b5090505b8415611a3057611aef6001836123e6565b9150611afc600a8661247f565b611b07906030612376565b60f81b818381518110611b1c57611b1c6124bf565b60200101906001600160f81b031916908160001a905350611b3e600a866123b3565b9450611ade565b6109ac8383836001611b68565b600082611b5f8584611d39565b14949350505050565b6000546001600160a01b038516611b9157604051622e076360e81b815260040160405180910390fd5b83611baf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6157506001600160a01b0387163b15155b15611cea575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cb26000888480600101955088611940565b611ccf576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c67578260005414611ce557600080fd5b611d30565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ceb575b50600055611795565b600081815b8451811015611da5576000858281518110611d5b57611d5b6124bf565b60200260200101519050808311611d815760008381526020829052604090209250611d92565b600081815260208490526040902092505b5080611d9d81612464565b915050611d3e565b509392505050565b828054611db990612429565b90600052602060002090601f016020900481019282611ddb5760008555611e21565b82601f10611df457805160ff1916838001178555611e21565b82800160010185558215611e21579182015b82811115611e21578251825591602001919060010190611e06565b50611e2d929150611e31565b5090565b5b80821115611e2d5760008155600101611e32565b600067ffffffffffffffff80841115611e6157611e616124d5565b604051601f8501601f19908116603f01168101908282118183101715611e8957611e896124d5565b81604052809350858152868686011115611ea257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ed357600080fd5b919050565b803561ffff81168114611ed357600080fd5b803560ff81168114611ed357600080fd5b600060208284031215611f0d57600080fd5b6113e782611ebc565b60008060408385031215611f2957600080fd5b611f3283611ebc565b9150611f4060208401611ebc565b90509250929050565b600080600060608486031215611f5e57600080fd5b611f6784611ebc565b9250611f7560208501611ebc565b9150604084013590509250925092565b60008060008060808587031215611f9b57600080fd5b611fa485611ebc565b9350611fb260208601611ebc565b925060408501359150606085013567ffffffffffffffff811115611fd557600080fd5b8501601f81018713611fe657600080fd5b611ff587823560208401611e46565b91505092959194509250565b6000806040838503121561201457600080fd5b61201d83611ebc565b91506020830135801515811461203257600080fd5b809150509250929050565b6000806040838503121561205057600080fd5b61205983611ebc565b946020939093013593505050565b60006020828403121561207957600080fd5b5035919050565b60006020828403121561209257600080fd5b81356113e7816124eb565b6000602082840312156120af57600080fd5b81516113e7816124eb565b6000602082840312156120cc57600080fd5b813567ffffffffffffffff8111156120e357600080fd5b8201601f810184136120f457600080fd5b611a3084823560208401611e46565b60006020828403121561211557600080fd5b6113e782611ed8565b6000806040838503121561213157600080fd5b611f3283611ed8565b60006020828403121561214c57600080fd5b6113e782611eea565b60008060006040848603121561216a57600080fd5b61217384611eea565b9250602084013567ffffffffffffffff8082111561219057600080fd5b818601915086601f8301126121a457600080fd5b8135818111156121b357600080fd5b8760208260051b85010111156121c857600080fd5b6020830194508093505050509250925092565b600081518084526121f38160208601602086016123fd565b601f01601f19169290920160200192915050565b60008451602061221a8285838a016123fd565b85519184019161222d8184848a016123fd565b8554920191600090600181811c908083168061224a57607f831692505b85831081141561226857634e487b7160e01b85526022600452602485fd5b80801561227c576001811461228d576122ba565b60ff198516885283880195506122ba565b60008b81526020902060005b858110156122b25781548a820152908401908801612299565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122fe908301846121db565b9695505050505050565b6020815260006113e760208301846121db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561236d5761236d612493565b01949350505050565b6000821982111561238957612389612493565b500190565b600060ff821660ff84168060ff038211156123ab576123ab612493565b019392505050565b6000826123c2576123c26124a9565b500490565b60008160001904831182151516156123e1576123e1612493565b500290565b6000828210156123f8576123f8612493565b500390565b60005b83811015612418578181015183820152602001612400565b838111156112485750506000910152565b600181811c9082168061243d57607f821691505b6020821081141561245e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561247857612478612493565b5060010190565b60008261248e5761248e6124a9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461151457600080fdfea264697066735822122012b880656338ff10ed7d5eacd7b977766c365192c1e77a06b466412780ca4a4964736f6c63430008070033697066733a2f2f516d4e6b573658706464484d726a73736a4e3537714b437947714e6b3752544a5439765732423347627132326172

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063a22cb465116100b6578063bd32fb661161007a578063bd32fb66146106d7578063c87b56dd146106f7578063d5abeb0114610717578063e985e9c51461072d578063eef440af14610776578063f2fde38b1461078b57600080fd5b8063a22cb46514610640578063a475b5dd14610660578063aa06229014610681578063aa98e0c6146106a1578063b88d4fde146106b757600080fd5b80637ec4a659116100fd5780637ec4a659146105b45780637f6e9093146105d45780638da5cb5b146105f357806394354fd01461061157806395d89b411461062b57600080fd5b80636352211e1461051f57806365db54741461053f57806370a082311461055f578063715018a61461057f5780637b6b15041461059457600080fd5b8063269bbebd116101d257806342842e0e1161019657806342842e0e1461044357806344a0d68a14610463578063506c20301461048357806358381669146104af57806359bf5dbb146104cf5780635c975abb146104ff57600080fd5b8063269bbebd146103b15780632f6f98e1146103e457806337a66d85146104045780633bd64968146104195780633ccfd60b1461042e57600080fd5b80631067fcc7116102195780631067fcc71461031c57806313faede61461033c57806318160ddd1461036057806323b872dd1461037e57806323cf0a221461039e57600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063093cfa63146102e5578063095ea7b3146102fc575b600080fd5b34801561026257600080fd5b50610276610271366004612080565b6107ab565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107fd565b6040516102829190612308565b3480156102b957600080fd5b506102cd6102c8366004612067565b61088f565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506102fa6108d3565b005b34801561030857600080fd5b506102fa61031736600461203d565b610923565b34801561032857600080fd5b506102fa6103373660046120ba565b6109b1565b34801561034857600080fd5b50610352600c5481565b604051908152602001610282565b34801561036c57600080fd5b50610352600154600054036000190190565b34801561038a57600080fd5b506102fa610399366004611f49565b6109f2565b6102fa6103ac366004612103565b6109fd565b3480156103bd57600080fd5b50600f546103d190610100900461ffff1681565b60405161ffff9091168152602001610282565b3480156103f057600080fd5b506102fa6103ff36600461211e565b610b7e565b34801561041057600080fd5b506102fa610c20565b34801561042557600080fd5b506102fa610c73565b34801561043a57600080fd5b506102fa610cbe565b34801561044f57600080fd5b506102fa61045e366004611f49565b610d2b565b34801561046f57600080fd5b506102fa61047e366004612067565b610d46565b34801561048f57600080fd5b50600f5461049d9060ff1681565b60405160ff9091168152602001610282565b3480156104bb57600080fd5b506102fa6104ca366004612155565b610d75565b3480156104db57600080fd5b5061049d6104ea366004611efb565b600e6020526000908152604090205460ff1681565b34801561050b57600080fd5b50600d546102769062010000900460ff1681565b34801561052b57600080fd5b506102cd61053a366004612067565b610fbc565b34801561054b57600080fd5b506102fa61055a366004612103565b610fce565b34801561056b57600080fd5b5061035261057a366004611efb565b611016565b34801561058b57600080fd5b506102fa611065565b3480156105a057600080fd5b506102fa6105af36600461213a565b61109b565b3480156105c057600080fd5b506102fa6105cf3660046120ba565b6110db565b3480156105e057600080fd5b50600d5461027690610100900460ff1681565b3480156105ff57600080fd5b506008546001600160a01b03166102cd565b34801561061d57600080fd5b50600d5461049d9060ff1681565b34801561063757600080fd5b506102a0611118565b34801561064c57600080fd5b506102fa61065b366004612001565b611127565b34801561066c57600080fd5b50600d54610276906301000000900460ff1681565b34801561068d57600080fd5b506102fa61069c36600461213a565b6111bd565b3480156106ad57600080fd5b5061035260105481565b3480156106c357600080fd5b506102fa6106d2366004611f85565b6111fd565b3480156106e357600080fd5b506102fa6106f2366004612067565b61124e565b34801561070357600080fd5b506102a0610712366004612067565b61127d565b34801561072357600080fd5b506103d1611a0a81565b34801561073957600080fd5b50610276610748366004611f16565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102a06113ee565b34801561079757600080fd5b506102fa6107a6366004611efb565b61147c565b60006001600160e01b031982166380ac58cd60e01b14806107dc57506001600160e01b03198216635b5e139f60e01b145b806107f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461080c90612429565b80601f016020809104026020016040519081016040528092919081815260200182805461083890612429565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b600061089a82611517565b6108b7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109065760405162461bcd60e51b81526004016108fd9061231b565b60405180910390fd5b600d805461ff001981166101009182900460ff1615909102179055565b600061092e82610fbc565b9050806001600160a01b0316836001600160a01b031614156109635760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098357506109818133610748565b155b156109a1576040516367d9dca160e11b815260040160405180910390fd5b6109ac838383611550565b505050565b6008546001600160a01b031633146109db5760405162461bcd60e51b81526004016108fd9061231b565b80516109ee90600b906020840190611dad565b5050565b6109ac8383836115ac565b6000610a10600154600054036000190190565b9050611a0a610a1f8383612350565b61ffff161115610a675760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016108fd565b600d5460ff1661ffff83161115610ac05760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178206e667420706572207472616e73616374696f6e2e60448201526064016108fd565b600d5462010000900460ff1615610b195760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108fd565b8161ffff16600c54610b2b91906123c7565b341015610b705760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108fd565b6109ee338361ffff1661179c565b6008546001600160a01b03163314610ba85760405162461bcd60e51b81526004016108fd9061231b565b6000610bbb600154600054036000190190565b9050611a0a610bca8483612350565b61ffff161115610c125760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016108fd565b6109ac828461ffff1661179c565b6008546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016108fd9061231b565b600d805461ff001960ff620100008084049190911615021662ffff001990911617610100179055565b6008546001600160a01b03163314610c9d5760405162461bcd60e51b81526004016108fd9061231b565b600d805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610ce85760405162461bcd60e51b81526004016108fd9061231b565b604051479073a18cc799f8b858f3c9e994abde094a28ba1218439082156108fc029083906000818181858888f193505050501580156109ee573d6000803e3d6000fd5b6109ac838383604051806020016040528060008152506111fd565b6008546001600160a01b03163314610d705760405162461bcd60e51b81526004016108fd9061231b565b600c55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600e6020908152604091829020548251868302818101840190945286815293945060ff1692610e02928592889188918291908501908490808284376000920191909152506117b692505050565b610e455760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108fd565b600f5460ff16610e55868361238e565b60ff161115610eb75760405162461bcd60e51b815260206004820152602860248201527f45786365656473206d61782066726565206e66747320616c6c6f7765642070656044820152671c881dd85b1b195d60c21b60648201526084016108fd565b600d54610100900460ff1615610f055760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973205061757365642160681b60448201526064016108fd565b600f54610100900461ffff1660ff8616610f26600154600054036000190190565b610f309190612376565b10610f7d5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d61782077686974656c69737420537570706c790000000060448201526064016108fd565b610f8a338660ff1661179c565b610f94858261238e565b336000908152600e60205260409020805460ff191660ff929092169190911790555050505050565b6000610fc7826117c5565b5192915050565b6008546001600160a01b03163314610ff85760405162461bcd60e51b81526004016108fd9061231b565b600f805461ffff9092166101000262ffff0019909216919091179055565b60006001600160a01b03821661103f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461108f5760405162461bcd60e51b81526004016108fd9061231b565b61109960006118ee565b565b6008546001600160a01b031633146110c55760405162461bcd60e51b81526004016108fd9061231b565b600f805460ff191660ff92909216919091179055565b6008546001600160a01b031633146111055760405162461bcd60e51b81526004016108fd9061231b565b80516109ee906009906020840190611dad565b60606003805461080c90612429565b6001600160a01b0382163314156111515760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111e75760405162461bcd60e51b81526004016108fd9061231b565b600d805460ff191660ff92909216919091179055565b6112088484846115ac565b6001600160a01b0383163b1515801561122a575061122884848484611940565b155b15611248576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112785760405162461bcd60e51b81526004016108fd9061231b565b601055565b606061128882611517565b6112ec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fd565b600d546301000000900460ff1661138f57600b805461130a90612429565b80601f016020809104026020016040519081016040528092919081815260200182805461133690612429565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b50505050509050919050565b6000611399611a38565b905060008151116113b957604051806020016040528060008152506113e7565b806113c384611a47565b600a6040516020016113d793929190612207565b6040516020818303038152906040525b9392505050565b600b80546113fb90612429565b80601f016020809104026020016040519081016040528092919081815260200182805461142790612429565b80156114745780601f1061144957610100808354040283529160200191611474565b820191906000526020600020905b81548152906001019060200180831161145757829003601f168201915b505050505081565b6008546001600160a01b031633146114a65760405162461bcd60e51b81526004016108fd9061231b565b6001600160a01b03811661150b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fd565b611514816118ee565b50565b60008160011115801561152b575060005482105b80156107f7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115b7826117c5565b9050836001600160a01b031681600001516001600160a01b0316146115ee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061160c575061160c8533610748565b8061162757503361161c8461088f565b6001600160a01b0316145b90508061164757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661166e57604051633a954ecd60e21b815260040160405180910390fd5b61167a60008487611550565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611750576000548214611750578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109ee828260405180602001604052806000815250611b45565b60006113e78260105485611b52565b604080516060810182526000808252602082018190529181019190915281806001111580156117f5575060005481105b156118d557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118d35780516001600160a01b031615611869579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156118ce579392505050565b611869565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119759033908990889088906004016122cb565b602060405180830381600087803b15801561198f57600080fd5b505af19250505080156119bf575060408051601f3d908101601f191682019092526119bc9181019061209d565b60015b611a1a573d8080156119ed576040519150601f19603f3d011682016040523d82523d6000602084013e6119f2565b606091505b508051611a12576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461080c90612429565b606081611a6b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a955780611a7f81612464565b9150611a8e9050600a836123b3565b9150611a6f565b60008167ffffffffffffffff811115611ab057611ab06124d5565b6040519080825280601f01601f191660200182016040528015611ada576020820181803683370190505b5090505b8415611a3057611aef6001836123e6565b9150611afc600a8661247f565b611b07906030612376565b60f81b818381518110611b1c57611b1c6124bf565b60200101906001600160f81b031916908160001a905350611b3e600a866123b3565b9450611ade565b6109ac8383836001611b68565b600082611b5f8584611d39565b14949350505050565b6000546001600160a01b038516611b9157604051622e076360e81b815260040160405180910390fd5b83611baf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6157506001600160a01b0387163b15155b15611cea575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cb26000888480600101955088611940565b611ccf576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c67578260005414611ce557600080fd5b611d30565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ceb575b50600055611795565b600081815b8451811015611da5576000858281518110611d5b57611d5b6124bf565b60200260200101519050808311611d815760008381526020829052604090209250611d92565b600081815260208490526040902092505b5080611d9d81612464565b915050611d3e565b509392505050565b828054611db990612429565b90600052602060002090601f016020900481019282611ddb5760008555611e21565b82601f10611df457805160ff1916838001178555611e21565b82800160010185558215611e21579182015b82811115611e21578251825591602001919060010190611e06565b50611e2d929150611e31565b5090565b5b80821115611e2d5760008155600101611e32565b600067ffffffffffffffff80841115611e6157611e616124d5565b604051601f8501601f19908116603f01168101908282118183101715611e8957611e896124d5565b81604052809350858152868686011115611ea257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ed357600080fd5b919050565b803561ffff81168114611ed357600080fd5b803560ff81168114611ed357600080fd5b600060208284031215611f0d57600080fd5b6113e782611ebc565b60008060408385031215611f2957600080fd5b611f3283611ebc565b9150611f4060208401611ebc565b90509250929050565b600080600060608486031215611f5e57600080fd5b611f6784611ebc565b9250611f7560208501611ebc565b9150604084013590509250925092565b60008060008060808587031215611f9b57600080fd5b611fa485611ebc565b9350611fb260208601611ebc565b925060408501359150606085013567ffffffffffffffff811115611fd557600080fd5b8501601f81018713611fe657600080fd5b611ff587823560208401611e46565b91505092959194509250565b6000806040838503121561201457600080fd5b61201d83611ebc565b91506020830135801515811461203257600080fd5b809150509250929050565b6000806040838503121561205057600080fd5b61205983611ebc565b946020939093013593505050565b60006020828403121561207957600080fd5b5035919050565b60006020828403121561209257600080fd5b81356113e7816124eb565b6000602082840312156120af57600080fd5b81516113e7816124eb565b6000602082840312156120cc57600080fd5b813567ffffffffffffffff8111156120e357600080fd5b8201601f810184136120f457600080fd5b611a3084823560208401611e46565b60006020828403121561211557600080fd5b6113e782611ed8565b6000806040838503121561213157600080fd5b611f3283611ed8565b60006020828403121561214c57600080fd5b6113e782611eea565b60008060006040848603121561216a57600080fd5b61217384611eea565b9250602084013567ffffffffffffffff8082111561219057600080fd5b818601915086601f8301126121a457600080fd5b8135818111156121b357600080fd5b8760208260051b85010111156121c857600080fd5b6020830194508093505050509250925092565b600081518084526121f38160208601602086016123fd565b601f01601f19169290920160200192915050565b60008451602061221a8285838a016123fd565b85519184019161222d8184848a016123fd565b8554920191600090600181811c908083168061224a57607f831692505b85831081141561226857634e487b7160e01b85526022600452602485fd5b80801561227c576001811461228d576122ba565b60ff198516885283880195506122ba565b60008b81526020902060005b858110156122b25781548a820152908401908801612299565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122fe908301846121db565b9695505050505050565b6020815260006113e760208301846121db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561236d5761236d612493565b01949350505050565b6000821982111561238957612389612493565b500190565b600060ff821660ff84168060ff038211156123ab576123ab612493565b019392505050565b6000826123c2576123c26124a9565b500490565b60008160001904831182151516156123e1576123e1612493565b500290565b6000828210156123f8576123f8612493565b500390565b60005b83811015612418578181015183820152602001612400565b838111156112485750506000910152565b600181811c9082168061243d57607f821691505b6020821081141561245e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561247857612478612493565b5060010190565b60008261248e5761248e6124a9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461151457600080fdfea264697066735822122012b880656338ff10ed7d5eacd7b977766c365192c1e77a06b466412780ca4a4964736f6c63430008070033

Deployed Bytecode Sourcemap

46342:4610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;;;;;-1:-1:-1;24442:305:0;;;;;:::i;:::-;;:::i;:::-;;;8776:14:1;;8769:22;8751:41;;8739:2;8724:18;24442:305:0;;;;;;;;27555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29058:204::-;;;;;;;;;;-1:-1:-1;29058:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8074:32:1;;;8056:51;;8044:2;8029:18;29058:204:0;7910:203:1;48542:75:0;;;;;;;;;;;;;:::i;:::-;;28621:371;;;;;;;;;;-1:-1:-1;28621:371:0;;;;;:::i;:::-;;:::i;50086:102::-;;;;;;;;;;-1:-1:-1;50086:102:0;;;;;:::i;:::-;;:::i;46594:32::-;;;;;;;;;;;;;;;;;;;8949:25:1;;;8937:2;8922:18;46594:32:0;8803:177:1;23691:303:0;;;;;;;;;;;;23548:1;23945:12;23735:7;23929:13;:28;-1:-1:-1;;23929:46:0;;23691:303;29923:170;;;;;;;;;;-1:-1:-1;29923:170:0;;;;;:::i;:::-;;:::i;47198:495::-;;;;;;:::i;:::-;;:::i;46976:30::-;;;;;;;;;;-1:-1:-1;46976:30:0;;;;;;;;;;;;;;13439:6:1;13427:19;;;13409:38;;13397:2;13382:18;46976:30:0;13265:188:1;47701:326:0;;;;;;;;;;-1:-1:-1;47701:326:0;;;;;:::i;:::-;;:::i;50296:91::-;;;;;;;;;;;;;:::i;50474:70::-;;;;;;;;;;;;;:::i;50668:176::-;;;;;;;;;;;;;:::i;30164:185::-;;;;;;;;;;-1:-1:-1;30164:185:0;;;;;:::i;:::-;;:::i;50393:76::-;;;;;;;;;;-1:-1:-1;50393:76:0;;;;;:::i;:::-;;:::i;46928:41::-;;;;;;;;;;-1:-1:-1;46928:41:0;;;;;;;;;;;13812:4:1;13800:17;;;13782:36;;13770:2;13755:18;46928:41:0;13640:184:1;49227:746:0;;;;;;;;;;-1:-1:-1;49227:746:0;;;;;:::i;:::-;;:::i;46874:49::-;;;;;;;;;;-1:-1:-1;46874:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46814:25;;;;;;;;;;-1:-1:-1;46814:25:0;;;;;;;;;;;27363:125;;;;;;;;;;-1:-1:-1;27363:125:0;;;;;:::i;:::-;;:::i;50193:95::-;;;;;;;;;;-1:-1:-1;50193:95:0;;;;;:::i;:::-;;:::i;24811:206::-;;;;;;;;;;-1:-1:-1;24811:206:0;;;;;:::i;:::-;;:::i;45488:103::-;;;;;;;;;;;;;:::i;48629:130::-;;;;;;;;;;-1:-1:-1;48629:130:0;;;;;:::i;:::-;;:::i;49979:102::-;;;;;;;;;;-1:-1:-1;49979:102:0;;;;;:::i;:::-;;:::i;46782:27::-;;;;;;;;;;-1:-1:-1;46782:27:0;;;;;;;;;;;44836:87;;;;;;;;;;-1:-1:-1;44909:6:0;;-1:-1:-1;;;;;44909:6:0;44836:87;;46679:35;;;;;;;;;;-1:-1:-1;46679:35:0;;;;;;;;27724:104;;;;;;;;;;;;;:::i;29334:287::-;;;;;;;;;;-1:-1:-1;29334:287:0;;;;;:::i;:::-;;:::i;46844:25::-;;;;;;;;;;-1:-1:-1;46844:25:0;;;;;;;;;;;50550:107;;;;;;;;;;-1:-1:-1;50550:107:0;;;;;:::i;:::-;;:::i;47019:103::-;;;;;;;;;;;;;;;;30420:369;;;;;;;;;;-1:-1:-1;30420:369:0;;;;;:::i;:::-;;:::i;48761:142::-;;;;;;;;;;-1:-1:-1;48761:142:0;;;;;:::i;:::-;;:::i;48044:490::-;;;;;;;;;;-1:-1:-1;48044:490:0;;;;;:::i;:::-;;:::i;46635:39::-;;;;;;;;;;;;46670:4;46635:39;;29692:164;;;;;;;;;;-1:-1:-1;29692:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29813:25:0;;;29789:4;29813:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29692:164;46496:81;;;;;;;;;;;;;:::i;45746:201::-;;;;;;;;;;-1:-1:-1;45746:201:0;;;;;:::i;:::-;;:::i;24442:305::-;24544:4;-1:-1:-1;;;;;;24581:40:0;;-1:-1:-1;;;24581:40:0;;:105;;-1:-1:-1;;;;;;;24638:48:0;;-1:-1:-1;;;24638:48:0;24581:105;:158;;;-1:-1:-1;;;;;;;;;;14476:40:0;;;24703:36;24561:178;24442:305;-1:-1:-1;;24442:305:0:o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;-1:-1:-1;;;29176:34:0;;;;;;;;;;;29146:64;-1:-1:-1;29230:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29230:24:0;;29058:204::o;48542:75::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;;;;;;;;;48603:8:::1;::::0;;-1:-1:-1;;48591:20:0;::::1;48603:8;::::0;;;::::1;;;48602:9;48591:20:::0;;::::1;;::::0;;48542:75::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;-1:-1:-1;;;;;28749:11:0;:2;-1:-1:-1;;;;;28749:11:0;;28745:48;;;28769:24;;-1:-1:-1;;;28769:24:0;;;;;;;;;;;28745:48;2916:10;-1:-1:-1;;;;;28810:21:0;;;;;;:63;;-1:-1:-1;28836:37:0;28853:5;2916:10;29692:164;:::i;28836:37::-;28835:38;28810:63;28806:138;;;28897:35;;-1:-1:-1;;;28897:35:0;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28683:309;28621:371;;:::o;50086:102::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50160:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50086:102:::0;:::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;47198:495::-;47258:18;47286:13;23548:1;23945:12;23735:7;23929:13;:28;-1:-1:-1;;23929:46:0;;23691:303;47286:13;47258:42;-1:-1:-1;46670:4:0;47315:25;47329:11;47258:42;47315:25;:::i;:::-;:38;;;;47307:70;;;;-1:-1:-1;;;47307:70:0;;11296:2:1;47307:70:0;;;11278:21:1;11335:2;11315:18;;;11308:30;-1:-1:-1;;;11354:18:1;;;11347:49;11413:18;;47307:70:0;11094:343:1;47307:70:0;47407:18;;;;47392:33;;;;;47384:78;;;;-1:-1:-1;;;47384:78:0;;12001:2:1;47384:78:0;;;11983:21:1;;;12020:18;;;12013:30;12079:34;12059:18;;;12052:62;12131:18;;47384:78:0;11799:356:1;47384:78:0;47480:6;;;;;;;47479:7;47471:43;;;;-1:-1:-1;;;47471:43:0;;10528:2:1;47471:43:0;;;10510:21:1;10567:2;10547:18;;;10540:30;10606:25;10586:18;;;10579:53;10649:18;;47471:43:0;10326:347:1;47471:43:0;47549:11;47542:18;;:4;;:18;;;;:::i;:::-;47529:9;:31;;47521:63;;;;-1:-1:-1;;;47521:63:0;;13119:2:1;47521:63:0;;;13101:21:1;13158:2;13138:18;;;13131:30;-1:-1:-1;;;13177:18:1;;;13170:49;13236:18;;47521:63:0;12917:343:1;47521:63:0;47593:35;47603:10;47616:11;47593:35;;:9;:35::i;47701:326::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;47784:18:::1;47812:13;23548:1:::0;23945:12;23735:7;23929:13;:28;-1:-1:-1;;23929:46:0;;23691:303;47812:13:::1;47784:42:::0;-1:-1:-1;46670:4:0::1;47841:25;47855:11:::0;47784:42;47841:25:::1;:::i;:::-;:38;;;;47833:70;;;::::0;-1:-1:-1;;;47833:70:0;;11296:2:1;47833:70:0::1;::::0;::::1;11278:21:1::0;11335:2;11315:18;;;11308:30;-1:-1:-1;;;11354:18:1;;;11347:49;11413:18;;47833:70:0::1;11094:343:1::0;47833:70:0::1;47911:34;47921:9;47933:11;47911:34;;:9;:34::i;50296:91::-:0;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50353:6:::1;::::0;;-1:-1:-1;;50353:6:0::1;::::0;;;::::1;::::0;;;::::1;50352:7;50343:16;50366:15:::0;-1:-1:-1;;50366:15:0;;;;50353:6:::1;50366:15;::::0;;50296:91::o;50474:70::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50533:6:::1;::::0;;-1:-1:-1;;50523:16:0;::::1;50533:6:::0;;;;::::1;;;50532:7;50523:16:::0;;::::1;;::::0;;50474:70::o;50668:176::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50757:71:::1;::::0;50728:21:::1;::::0;50765:42:::1;::::0;50757:71;::::1;;;::::0;50728:21;;50712:13:::1;50757:71:::0;50712:13;50757:71;50728:21;50765:42;50757:71;::::1;;;;;;;;;;;;;::::0;::::1;;;;30164:185:::0;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;50393:76::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50449:4:::1;:12:::0;50393:76::o;49227:746::-;49023:23;;;49363:10;6293:2:1;6289:15;-1:-1:-1;;6285:53:1;49023:23:0;;;;6273:66:1;;;;49023:23:0;;;;;;;;;6355:12:1;;;;49023:23:0;;;49013:34;;;;;49331:17;;49423:10;49385:19;49407:27;;;:15;:27;;;;;;;;;;49452:36;;;;;;;;;;;;;;;;49331:43;;-1:-1:-1;49407:27:0;;;49452:36;;49331:43;;49473:11;;;;;;49452:36;;;;49473:11;;49452:36;49473:11;49452:36;;;;;;;;;-1:-1:-1;49452:7:0;;-1:-1:-1;;;49452:36:0:i;:::-;49444:70;;;;-1:-1:-1;;;49444:70:0;;10179:2:1;49444:70:0;;;10161:21:1;10218:2;10198:18;;;10191:30;-1:-1:-1;;;10237:18:1;;;10230:50;10297:18;;49444:70:0;9977:344:1;49444:70:0;49564:24;;;;49533:27;49549:11;49533:13;:27;:::i;:::-;:55;;;;49524:109;;;;-1:-1:-1;;;49524:109:0;;12362:2:1;49524:109:0;;;12344:21:1;12401:2;12381:18;;;12374:30;12440:34;12420:18;;;12413:62;-1:-1:-1;;;12491:18:1;;;12484:38;12539:19;;49524:109:0;12160:404:1;49524:109:0;49661:8;;;;;;;49660:9;49652:41;;;;-1:-1:-1;;;49652:41:0;;12771:2:1;49652:41:0;;;12753:21:1;12810:2;12790:18;;;12783:30;-1:-1:-1;;;12829:18:1;;;12822:49;12888:18;;49652:41:0;12569:343:1;49652:41:0;49738:9;;;;;;;49708:27;;;:13;23548:1;23945:12;23735:7;23929:13;:28;-1:-1:-1;;23929:46:0;;23691:303;49708:13;:27;;;;:::i;:::-;:39;49700:80;;;;-1:-1:-1;;;49700:80:0;;11644:2:1;49700:80:0;;;11626:21:1;11683:2;11663:18;;;11656:30;11722;11702:18;;;11695:58;11770:18;;49700:80:0;11442:352:1;49700:80:0;49794:35;49804:10;49817:11;49794:35;;:9;:35::i;:::-;49867:27;49883:11;49867:13;:27;:::i;:::-;49854:10;49838:27;;;;:15;:27;;;;;:56;;-1:-1:-1;;49838:56:0;;;;;;;;;;;;-1:-1:-1;;;;;49227:746:0:o;27363:125::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;27363:125;-1:-1:-1;;27363:125:0:o;50193:95::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50260:9:::1;:22:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;50260:22:0;;::::1;::::0;;;::::1;::::0;;50193:95::o;24811:206::-;24875:7;-1:-1:-1;;;;;24899:19:0;;24895:60;;24927:28;;-1:-1:-1;;;24927:28:0;;;;;;;;;;;24895:60;-1:-1:-1;;;;;;24981:19:0;;;;;:12;:19;;;;;:27;;;;24811:206::o;45488:103::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;45553:30:::1;45580:1;45553:18;:30::i;:::-;45488:103::o:0;48629:130::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;48701:24:::1;:33:::0;;-1:-1:-1;;48701:33:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;48629:130::o;49979:102::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50053:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27724:104::-:0;27780:13;27813:7;27806:14;;;;;:::i;29334:287::-;-1:-1:-1;;;;;29433:24:0;;2916:10;29433:24;29429:54;;;29466:17;;-1:-1:-1;;;29466:17:0;;;;;;;;;;;29429:54;2916:10;29496:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29496:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29496:53:0;;;;;;;;;;29565:48;;8751:41:1;;;29496:42:0;;2916:10;29565:48;;8724:18:1;29565:48:0;;;;;;;29334:287;;:::o;50550:107::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;50622:18:::1;:27:::0;;-1:-1:-1;;50622:27:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50550:107::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;-1:-1:-1;;;;;30630:13:0;;4578:19;:23;;30630:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;-1:-1:-1;;;30730:40:0;;;;;;;;;;;30626:156;30420:369;;;;:::o;48761:142::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;48853:19:::1;:42:::0;48761:142::o;48044:490::-;48143:13;48184:17;48192:8;48184:7;:17::i;:::-;48168:98;;;;-1:-1:-1;;;48168:98:0;;10880:2:1;48168:98:0;;;10862:21:1;10919:2;10899:18;;;10892:30;10958:34;10938:18;;;10931:62;-1:-1:-1;;;11009:18:1;;;11002:45;11064:19;;48168:98:0;10678:411:1;48168:98:0;48284:6;;;;;;;48279:50;;48316:9;48309:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48044:490;;;:::o;48279:50::-;48343:28;48374:10;:8;:10::i;:::-;48343:41;;48429:1;48404:14;48398:28;:32;:130;;;;;;;;;;;;;;;;;48466:14;48482:19;:8;:17;:19::i;:::-;48503:9;48449:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48398:130;48391:137;48044:490;-1:-1:-1;;;48044:490:0:o;46496:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45746:201::-;44909:6;;-1:-1:-1;;;;;44909:6:0;2916:10;45056:23;45048:69;;;;-1:-1:-1;;;45048:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45835:22:0;::::1;45827:73;;;::::0;-1:-1:-1;;;45827:73:0;;9411:2:1;45827:73:0::1;::::0;::::1;9393:21:1::0;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;-1:-1:-1;;;9540:18:1;;;9533:36;9586:19;;45827:73:0::1;9209:402:1::0;45827:73:0::1;45911:28;45930:8;45911:18;:28::i;:::-;45746:201:::0;:::o;31044:187::-;31101:4;31144:7;23548:1;31125:26;;:53;;;;;31165:13;;31155:7;:23;31125:53;:98;;;;-1:-1:-1;;31196:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31196:27:0;;;;31195:28;;31044:187::o;39214:196::-;39329:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39329:29:0;-1:-1:-1;;;;;39329:29:0;;;;;;;;;39374:28;;39329:24;;39374:28;;;;;;;39214:196;;;:::o;34157:2130::-;34272:35;34310:21;34323:7;34310:12;:21::i;:::-;34272:59;;34370:4;-1:-1:-1;;;;;34348:26:0;:13;:18;;;-1:-1:-1;;;;;34348:26:0;;34344:67;;34383:28;;-1:-1:-1;;;34383:28:0;;;;;;;;;;;34344:67;34424:22;2916:10;-1:-1:-1;;;;;34450:20:0;;;;:73;;-1:-1:-1;34487:36:0;34504:4;2916:10;29692:164;:::i;34487:36::-;34450:126;;;-1:-1:-1;2916:10:0;34540:20;34552:7;34540:11;:20::i;:::-;-1:-1:-1;;;;;34540:36:0;;34450:126;34424:153;;34595:17;34590:66;;34621:35;;-1:-1:-1;;;34621:35:0;;;;;;;;;;;34590:66;-1:-1:-1;;;;;34671:16:0;;34667:52;;34696:23;;-1:-1:-1;;;34696:23:0;;;;;;;;;;;34667:52;34840:35;34857:1;34861:7;34870:4;34840:8;:35::i;:::-;-1:-1:-1;;;;;35171:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35171:31:0;;;;;;;-1:-1:-1;;35171:31:0;;;;;;;35217:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35217:29:0;;;;;;;;;;;35297:20;;;:11;:20;;;;;;35332:18;;-1:-1:-1;;;;;;35365:49:0;;;;-1:-1:-1;;;35398:15:0;35365:49;;;;;;;;;;35688:11;;35748:24;;;;;35791:13;;35297:20;;35748:24;;35791:13;35787:384;;36001:13;;35986:11;:28;35982:174;;36039:20;;36108:28;;;;36082:54;;-1:-1:-1;;;36082:54:0;-1:-1:-1;;;;;;36082:54:0;;;-1:-1:-1;;;;;36039:20:0;;36082:54;;;;35982:174;35146:1036;;;36218:7;36214:2;-1:-1:-1;;;;;36199:27:0;36208:4;-1:-1:-1;;;;;36199:27:0;;;;;;;;;;;36237:42;34261:2026;;34157:2130;;;:::o;31239:104::-;31308:27;31318:2;31322:8;31308:27;;;;;;;;;;;;:9;:27::i;49061:162::-;49139:4;49163:52;49182:5;49189:19;;49210:4;49163:18;:52::i;26192:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26303:7:0;;23548:1;26352:23;;:47;;;;;26386:13;;26379:4;:20;26352:47;26348:886;;;26420:31;26454:17;;;:11;:17;;;;;;;;;26420:51;;;;;;;;;-1:-1:-1;;;;;26420:51:0;;;;-1:-1:-1;;;26420:51:0;;;;;;;;;;;-1:-1:-1;;;26420:51:0;;;;;;;;;;;;;;26490:729;;26540:14;;-1:-1:-1;;;;;26540:28:0;;26536:101;;26604:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;26536:101::-;-1:-1:-1;;;26979:6:0;27024:17;;;;:11;:17;;;;;;;;;27012:29;;;;;;;;;-1:-1:-1;;;;;27012:29:0;;;;;-1:-1:-1;;;27012:29:0;;;;;;;;;;;-1:-1:-1;;;27012:29:0;;;;;;;;;;;;;27072:28;27068:109;;27140:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;27068:109::-;26939:261;;;26401:833;26348:886;27262:31;;-1:-1:-1;;;27262:31:0;;;;;;;;;;;46107:191;46200:6;;;-1:-1:-1;;;;;46217:17:0;;;-1:-1:-1;;;;;;46217:17:0;;;;;;;46250:40;;46200:6;;;46217:17;46200:6;;46250:40;;46181:16;;46250:40;46170:128;46107:191;:::o;39902:667::-;40086:72;;-1:-1:-1;;;40086:72:0;;40065:4;;-1:-1:-1;;;;;40086:36:0;;;;;:72;;2916:10;;40137:4;;40143:7;;40152:5;;40086:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40086:72:0;;;;;;;;-1:-1:-1;;40086:72:0;;;;;;;;;;;;:::i;:::-;;;40082:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40320:13:0;;40316:235;;40366:40;;-1:-1:-1;;;40366:40:0;;;;;;;;;;;40316:235;40509:6;40503:13;40494:6;40490:2;40486:15;40479:38;40082:480;-1:-1:-1;;;;;;40205:55:0;-1:-1:-1;;;40205:55:0;;-1:-1:-1;40082:480:0;39902:667;;;;;;:::o;50852:97::-;50905:13;50934:9;50927:16;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31706:163;31829:32;31835:2;31839:8;31849:5;31856:4;31829:5;:32::i;42960:190::-;43085:4;43138;43109:25;43122:5;43129:4;43109:12;:25::i;:::-;:33;;42960:190;-1:-1:-1;;;;42960:190:0:o;32128:1775::-;32267:20;32290:13;-1:-1:-1;;;;;32318:16:0;;32314:48;;32343:19;;-1:-1:-1;;;32343:19:0;;;;;;;;;;;32314:48;32377:13;32373:44;;32399:18;;-1:-1:-1;;;32399:18:0;;;;;;;;;;;32373:44;-1:-1:-1;;;;;32768:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32827:49:0;;32768:44;;;;;;;;32827:49;;;;-1:-1:-1;;32768:44:0;;;;;;32827:49;;;;;;;;;;;;;;;;32893:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32943:66:0;;;;-1:-1:-1;;;32993:15:0;32943:66;;;;;;;;;;32893:25;33090:23;;;33134:4;:23;;;;-1:-1:-1;;;;;;33142:13:0;;4578:19;:23;;33142:15;33130:641;;;33178:314;33209:38;;33234:12;;-1:-1:-1;;;;;33209:38:0;;;33226:1;;33209:38;;33226:1;;33209:38;33275:69;33314:1;33318:2;33322:14;;;;;;33338:5;33275:30;:69::i;:::-;33270:174;;33380:40;;-1:-1:-1;;;33380:40:0;;;;;;;;;;;33270:174;33487:3;33471:12;:19;;33178:314;;33573:12;33556:13;;:29;33552:43;;33587:8;;;33552:43;33130:641;;;33636:120;33667:40;;33692:14;;;;;-1:-1:-1;;;;;33667:40:0;;;33684:1;;33667:40;;33684:1;;33667:40;33751:3;33735:12;:19;;33636:120;;33130:641;-1:-1:-1;33785:13:0;:28;33835:60;30420:369;43512:675;43595:7;43638:4;43595:7;43653:497;43677:5;:12;43673:1;:16;43653:497;;;43711:20;43734:5;43740:1;43734:8;;;;;;;;:::i;:::-;;;;;;;43711:31;;43777:12;43761;:28;43757:382;;44263:13;44313:15;;;44349:4;44342:15;;;44396:4;44380:21;;43889:57;;43757:382;;;44263:13;44313:15;;;44349:4;44342:15;;;44396:4;44380:21;;44066:57;;43757:382;-1:-1:-1;43691:3:0;;;;:::i;:::-;;;;43653:497;;;-1:-1:-1;44167:12:0;43512:675;-1:-1:-1;;;43512:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:180::-;3283:6;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;-1:-1:-1;3375:23:1;;3224:180;-1:-1:-1;3224:180:1:o;3409:245::-;3467:6;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3575:9;3562:23;3594:30;3618:5;3594:30;:::i;3659:249::-;3728:6;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3829:9;3823:16;3848:30;3872:5;3848:30;:::i;3913:450::-;3982:6;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4091:9;4078:23;4124:18;4116:6;4113:30;4110:50;;;4156:1;4153;4146:12;4110:50;4179:22;;4232:4;4224:13;;4220:27;-1:-1:-1;4210:55:1;;4261:1;4258;4251:12;4210:55;4284:73;4349:7;4344:2;4331:16;4326:2;4322;4318:11;4284:73;:::i;4368:184::-;4426:6;4479:2;4467:9;4458:7;4454:23;4450:32;4447:52;;;4495:1;4492;4485:12;4447:52;4518:28;4536:9;4518:28;:::i;4557:258::-;4624:6;4632;4685:2;4673:9;4664:7;4660:23;4656:32;4653:52;;;4701:1;4698;4691:12;4653:52;4724:28;4742:9;4724:28;:::i;5005:182::-;5062:6;5115:2;5103:9;5094:7;5090:23;5086:32;5083:52;;;5131:1;5128;5121:12;5083:52;5154:27;5171:9;5154:27;:::i;5192:685::-;5285:6;5293;5301;5354:2;5342:9;5333:7;5329:23;5325:32;5322:52;;;5370:1;5367;5360:12;5322:52;5393:27;5410:9;5393:27;:::i;:::-;5383:37;;5471:2;5460:9;5456:18;5443:32;5494:18;5535:2;5527:6;5524:14;5521:34;;;5551:1;5548;5541:12;5521:34;5589:6;5578:9;5574:22;5564:32;;5634:7;5627:4;5623:2;5619:13;5615:27;5605:55;;5656:1;5653;5646:12;5605:55;5696:2;5683:16;5722:2;5714:6;5711:14;5708:34;;;5738:1;5735;5728:12;5708:34;5791:7;5786:2;5776:6;5773:1;5769:14;5765:2;5761:23;5757:32;5754:45;5751:65;;;5812:1;5809;5802:12;5751:65;5843:2;5839;5835:11;5825:21;;5865:6;5855:16;;;;;5192:685;;;;;:::o;5882:257::-;5923:3;5961:5;5955:12;5988:6;5983:3;5976:19;6004:63;6060:6;6053:4;6048:3;6044:14;6037:4;6030:5;6026:16;6004:63;:::i;:::-;6121:2;6100:15;-1:-1:-1;;6096:29:1;6087:39;;;;6128:4;6083:50;;5882:257;-1:-1:-1;;5882:257:1:o;6378:1527::-;6602:3;6640:6;6634:13;6666:4;6679:51;6723:6;6718:3;6713:2;6705:6;6701:15;6679:51;:::i;:::-;6793:13;;6752:16;;;;6815:55;6793:13;6752:16;6837:15;;;6815:55;:::i;:::-;6959:13;;6892:20;;;6932:1;;7019;7041:18;;;;7094;;;;7121:93;;7199:4;7189:8;7185:19;7173:31;;7121:93;7262:2;7252:8;7249:16;7229:18;7226:40;7223:167;;;-1:-1:-1;;;7289:33:1;;7345:4;7342:1;7335:15;7375:4;7296:3;7363:17;7223:167;7406:18;7433:110;;;;7557:1;7552:328;;;;7399:481;;7433:110;-1:-1:-1;;7468:24:1;;7454:39;;7513:20;;;;-1:-1:-1;7433:110:1;;7552:328;13902:1;13895:14;;;13939:4;13926:18;;7647:1;7661:169;7675:8;7672:1;7669:15;7661:169;;;7757:14;;7742:13;;;7735:37;7800:16;;;;7692:10;;7661:169;;;7665:3;;7861:8;7854:5;7850:20;7843:27;;7399:481;-1:-1:-1;7896:3:1;;6378:1527;-1:-1:-1;;;;;;;;;;;6378:1527:1:o;8118:488::-;-1:-1:-1;;;;;8387:15:1;;;8369:34;;8439:15;;8434:2;8419:18;;8412:43;8486:2;8471:18;;8464:34;;;8534:3;8529:2;8514:18;;8507:31;;;8312:4;;8555:45;;8580:19;;8572:6;8555:45;:::i;:::-;8547:53;8118:488;-1:-1:-1;;;;;;8118:488:1:o;8985:219::-;9134:2;9123:9;9116:21;9097:4;9154:44;9194:2;9183:9;9179:18;9171:6;9154:44;:::i;9616:356::-;9818:2;9800:21;;;9837:18;;;9830:30;9896:34;9891:2;9876:18;;9869:62;9963:2;9948:18;;9616:356::o;13955:224::-;13994:3;14022:6;14055:2;14052:1;14048:10;14085:2;14082:1;14078:10;14116:3;14112:2;14108:12;14103:3;14100:21;14097:47;;;14124:18;;:::i;:::-;14160:13;;13955:224;-1:-1:-1;;;;13955:224:1:o;14184:128::-;14224:3;14255:1;14251:6;14248:1;14245:13;14242:39;;;14261:18;;:::i;:::-;-1:-1:-1;14297:9:1;;14184:128::o;14317:204::-;14355:3;14391:4;14388:1;14384:12;14423:4;14420:1;14416:12;14458:3;14452:4;14448:14;14443:3;14440:23;14437:49;;;14466:18;;:::i;:::-;14502:13;;14317:204;-1:-1:-1;;;14317:204:1:o;14526:120::-;14566:1;14592;14582:35;;14597:18;;:::i;:::-;-1:-1:-1;14631:9:1;;14526:120::o;14651:168::-;14691:7;14757:1;14753;14749:6;14745:14;14742:1;14739:21;14734:1;14727:9;14720:17;14716:45;14713:71;;;14764:18;;:::i;:::-;-1:-1:-1;14804:9:1;;14651:168::o;14824:125::-;14864:4;14892:1;14889;14886:8;14883:34;;;14897:18;;:::i;:::-;-1:-1:-1;14934:9:1;;14824:125::o;14954:258::-;15026:1;15036:113;15050:6;15047:1;15044:13;15036:113;;;15126:11;;;15120:18;15107:11;;;15100:39;15072:2;15065:10;15036:113;;;15167:6;15164:1;15161:13;15158:48;;;-1:-1:-1;;15202:1:1;15184:16;;15177:27;14954:258::o;15217:380::-;15296:1;15292:12;;;;15339;;;15360:61;;15414:4;15406:6;15402:17;15392:27;;15360:61;15467:2;15459:6;15456:14;15436:18;15433:38;15430:161;;;15513:10;15508:3;15504:20;15501:1;15494:31;15548:4;15545:1;15538:15;15576:4;15573:1;15566:15;15430:161;;15217:380;;;:::o;15602:135::-;15641:3;-1:-1:-1;;15662:17:1;;15659:43;;;15682:18;;:::i;:::-;-1:-1:-1;15729:1:1;15718:13;;15602:135::o;15742:112::-;15774:1;15800;15790:35;;15805:18;;:::i;:::-;-1:-1:-1;15839:9:1;;15742:112::o;15859:127::-;15920:10;15915:3;15911:20;15908:1;15901:31;15951:4;15948:1;15941:15;15975:4;15972:1;15965:15;15991:127;16052:10;16047:3;16043:20;16040:1;16033:31;16083:4;16080:1;16073:15;16107:4;16104:1;16097:15;16123:127;16184:10;16179:3;16175:20;16172:1;16165:31;16215:4;16212:1;16205:15;16239:4;16236:1;16229:15;16255:127;16316:10;16311:3;16307:20;16304:1;16297:31;16347:4;16344:1;16337:15;16371:4;16368:1;16361:15;16387:131;-1:-1:-1;;;;;;16461:32:1;;16451:43;;16441:71;;16508:1;16505;16498:12

Swarm Source

ipfs://12b880656338ff10ed7d5eacd7b977766c365192c1e77a06b466412780ca4a49
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.