ETH Price: $3,386.03 (-1.50%)
Gas: 3 Gwei

INSC(ins-420) (INS-420)
 

Overview

TokenID

1236

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
INS420

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-25
*/

/**
 *Submitted for verification at Etherscan.io on 2023-12-22
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

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 0;
    }

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

// OperatorFilterRegistry

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

pragma solidity ^0.8.13;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

pragma solidity ^0.8.13;

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}



// File: contracts/INSC(ins-420).sol


 
pragma solidity >=0.8.0 <0.9.0;




 
contract INS420 is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard {
  using Strings for uint256;
 
  string public _baseTokenURI;
  string public hiddenMetadataUri;
 
  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 4000;
  uint256 public freeSupply = 4000;
  uint256 public maxMintAmountPerTx = 50;
  uint256 public FREE_NFT = 5;
 
  bool public paused;
  bool public revealed = false;
  mapping(address=>uint256) private free_nft;
 
  constructor(
    string memory _hiddenMetadataUri
  ) ERC721A("INSC(ins-420)", "INS-420") {
 
    setHiddenMetadataUri(_hiddenMetadataUri);
  }
 
  function mint(uint256 _mintAmount) public payable nonReentrant {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    uint256 amountForPay=_mintAmount;
    if (this.balanceOf(_msgSender()) < FREE_NFT){
        if (amountForPay>=FREE_NFT){
            amountForPay-=FREE_NFT - free_nft[_msgSender()];
        }else{
            amountForPay=0;
        }
    }
    require(msg.value >= cost * amountForPay, "Insufficient funds!");

    if (totalSupply() >= freeSupply) {
          require(msg.value > 0, "Max free supply exceeded!");
      }
    free_nft[_msgSender()]+=_mintAmount;
    if (free_nft[_msgSender()] > FREE_NFT) free_nft[_msgSender()]=FREE_NFT;
    _safeMint(_msgSender(), _mintAmount);
  }
 
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
 
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
 
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }
 
  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
 
  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setFreeSupply(uint256 _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

  function setFREENFT(uint256 _FREENFT) public onlyOwner {
    FREE_NFT = _FREENFT;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
 
  // METADATA HANDLING
 
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }
 
  function setBaseURI(string calldata baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }
 
  function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
  }
 
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
      require(_exists(_tokenId), "URI does not exist!");
 
      if (revealed) {
          return string(abi.encodePacked(_baseURI(), _tokenId.toString()));
      } else {
          return hiddenMetadataUri;
      }
  }

  // OperatorFilterRegistry

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"FREE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FREENFT","type":"uint256"}],"name":"setFREENFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c68000600c55610fa0600d819055600e556032600f5560056010556011805461ff00191690553480156200003c57600080fd5b5060405162002bf338038062002bf38339810160408190526200005f9162000327565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c494e534328696e732d3432302960981b815250604051806040016040528060078152602001660494e532d3432360cc1b8152508160029081620000cd91906200048b565b506003620000dc82826200048b565b50600160005550506daaeb6d7670e522a718067333cd4e3b15620002295780156200017757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200015857600080fd5b505af11580156200016d573d6000803e3d6000fd5b5050505062000229565b6001600160a01b03821615620001c85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200013d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200020f57600080fd5b505af115801562000224573d6000803e3d6000fd5b505050505b50620002379050336200024e565b60016009556200024781620002a0565b5062000557565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b6200030d82826200048b565b5050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200033b57600080fd5b82516001600160401b03808211156200035357600080fd5b818501915085601f8301126200036857600080fd5b8151818111156200037d576200037d62000311565b604051601f8201601f19908116603f01168101908382118183101715620003a857620003a862000311565b816040528281528886848701011115620003c157600080fd5b600093505b82841015620003e55784840186015181850187015292850192620003c6565b600086848301015280965050505050505092915050565b600181811c908216806200041157607f821691505b6020821081036200043257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048657600081815260208120601f850160051c81016020861015620004615750805b601f850160051c820191505b8181101562000482578281556001016200046d565b5050505b505050565b81516001600160401b03811115620004a757620004a762000311565b620004bf81620004b88454620003fc565b8462000438565b602080601f831160018114620004f75760008415620004de5750858301515b600019600386901b1c1916600185901b17855562000482565b600085815260208120601f198616915b82811015620005285788860151825594840194600190910190840162000507565b5085821015620005475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61268c80620005676000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b3aa76a0116100ab578063e0a808531161006f578063e0a8085314610607578063e985e9c514610627578063efbd73f414610647578063f2fde38b14610667578063f676308a1461068757600080fd5b8063b3aa76a014610586578063b88d4fde1461059c578063c87b56dd146105bc578063cfc86f7b146105dc578063d5abeb01146105f157600080fd5b806395d89b41116100f257806395d89b4114610509578063a0712d681461051e578063a22cb46514610531578063a45ba8e714610551578063b071401b1461056657600080fd5b8063715018a6146104a05780638da5cb5b146104b55780638e9d3bf1146104d357806394354fd0146104f357600080fd5b80633ccfd60b116101b157806355f804b31161017557806355f804b3146104065780635c975abb146104265780636352211e146104405780636f8b44b01461046057806370a082311461048057600080fd5b80633ccfd60b1461037257806342842e0e1461038757806344a0d68a146103a75780634fdd43cb146103c757806351830227146103e757600080fd5b806313faede6116101f857806313faede6146102db57806316c38b3c146102ff57806318160ddd1461031f57806323b872dd1461033c57806324a6ab0c1461035c57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611eed565b6106a7565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106f9565b6040516102569190611f61565b34801561028d57600080fd5b506102a161029c366004611f74565b61078b565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611fa4565b6107cf565b005b3480156102e757600080fd5b506102f1600c5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611fdc565b61085c565b34801561032b57600080fd5b5060015460005403600019016102f1565b34801561034857600080fd5b506102d9610357366004611ff9565b6108a2565b34801561036857600080fd5b506102f1600e5481565b34801561037e57600080fd5b506102d96109fe565b34801561039357600080fd5b506102d96103a2366004611ff9565b610af8565b3480156103b357600080fd5b506102d96103c2366004611f74565b610c49565b3480156103d357600080fd5b506102d96103e23660046120c0565b610c78565b3480156103f357600080fd5b5060115461024a90610100900460ff1681565b34801561041257600080fd5b506102d9610421366004612108565b610cb2565b34801561043257600080fd5b5060115461024a9060ff1681565b34801561044c57600080fd5b506102a161045b366004611f74565b610ce9565b34801561046c57600080fd5b506102d961047b366004611f74565b610cfb565b34801561048c57600080fd5b506102f161049b366004612179565b610d2a565b3480156104ac57600080fd5b506102d9610d78565b3480156104c157600080fd5b506008546001600160a01b03166102a1565b3480156104df57600080fd5b506102d96104ee366004611f74565b610dae565b3480156104ff57600080fd5b506102f1600f5481565b34801561051557600080fd5b50610274610ddd565b6102d961052c366004611f74565b610dec565b34801561053d57600080fd5b506102d961054c366004612194565b611119565b34801561055d57600080fd5b506102746111ae565b34801561057257600080fd5b506102d9610581366004611f74565b61123c565b34801561059257600080fd5b506102f160105481565b3480156105a857600080fd5b506102d96105b73660046121cb565b61126b565b3480156105c857600080fd5b506102746105d7366004611f74565b6113ca565b3480156105e857600080fd5b506102746114f6565b3480156105fd57600080fd5b506102f1600d5481565b34801561061357600080fd5b506102d9610622366004611fdc565b611503565b34801561063357600080fd5b5061024a610642366004612246565b611547565b34801561065357600080fd5b506102d9610662366004612279565b611575565b34801561067357600080fd5b506102d9610682366004612179565b6115a9565b34801561069357600080fd5b506102d96106a2366004611f74565b611644565b60006001600160e01b031982166380ac58cd60e01b14806106d857506001600160e01b03198216635b5e139f60e01b145b806106f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107089061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546107349061229c565b80156107815780601f1061075657610100808354040283529160200191610781565b820191906000526020600020905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b600061079682611673565b6107b3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107da82610ce9565b9050806001600160a01b0316836001600160a01b03160361080e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061082e575061082c8133611547565b155b1561084c576040516367d9dca160e11b815260040160405180910390fd5b6108578383836116ac565b505050565b6008546001600160a01b0316331461088f5760405162461bcd60e51b8152600401610886906122d6565b60405180910390fd5b6011805460ff1916911515919091179055565b826daaeb6d7670e522a718067333cd4e3b156109ed57336001600160a01b038216036108d8576108d3848484611708565b6109f8565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b919061230b565b80156109ce5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce919061230b565b6109ed57604051633b79c77360e21b8152336004820152602401610886565b6109f8848484611708565b50505050565b6008546001600160a01b03163314610a285760405162461bcd60e51b8152600401610886906122d6565b600260095403610a7a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610886565b60026009556000610a936008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610add576040519150601f19603f3d011682016040523d82523d6000602084013e610ae2565b606091505b5050905080610af057600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610c3e57336001600160a01b03821603610b29576108d3848484611713565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9c919061230b565b8015610c1f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f919061230b565b610c3e57604051633b79c77360e21b8152336004820152602401610886565b6109f8848484611713565b6008546001600160a01b03163314610c735760405162461bcd60e51b8152600401610886906122d6565b600c55565b6008546001600160a01b03163314610ca25760405162461bcd60e51b8152600401610886906122d6565b600b610cae8282612376565b5050565b6008546001600160a01b03163314610cdc5760405162461bcd60e51b8152600401610886906122d6565b600a610857828483612435565b6000610cf48261172e565b5192915050565b6008546001600160a01b03163314610d255760405162461bcd60e51b8152600401610886906122d6565b600d55565b60006001600160a01b038216610d53576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610da25760405162461bcd60e51b8152600401610886906122d6565b610dac6000611855565b565b6008546001600160a01b03163314610dd85760405162461bcd60e51b8152600401610886906122d6565b601055565b6060600380546107089061229c565b600260095403610e3e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610886565b60026009558015801590610e545750600f548111155b610e975760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610886565b600d546001546000548391900360001901610eb2919061250a565b1115610ef75760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610886565b60115460ff1615610f4a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610886565b6010548190306370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe919061251d565b1015610fff576010548110610ffb5733600090815260126020526040902054601054610fea9190612536565b610ff49082612536565b9050610fff565b5060005b80600c5461100d9190612549565b3410156110525760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610886565b600e546001546000540360001901106110b557600034116110b55760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520737570706c7920657863656564656421000000000000006044820152606401610886565b33600090815260126020526040812080548492906110d490849061250a565b909155505060105433600090815260126020526040902054111561110657601054336000908152601260205260409020555b61111033836118a7565b50506001600955565b336001600160a01b038316036111425760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b80546111bb9061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e79061229c565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b6008546001600160a01b031633146112665760405162461bcd60e51b8152600401610886906122d6565b600f55565b836daaeb6d7670e522a718067333cd4e3b156113b757336001600160a01b038216036112a25761129d858585856118c1565b6113c3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611315919061230b565b80156113985750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611374573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611398919061230b565b6113b757604051633b79c77360e21b8152336004820152602401610886565b6113c3858585856118c1565b5050505050565b60606113d582611673565b6114175760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610886565b601154610100900460ff161561145f5761142f61190c565b6114388361191b565b604051602001611449929190612560565b6040516020818303038152906040529050919050565b600b805461146c9061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546114989061229c565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b50505050509050919050565b919050565b600a80546111bb9061229c565b6008546001600160a01b0316331461152d5760405162461bcd60e51b8152600401610886906122d6565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461159f5760405162461bcd60e51b8152600401610886906122d6565b610cae81836118a7565b6008546001600160a01b031633146115d35760405162461bcd60e51b8152600401610886906122d6565b6001600160a01b0381166116385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b61164181611855565b50565b6008546001600160a01b0316331461166e5760405162461bcd60e51b8152600401610886906122d6565b600e55565b600081600111158015611687575060005482105b80156106f3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610857838383611a23565b6108578383836040518060200160405280600081525061126b565b6040805160608101825260008082526020820181905291810191909152818060011115801561175e575060005481105b1561183c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061183a5780516001600160a01b0316156117d1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611835579392505050565b6117d1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cae828260405180602001604052806000815250611c0e565b6118cc848484611a23565b6001600160a01b0383163b151580156118ee57506118ec84848484611c1b565b155b156109f8576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546107089061229c565b6060816000036119425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196c57806119568161258f565b91506119659050600a836125be565b9150611946565b6000816001600160401b0381111561198657611986612035565b6040519080825280601f01601f1916602001820160405280156119b0576020820181803683370190505b5090505b8415611a1b576119c5600183612536565b91506119d2600a866125d2565b6119dd90603061250a565b60f81b8183815181106119f2576119f26125e6565b60200101906001600160f81b031916908160001a905350611a14600a866125be565b94506119b4565b949350505050565b6000611a2e8261172e565b9050836001600160a01b031681600001516001600160a01b031614611a655760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a835750611a838533611547565b80611a9e575033611a938461078b565b6001600160a01b0316145b905080611abe57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611ae557604051633a954ecd60e21b815260040160405180910390fd5b611af1600084876116ac565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bc5576000548214611bc557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113c3565b6108578383836001611d06565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c509033908990889088906004016125fc565b6020604051808303816000875af1925050508015611c8b575060408051601f3d908101601f19168201909252611c8891810190612639565b60015b611ce9573d808015611cb9576040519150601f19603f3d011682016040523d82523d6000602084013e611cbe565b606091505b508051600003611ce1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611d2f57604051622e076360e81b815260040160405180910390fd5b83600003611d505760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e0157506001600160a01b0387163b15155b15611e89575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e526000888480600101955088611c1b565b611e6f576040516368d2bf6b60e11b815260040160405180910390fd5b808203611e07578260005414611e8457600080fd5b611ece565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611e8a575b506000556113c3565b6001600160e01b03198116811461164157600080fd5b600060208284031215611eff57600080fd5b8135611f0a81611ed7565b9392505050565b60005b83811015611f2c578181015183820152602001611f14565b50506000910152565b60008151808452611f4d816020860160208601611f11565b601f01601f19169290920160200192915050565b602081526000611f0a6020830184611f35565b600060208284031215611f8657600080fd5b5035919050565b80356001600160a01b03811681146114f157600080fd5b60008060408385031215611fb757600080fd5b611fc083611f8d565b946020939093013593505050565b801515811461164157600080fd5b600060208284031215611fee57600080fd5b8135611f0a81611fce565b60008060006060848603121561200e57600080fd5b61201784611f8d565b925061202560208501611f8d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561206557612065612035565b604051601f8501601f19908116603f0116810190828211818310171561208d5761208d612035565b816040528093508581528686860111156120a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120d257600080fd5b81356001600160401b038111156120e857600080fd5b8201601f810184136120f957600080fd5b611a1b8482356020840161204b565b6000806020838503121561211b57600080fd5b82356001600160401b038082111561213257600080fd5b818501915085601f83011261214657600080fd5b81358181111561215557600080fd5b86602082850101111561216757600080fd5b60209290920196919550909350505050565b60006020828403121561218b57600080fd5b611f0a82611f8d565b600080604083850312156121a757600080fd5b6121b083611f8d565b915060208301356121c081611fce565b809150509250929050565b600080600080608085870312156121e157600080fd5b6121ea85611f8d565b93506121f860208601611f8d565b92506040850135915060608501356001600160401b0381111561221a57600080fd5b8501601f8101871361222b57600080fd5b61223a8782356020840161204b565b91505092959194509250565b6000806040838503121561225957600080fd5b61226283611f8d565b915061227060208401611f8d565b90509250929050565b6000806040838503121561228c57600080fd5b8235915061227060208401611f8d565b600181811c908216806122b057607f821691505b6020821081036122d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561231d57600080fd5b8151611f0a81611fce565b601f82111561085757600081815260208120601f850160051c8101602086101561234f5750805b601f850160051c820191505b8181101561236e5782815560010161235b565b505050505050565b81516001600160401b0381111561238f5761238f612035565b6123a38161239d845461229c565b84612328565b602080601f8311600181146123d857600084156123c05750858301515b600019600386901b1c1916600185901b17855561236e565b600085815260208120601f198616915b82811015612407578886015182559484019460019091019084016123e8565b50858210156124255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0383111561244c5761244c612035565b6124608361245a835461229c565b83612328565b6000601f841160018114612494576000851561247c5750838201355b600019600387901b1c1916600186901b1783556113c3565b600083815260209020601f19861690835b828110156124c557868501358255602094850194600190920191016124a5565b50868210156124e25760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106f3576106f36124f4565b60006020828403121561252f57600080fd5b5051919050565b818103818111156106f3576106f36124f4565b80820281158282048414176106f3576106f36124f4565b60008351612572818460208801611f11565b835190830190612586818360208801611f11565b01949350505050565b6000600182016125a1576125a16124f4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125cd576125cd6125a8565b500490565b6000826125e1576125e16125a8565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061262f90830184611f35565b9695505050505050565b60006020828403121561264b57600080fd5b8151611f0a81611ed756fea2646970667358221220ace77cc04e9a3b52b60df0679be3c1a3780b7e9dd6cc5c4d4d148ab1ef1d931664736f6c634300081200330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5231695252327563437772744b56365069596951723556345469786376634c6b52547678596359654b594c312f696e73633432305f6a736f6e000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b3aa76a0116100ab578063e0a808531161006f578063e0a8085314610607578063e985e9c514610627578063efbd73f414610647578063f2fde38b14610667578063f676308a1461068757600080fd5b8063b3aa76a014610586578063b88d4fde1461059c578063c87b56dd146105bc578063cfc86f7b146105dc578063d5abeb01146105f157600080fd5b806395d89b41116100f257806395d89b4114610509578063a0712d681461051e578063a22cb46514610531578063a45ba8e714610551578063b071401b1461056657600080fd5b8063715018a6146104a05780638da5cb5b146104b55780638e9d3bf1146104d357806394354fd0146104f357600080fd5b80633ccfd60b116101b157806355f804b31161017557806355f804b3146104065780635c975abb146104265780636352211e146104405780636f8b44b01461046057806370a082311461048057600080fd5b80633ccfd60b1461037257806342842e0e1461038757806344a0d68a146103a75780634fdd43cb146103c757806351830227146103e757600080fd5b806313faede6116101f857806313faede6146102db57806316c38b3c146102ff57806318160ddd1461031f57806323b872dd1461033c57806324a6ab0c1461035c57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611eed565b6106a7565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106f9565b6040516102569190611f61565b34801561028d57600080fd5b506102a161029c366004611f74565b61078b565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611fa4565b6107cf565b005b3480156102e757600080fd5b506102f1600c5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611fdc565b61085c565b34801561032b57600080fd5b5060015460005403600019016102f1565b34801561034857600080fd5b506102d9610357366004611ff9565b6108a2565b34801561036857600080fd5b506102f1600e5481565b34801561037e57600080fd5b506102d96109fe565b34801561039357600080fd5b506102d96103a2366004611ff9565b610af8565b3480156103b357600080fd5b506102d96103c2366004611f74565b610c49565b3480156103d357600080fd5b506102d96103e23660046120c0565b610c78565b3480156103f357600080fd5b5060115461024a90610100900460ff1681565b34801561041257600080fd5b506102d9610421366004612108565b610cb2565b34801561043257600080fd5b5060115461024a9060ff1681565b34801561044c57600080fd5b506102a161045b366004611f74565b610ce9565b34801561046c57600080fd5b506102d961047b366004611f74565b610cfb565b34801561048c57600080fd5b506102f161049b366004612179565b610d2a565b3480156104ac57600080fd5b506102d9610d78565b3480156104c157600080fd5b506008546001600160a01b03166102a1565b3480156104df57600080fd5b506102d96104ee366004611f74565b610dae565b3480156104ff57600080fd5b506102f1600f5481565b34801561051557600080fd5b50610274610ddd565b6102d961052c366004611f74565b610dec565b34801561053d57600080fd5b506102d961054c366004612194565b611119565b34801561055d57600080fd5b506102746111ae565b34801561057257600080fd5b506102d9610581366004611f74565b61123c565b34801561059257600080fd5b506102f160105481565b3480156105a857600080fd5b506102d96105b73660046121cb565b61126b565b3480156105c857600080fd5b506102746105d7366004611f74565b6113ca565b3480156105e857600080fd5b506102746114f6565b3480156105fd57600080fd5b506102f1600d5481565b34801561061357600080fd5b506102d9610622366004611fdc565b611503565b34801561063357600080fd5b5061024a610642366004612246565b611547565b34801561065357600080fd5b506102d9610662366004612279565b611575565b34801561067357600080fd5b506102d9610682366004612179565b6115a9565b34801561069357600080fd5b506102d96106a2366004611f74565b611644565b60006001600160e01b031982166380ac58cd60e01b14806106d857506001600160e01b03198216635b5e139f60e01b145b806106f357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107089061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546107349061229c565b80156107815780601f1061075657610100808354040283529160200191610781565b820191906000526020600020905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b600061079682611673565b6107b3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107da82610ce9565b9050806001600160a01b0316836001600160a01b03160361080e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061082e575061082c8133611547565b155b1561084c576040516367d9dca160e11b815260040160405180910390fd5b6108578383836116ac565b505050565b6008546001600160a01b0316331461088f5760405162461bcd60e51b8152600401610886906122d6565b60405180910390fd5b6011805460ff1916911515919091179055565b826daaeb6d7670e522a718067333cd4e3b156109ed57336001600160a01b038216036108d8576108d3848484611708565b6109f8565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b919061230b565b80156109ce5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce919061230b565b6109ed57604051633b79c77360e21b8152336004820152602401610886565b6109f8848484611708565b50505050565b6008546001600160a01b03163314610a285760405162461bcd60e51b8152600401610886906122d6565b600260095403610a7a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610886565b60026009556000610a936008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610add576040519150601f19603f3d011682016040523d82523d6000602084013e610ae2565b606091505b5050905080610af057600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610c3e57336001600160a01b03821603610b29576108d3848484611713565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9c919061230b565b8015610c1f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f919061230b565b610c3e57604051633b79c77360e21b8152336004820152602401610886565b6109f8848484611713565b6008546001600160a01b03163314610c735760405162461bcd60e51b8152600401610886906122d6565b600c55565b6008546001600160a01b03163314610ca25760405162461bcd60e51b8152600401610886906122d6565b600b610cae8282612376565b5050565b6008546001600160a01b03163314610cdc5760405162461bcd60e51b8152600401610886906122d6565b600a610857828483612435565b6000610cf48261172e565b5192915050565b6008546001600160a01b03163314610d255760405162461bcd60e51b8152600401610886906122d6565b600d55565b60006001600160a01b038216610d53576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610da25760405162461bcd60e51b8152600401610886906122d6565b610dac6000611855565b565b6008546001600160a01b03163314610dd85760405162461bcd60e51b8152600401610886906122d6565b601055565b6060600380546107089061229c565b600260095403610e3e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610886565b60026009558015801590610e545750600f548111155b610e975760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610886565b600d546001546000548391900360001901610eb2919061250a565b1115610ef75760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610886565b60115460ff1615610f4a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610886565b6010548190306370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe919061251d565b1015610fff576010548110610ffb5733600090815260126020526040902054601054610fea9190612536565b610ff49082612536565b9050610fff565b5060005b80600c5461100d9190612549565b3410156110525760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610886565b600e546001546000540360001901106110b557600034116110b55760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520737570706c7920657863656564656421000000000000006044820152606401610886565b33600090815260126020526040812080548492906110d490849061250a565b909155505060105433600090815260126020526040902054111561110657601054336000908152601260205260409020555b61111033836118a7565b50506001600955565b336001600160a01b038316036111425760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b80546111bb9061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e79061229c565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b6008546001600160a01b031633146112665760405162461bcd60e51b8152600401610886906122d6565b600f55565b836daaeb6d7670e522a718067333cd4e3b156113b757336001600160a01b038216036112a25761129d858585856118c1565b6113c3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611315919061230b565b80156113985750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611374573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611398919061230b565b6113b757604051633b79c77360e21b8152336004820152602401610886565b6113c3858585856118c1565b5050505050565b60606113d582611673565b6114175760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610886565b601154610100900460ff161561145f5761142f61190c565b6114388361191b565b604051602001611449929190612560565b6040516020818303038152906040529050919050565b600b805461146c9061229c565b80601f01602080910402602001604051908101604052809291908181526020018280546114989061229c565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b50505050509050919050565b919050565b600a80546111bb9061229c565b6008546001600160a01b0316331461152d5760405162461bcd60e51b8152600401610886906122d6565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b0316331461159f5760405162461bcd60e51b8152600401610886906122d6565b610cae81836118a7565b6008546001600160a01b031633146115d35760405162461bcd60e51b8152600401610886906122d6565b6001600160a01b0381166116385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b61164181611855565b50565b6008546001600160a01b0316331461166e5760405162461bcd60e51b8152600401610886906122d6565b600e55565b600081600111158015611687575060005482105b80156106f3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610857838383611a23565b6108578383836040518060200160405280600081525061126b565b6040805160608101825260008082526020820181905291810191909152818060011115801561175e575060005481105b1561183c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061183a5780516001600160a01b0316156117d1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611835579392505050565b6117d1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cae828260405180602001604052806000815250611c0e565b6118cc848484611a23565b6001600160a01b0383163b151580156118ee57506118ec84848484611c1b565b155b156109f8576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546107089061229c565b6060816000036119425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196c57806119568161258f565b91506119659050600a836125be565b9150611946565b6000816001600160401b0381111561198657611986612035565b6040519080825280601f01601f1916602001820160405280156119b0576020820181803683370190505b5090505b8415611a1b576119c5600183612536565b91506119d2600a866125d2565b6119dd90603061250a565b60f81b8183815181106119f2576119f26125e6565b60200101906001600160f81b031916908160001a905350611a14600a866125be565b94506119b4565b949350505050565b6000611a2e8261172e565b9050836001600160a01b031681600001516001600160a01b031614611a655760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611a835750611a838533611547565b80611a9e575033611a938461078b565b6001600160a01b0316145b905080611abe57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611ae557604051633a954ecd60e21b815260040160405180910390fd5b611af1600084876116ac565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bc5576000548214611bc557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113c3565b6108578383836001611d06565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c509033908990889088906004016125fc565b6020604051808303816000875af1925050508015611c8b575060408051601f3d908101601f19168201909252611c8891810190612639565b60015b611ce9573d808015611cb9576040519150601f19603f3d011682016040523d82523d6000602084013e611cbe565b606091505b508051600003611ce1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611d2f57604051622e076360e81b815260040160405180910390fd5b83600003611d505760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e0157506001600160a01b0387163b15155b15611e89575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e526000888480600101955088611c1b565b611e6f576040516368d2bf6b60e11b815260040160405180910390fd5b808203611e07578260005414611e8457600080fd5b611ece565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611e8a575b506000556113c3565b6001600160e01b03198116811461164157600080fd5b600060208284031215611eff57600080fd5b8135611f0a81611ed7565b9392505050565b60005b83811015611f2c578181015183820152602001611f14565b50506000910152565b60008151808452611f4d816020860160208601611f11565b601f01601f19169290920160200192915050565b602081526000611f0a6020830184611f35565b600060208284031215611f8657600080fd5b5035919050565b80356001600160a01b03811681146114f157600080fd5b60008060408385031215611fb757600080fd5b611fc083611f8d565b946020939093013593505050565b801515811461164157600080fd5b600060208284031215611fee57600080fd5b8135611f0a81611fce565b60008060006060848603121561200e57600080fd5b61201784611f8d565b925061202560208501611f8d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561206557612065612035565b604051601f8501601f19908116603f0116810190828211818310171561208d5761208d612035565b816040528093508581528686860111156120a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120d257600080fd5b81356001600160401b038111156120e857600080fd5b8201601f810184136120f957600080fd5b611a1b8482356020840161204b565b6000806020838503121561211b57600080fd5b82356001600160401b038082111561213257600080fd5b818501915085601f83011261214657600080fd5b81358181111561215557600080fd5b86602082850101111561216757600080fd5b60209290920196919550909350505050565b60006020828403121561218b57600080fd5b611f0a82611f8d565b600080604083850312156121a757600080fd5b6121b083611f8d565b915060208301356121c081611fce565b809150509250929050565b600080600080608085870312156121e157600080fd5b6121ea85611f8d565b93506121f860208601611f8d565b92506040850135915060608501356001600160401b0381111561221a57600080fd5b8501601f8101871361222b57600080fd5b61223a8782356020840161204b565b91505092959194509250565b6000806040838503121561225957600080fd5b61226283611f8d565b915061227060208401611f8d565b90509250929050565b6000806040838503121561228c57600080fd5b8235915061227060208401611f8d565b600181811c908216806122b057607f821691505b6020821081036122d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561231d57600080fd5b8151611f0a81611fce565b601f82111561085757600081815260208120601f850160051c8101602086101561234f5750805b601f850160051c820191505b8181101561236e5782815560010161235b565b505050505050565b81516001600160401b0381111561238f5761238f612035565b6123a38161239d845461229c565b84612328565b602080601f8311600181146123d857600084156123c05750858301515b600019600386901b1c1916600185901b17855561236e565b600085815260208120601f198616915b82811015612407578886015182559484019460019091019084016123e8565b50858210156124255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0383111561244c5761244c612035565b6124608361245a835461229c565b83612328565b6000601f841160018114612494576000851561247c5750838201355b600019600387901b1c1916600186901b1783556113c3565b600083815260209020601f19861690835b828110156124c557868501358255602094850194600190920191016124a5565b50868210156124e25760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106f3576106f36124f4565b60006020828403121561252f57600080fd5b5051919050565b818103818111156106f3576106f36124f4565b80820281158282048414176106f3576106f36124f4565b60008351612572818460208801611f11565b835190830190612586818360208801611f11565b01949350505050565b6000600182016125a1576125a16124f4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125cd576125cd6125a8565b500490565b6000826125e1576125e16125a8565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061262f90830184611f35565b9695505050505050565b60006020828403121561264b57600080fd5b8151611f0a81611ed756fea2646970667358221220ace77cc04e9a3b52b60df0679be3c1a3780b7e9dd6cc5c4d4d148ab1ef1d931664736f6c63430008120033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5231695252327563437772744b56365069596951723556345469786376634c6b52547678596359654b594c312f696e73633432305f6a736f6e000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): https://gateway.pinata.cloud/ipfs/QmR1iRR2ucCwrtKV6PiYiQr5V4TixcvcLkRTvxYcYeKYL1/insc420_json

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005d
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5231695252327563437772744b563650695969517235563454697863
Arg [4] : 76634c6b52547678596359654b594c312f696e73633432305f6a736f6e000000


Deployed Bytecode Sourcemap

52137:3942:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29837:305;;;;;;;;;;-1:-1:-1;29837:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29837:305:0;;;;;;;;32950:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34453:204::-;;;;;;;;;;-1:-1:-1;34453:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34453:204:0;1533:203:1;34016:371:0;;;;;;;;;;-1:-1:-1;34016:371:0;;;;;:::i;:::-;;:::i;:::-;;52324:33;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;52324:33:0;2178:177:1;54512:77:0;;;;;;;;;;-1:-1:-1;54512:77:0;;;;;:::i;:::-;;:::i;29086:303::-;;;;;;;;;;-1:-1:-1;53895:1:0;29340:12;29130:7;29324:13;:28;-1:-1:-1;;29324:46:0;29086:303;;55498:163;;;;;;;;;;-1:-1:-1;55498:163:0;;;;;:::i;:::-;;:::i;52398:32::-;;;;;;;;;;;;;;;;54596:150;;;;;;;;;;;;;:::i;55669:171::-;;;;;;;;;;-1:-1:-1;55669:171:0;;;;;:::i;:::-;;:::i;53997:74::-;;;;;;;;;;-1:-1:-1;53997:74:0;;;;;:::i;:::-;;:::i;54780:132::-;;;;;;;;;;-1:-1:-1;54780:132:0;;;;;:::i;:::-;;:::i;52536:28::-;;;;;;;;;;-1:-1:-1;52536:28:0;;;;;;;;;;;54919:98;;;;;;;;;;-1:-1:-1;54919:98:0;;;;;:::i;:::-;;:::i;52513:18::-;;;;;;;;;;-1:-1:-1;52513:18:0;;;;;;;;32758:125;;;;;;;;;;-1:-1:-1;32758:125:0;;;;;:::i;:::-;;:::i;54215:94::-;;;;;;;;;;-1:-1:-1;54215:94:0;;;;;:::i;:::-;;:::i;30206:206::-;;;;;;;;;;-1:-1:-1;30206:206:0;;;;;:::i;:::-;;:::i;7595:103::-;;;;;;;;;;;;;:::i;6944:87::-;;;;;;;;;;-1:-1:-1;7017:6:0;;-1:-1:-1;;;;;7017:6:0;6944:87;;54419;;;;;;;;;;-1:-1:-1;54419:87:0;;;;;:::i;:::-;;:::i;52435:38::-;;;;;;;;;;;;;;;;33119:104;;;;;;;;;;;;;:::i;52774:892::-;;;;;;:::i;:::-;;:::i;34729:287::-;;;;;;;;;;-1:-1:-1;34729:287:0;;;;;:::i;:::-;;:::i;52285:31::-;;;;;;;;;;;;;:::i;54078:130::-;;;;;;;;;;-1:-1:-1;54078:130:0;;;;;:::i;:::-;;:::i;52478:27::-;;;;;;;;;;;;;;;;55848:228;;;;;;;;;;-1:-1:-1;55848:228:0;;;;;:::i;:::-;;:::i;55141:318::-;;;;;;;;;;-1:-1:-1;55141:318:0;;;;;:::i;:::-;;:::i;52253:27::-;;;;;;;;;;;;;:::i;52362:31::-;;;;;;;;;;;;;;;;53909:81;;;;;;;;;;-1:-1:-1;53909:81:0;;;;;:::i;:::-;;:::i;35087:164::-;;;;;;;;;;-1:-1:-1;35087:164:0;;;;;:::i;:::-;;:::i;53673:127::-;;;;;;;;;;-1:-1:-1;53673:127:0;;;;;:::i;:::-;;:::i;7853:201::-;;;;;;;;;;-1:-1:-1;7853:201:0;;;;;:::i;:::-;;:::i;54315:98::-;;;;;;;;;;-1:-1:-1;54315:98:0;;;;;:::i;:::-;;:::i;29837:305::-;29939:4;-1:-1:-1;;;;;;29976:40:0;;-1:-1:-1;;;29976:40:0;;:105;;-1:-1:-1;;;;;;;30033:48:0;;-1:-1:-1;;;30033:48:0;29976:105;:158;;;-1:-1:-1;;;;;;;;;;19837:40:0;;;30098:36;29956:178;29837:305;-1:-1:-1;;29837:305:0:o;32950:100::-;33004:13;33037:5;33030:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32950:100;:::o;34453:204::-;34521:7;34546:16;34554:7;34546;:16::i;:::-;34541:64;;34571:34;;-1:-1:-1;;;34571:34:0;;;;;;;;;;;34541:64;-1:-1:-1;34625:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34625:24:0;;34453:204::o;34016:371::-;34089:13;34105:24;34121:7;34105:15;:24::i;:::-;34089:40;;34150:5;-1:-1:-1;;;;;34144:11:0;:2;-1:-1:-1;;;;;34144:11:0;;34140:48;;34164:24;;-1:-1:-1;;;34164:24:0;;;;;;;;;;;34140:48;5748:10;-1:-1:-1;;;;;34205:21:0;;;;;;:63;;-1:-1:-1;34231:37:0;34248:5;5748:10;35087:164;:::i;34231:37::-;34230:38;34205:63;34201:138;;;34292:35;;-1:-1:-1;;;34292:35:0;;;;;;;;;;;34201:138;34351:28;34360:2;34364:7;34373:5;34351:8;:28::i;:::-;34078:309;34016:371;;:::o;54512:77::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;;;;;;;;;54568:6:::1;:15:::0;;-1:-1:-1;;54568:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54512:77::o;55498:163::-;55599:4;49918:42;51058:43;:47;51054:699;;51345:10;-1:-1:-1;;;;;51337:18:0;;;51333:85;;55616:37:::1;55635:4;55641:2;55645:7;55616:18;:37::i;:::-;51396:7:::0;;51333:85;51478:67;;-1:-1:-1;;;51478:67:0;;51527:4;51478:67;;;7549:34:1;51534:10:0;7599:18:1;;;7592:43;49918:42:0;;51478:40;;7484:18:1;;51478:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;51574:61:0;;-1:-1:-1;;;51574:61:0;;51623:4;51574:61;;;7549:34:1;-1:-1:-1;;;;;7619:15:1;;7599:18;;;7592:43;49918:42:0;;51574:40;;7484:18:1;;51574:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51432:310;;51696:30;;-1:-1:-1;;;51696:30:0;;51715:10;51696:30;;;1679:51:1;1652:18;;51696:30:0;1533:203:1;51432:310:0;55616:37:::1;55635:4;55641:2;55645:7;55616:18;:37::i;:::-;55498:163:::0;;;;:::o;54596:150::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;1918:1:::1;2516:7;;:19:::0;2508:63:::1;;;::::0;-1:-1:-1;;;2508:63:0;;8098:2:1;2508:63:0::1;::::0;::::1;8080:21:1::0;8137:2;8117:18;;;8110:30;8176:33;8156:18;;;8149:61;8227:18;;2508:63:0::1;7896:355:1::0;2508:63:0::1;1918:1;2649:7;:18:::0;54654:7:::2;54675;7017:6:::0;;-1:-1:-1;;;;;7017:6:0;;6944:87;54675:7:::2;-1:-1:-1::0;;;;;54667:21:0::2;54696;54667:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54653:69;;;54737:2;54729:11;;;::::0;::::2;;-1:-1:-1::0;1874:1:0::1;2828:7;:22:::0;54596:150::o;55669:171::-;55774:4;49918:42;51058:43;:47;51054:699;;51345:10;-1:-1:-1;;;;;51337:18:0;;;51333:85;;55791:41:::1;55814:4;55820:2;55824:7;55791:22;:41::i;51333:85::-:0;51478:67;;-1:-1:-1;;;51478:67:0;;51527:4;51478:67;;;7549:34:1;51534:10:0;7599:18:1;;;7592:43;49918:42:0;;51478:40;;7484:18:1;;51478:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;51574:61:0;;-1:-1:-1;;;51574:61:0;;51623:4;51574:61;;;7549:34:1;-1:-1:-1;;;;;7619:15:1;;7599:18;;;7592:43;49918:42:0;;51574:40;;7484:18:1;;51574:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51432:310;;51696:30;;-1:-1:-1;;;51696:30:0;;51715:10;51696:30;;;1679:51:1;1652:18;;51696:30:0;1533:203:1;51432:310:0;55791:41:::1;55814:4;55820:2;55824:7;55791:22;:41::i;53997:74::-:0;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54053:4:::1;:12:::0;53997:74::o;54780:132::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54868:17:::1;:38;54888:18:::0;54868:17;:38:::1;:::i;:::-;;54780:132:::0;:::o;54919:98::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54988:13:::1;:23;55004:7:::0;;54988:13;:23:::1;:::i;32758:125::-:0;32822:7;32849:21;32862:7;32849:12;:21::i;:::-;:26;;32758:125;-1:-1:-1;;32758:125:0:o;54215:94::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54281:9:::1;:22:::0;54215:94::o;30206:206::-;30270:7;-1:-1:-1;;;;;30294:19:0;;30290:60;;30322:28;;-1:-1:-1;;;30322:28:0;;;;;;;;;;;30290:60;-1:-1:-1;;;;;;30376:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30376:27:0;;30206:206::o;7595:103::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;7660:30:::1;7687:1;7660:18;:30::i;:::-;7595:103::o:0;54419:87::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54481:8:::1;:19:::0;54419:87::o;33119:104::-;33175:13;33208:7;33201:14;;;;;:::i;52774:892::-;1918:1;2516:7;;:19;2508:63;;;;-1:-1:-1;;;2508:63:0;;8098:2:1;2508:63:0;;;8080:21:1;8137:2;8117:18;;;8110:30;8176:33;8156:18;;;8149:61;8227:18;;2508:63:0;7896:355:1;2508:63:0;1918:1;2649:7;:18;52852:15;;;;;:52:::1;;;52886:18;;52871:11;:33;;52852:52;52844:85;;;::::0;-1:-1:-1;;;52844:85:0;;12083:2:1;52844:85:0::1;::::0;::::1;12065:21:1::0;12122:2;12102:18;;;12095:30;-1:-1:-1;;;12141:18:1;;;12134:50;12201:18;;52844:85:0::1;11881:344:1::0;52844:85:0::1;52975:9;::::0;53895:1;29340:12;29130:7;29324:13;52960:11;;29324:28;;-1:-1:-1;;29324:46:0;52944:27:::1;;;;:::i;:::-;:40;;52936:73;;;::::0;-1:-1:-1;;;52936:73:0;;12694:2:1;52936:73:0::1;::::0;::::1;12676:21:1::0;12733:2;12713:18;;;12706:30;-1:-1:-1;;;12752:18:1;;;12745:50;12812:18;;52936:73:0::1;12492:344:1::0;52936:73:0::1;53025:6;::::0;::::1;;53024:7;53016:43;;;::::0;-1:-1:-1;;;53016:43:0;;13043:2:1;53016:43:0::1;::::0;::::1;13025:21:1::0;13082:2;13062:18;;;13055:30;13121:25;13101:18;;;13094:53;13164:18;;53016:43:0::1;12841:347:1::0;53016:43:0::1;53140:8;::::0;53087:11;;53109:4:::1;:14;5748:10:::0;53109:28:::1;::::0;-1:-1:-1;;;;;;53109:28:0::1;::::0;;;;;;-1:-1:-1;;;;;1697:32:1;;;53109:28:0::1;::::0;::::1;1679:51:1::0;1652:18;;53109:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;53105:208;;;53178:8;;53164:12;:22;53160:146;;5748:10:::0;53227:22:::1;::::0;;;:8:::1;:22;::::0;;;;;53216:8:::1;::::0;:33:::1;::::0;53227:22;53216:33:::1;:::i;:::-;53202:47;::::0;;::::1;:::i;:::-;;;53160:146;;;-1:-1:-1::0;53293:1:0::1;53160:146;53347:12;53340:4;;:19;;;;:::i;:::-;53327:9;:32;;53319:64;;;::::0;-1:-1:-1;;;53319:64:0;;13890:2:1;53319:64:0::1;::::0;::::1;13872:21:1::0;13929:2;13909:18;;;13902:30;-1:-1:-1;;;13948:18:1;;;13941:49;14007:18;;53319:64:0::1;13688:343:1::0;53319:64:0::1;53413:10;::::0;53895:1;29340:12;29130:7;29324:13;:28;-1:-1:-1;;29324:46:0;53396:27:::1;53392:107;;53458:1;53446:9;:13;53438:51;;;::::0;-1:-1:-1;;;53438:51:0;;14238:2:1;53438:51:0::1;::::0;::::1;14220:21:1::0;14277:2;14257:18;;;14250:30;14316:27;14296:18;;;14289:55;14361:18;;53438:51:0::1;14036:349:1::0;53438:51:0::1;5748:10:::0;53505:22:::1;::::0;;;:8:::1;:22;::::0;;;;:35;;53529:11;;53505:22;:35:::1;::::0;53529:11;;53505:35:::1;:::i;:::-;::::0;;;-1:-1:-1;;53576:8:0::1;::::0;5748:10;53551:22:::1;::::0;;;:8:::1;:22;::::0;;;;;:33:::1;53547:70;;;53609:8;::::0;5748:10;53586:22:::1;::::0;;;:8:::1;:22;::::0;;;;:31;53547:70:::1;53624:36;5748:10:::0;53648:11:::1;53624:9;:36::i;:::-;-1:-1:-1::0;;1874:1:0;2828:7;:22;52774:892::o;34729:287::-;5748:10;-1:-1:-1;;;;;34828:24:0;;;34824:54;;34861:17;;-1:-1:-1;;;34861:17:0;;;;;;;;;;;34824:54;5748:10;34891:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34891:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34891:53:0;;;;;;;;;;34960:48;;540:41:1;;;34891:42:0;;5748:10;34960:48;;513:18:1;34960:48:0;;;;;;;34729:287;;:::o;52285:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54078:130::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54162:18:::1;:40:::0;54078:130::o;55848:228::-;55999:4;49918:42;51058:43;:47;51054:699;;51345:10;-1:-1:-1;;;;;51337:18:0;;;51333:85;;56021:47:::1;56044:4;56050:2;56054:7;56063:4;56021:22;:47::i;:::-;51396:7:::0;;51333:85;51478:67;;-1:-1:-1;;;51478:67:0;;51527:4;51478:67;;;7549:34:1;51534:10:0;7599:18:1;;;7592:43;49918:42:0;;51478:40;;7484:18:1;;51478:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;51574:61:0;;-1:-1:-1;;;51574:61:0;;51623:4;51574:61;;;7549:34:1;-1:-1:-1;;;;;7619:15:1;;7599:18;;;7592:43;49918:42:0;;51574:40;;7484:18:1;;51574:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51432:310;;51696:30;;-1:-1:-1;;;51696:30:0;;51715:10;51696:30;;;1679:51:1;1652:18;;51696:30:0;1533:203:1;51432:310:0;56021:47:::1;56044:4;56050:2;56054:7;56063:4;56021:22;:47::i;:::-;55848:228:::0;;;;;:::o;55141:318::-;55215:13;55247:17;55255:8;55247:7;:17::i;:::-;55239:49;;;;-1:-1:-1;;;55239:49:0;;14592:2:1;55239:49:0;;;14574:21:1;14631:2;14611:18;;;14604:30;-1:-1:-1;;;14650:18:1;;;14643:49;14709:18;;55239:49:0;14390:343:1;55239:49:0;55304:8;;;;;;;55300:154;;;55358:10;:8;:10::i;:::-;55370:19;:8;:17;:19::i;:::-;55341:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55327:64;;55141:318;;;:::o;55300:154::-;55427:17;55420:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55141:318;;;:::o;55300:154::-;55141:318;;;:::o;52253:27::-;;;;;;;:::i;53909:81::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;53967:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;53967:17:0;;::::1;::::0;;;::::1;::::0;;53909:81::o;35087:164::-;-1:-1:-1;;;;;35208:25:0;;;35184:4;35208:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35087:164::o;53673:127::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;53761:33:::1;53771:9;53782:11;53761:9;:33::i;7853:201::-:0;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7942:22:0;::::1;7934:73;;;::::0;-1:-1:-1;;;7934:73:0;;15441:2:1;7934:73:0::1;::::0;::::1;15423:21:1::0;15480:2;15460:18;;;15453:30;15519:34;15499:18;;;15492:62;-1:-1:-1;;;15570:18:1;;;15563:36;15616:19;;7934:73:0::1;15239:402:1::0;7934:73:0::1;8018:28;8037:8;8018:18;:28::i;:::-;7853:201:::0;:::o;54315:98::-;7017:6;;-1:-1:-1;;;;;7017:6:0;5748:10;7164:23;7156:68;;;;-1:-1:-1;;;7156:68:0;;;;;;;:::i;:::-;54383:10:::1;:24:::0;54315:98::o;36439:174::-;36496:4;36539:7;53895:1;36520:26;;:53;;;;;36560:13;;36550:7;:23;36520:53;:85;;;;-1:-1:-1;;36578:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36578:27:0;;;;36577:28;;36439:174::o;44596:196::-;44711:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44711:29:0;-1:-1:-1;;;;;44711:29:0;;;;;;;;;44756:28;;44711:24;;44756:28;;;;;;;44596:196;;;:::o;35318:170::-;35452:28;35462:4;35468:2;35472:7;35452:9;:28::i;35559:185::-;35697:39;35714:4;35720:2;35724:7;35697:39;;;;;;;;;;;;:16;:39::i;31587:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31698:7:0;;53895:1;31747:23;;:47;;;;;31781:13;;31774:4;:20;31747:47;31743:886;;;31815:31;31849:17;;;:11;:17;;;;;;;;;31815:51;;;;;;;;;-1:-1:-1;;;;;31815:51:0;;;;-1:-1:-1;;;31815:51:0;;-1:-1:-1;;;;;31815:51:0;;;;;;;;-1:-1:-1;;;31815:51:0;;;;;;;;;;;;;;31885:729;;31935:14;;-1:-1:-1;;;;;31935:28:0;;31931:101;;31999:9;31587:1109;-1:-1:-1;;;31587:1109:0:o;31931:101::-;-1:-1:-1;;;32374:6:0;32419:17;;;;:11;:17;;;;;;;;;32407:29;;;;;;;;;-1:-1:-1;;;;;32407:29:0;;;;;-1:-1:-1;;;32407:29:0;;-1:-1:-1;;;;;32407:29:0;;;;;;;;-1:-1:-1;;;32407:29:0;;;;;;;;;;;;;32467:28;32463:109;;32535:9;31587:1109;-1:-1:-1;;;31587:1109:0:o;32463:109::-;32334:261;;;31796:833;31743:886;32657:31;;-1:-1:-1;;;32657:31:0;;;;;;;;;;;8214:191;8307:6;;;-1:-1:-1;;;;;8324:17:0;;;-1:-1:-1;;;;;;8324:17:0;;;;;;;8357:40;;8307:6;;;8324:17;8307:6;;8357:40;;8288:16;;8357:40;8277:128;8214:191;:::o;36621:104::-;36690:27;36700:2;36704:8;36690:27;;;;;;;;;;;;:9;:27::i;35815:369::-;35982:28;35992:4;35998:2;36002:7;35982:9;:28::i;:::-;-1:-1:-1;;;;;36025:13:0;;9940:19;:23;;36025:76;;;;;36045:56;36076:4;36082:2;36086:7;36095:5;36045:30;:56::i;:::-;36044:57;36025:76;36021:156;;;36125:40;;-1:-1:-1;;;36125:40:0;;;;;;;;;;;55024:110;55084:13;55115;55108:20;;;;;:::i;3230:723::-;3286:13;3507:5;3516:1;3507:10;3503:53;;-1:-1:-1;;3534:10:0;;;;;;;;;;;;-1:-1:-1;;;3534:10:0;;;;;3230:723::o;3503:53::-;3581:5;3566:12;3622:78;3629:9;;3622:78;;3655:8;;;;:::i;:::-;;-1:-1:-1;3678:10:0;;-1:-1:-1;3686:2:0;3678:10;;:::i;:::-;;;3622:78;;;3710:19;3742:6;-1:-1:-1;;;;;3732:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3732:17:0;;3710:39;;3760:154;3767:10;;3760:154;;3794:11;3804:1;3794:11;;:::i;:::-;;-1:-1:-1;3863:10:0;3871:2;3863:5;:10;:::i;:::-;3850:24;;:2;:24;:::i;:::-;3837:39;;3820:6;3827;3820:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3820:56:0;;;;;;;;-1:-1:-1;3891:11:0;3900:2;3891:11;;:::i;:::-;;;3760:154;;;3938:6;3230:723;-1:-1:-1;;;;3230:723:0:o;39539:2130::-;39654:35;39692:21;39705:7;39692:12;:21::i;:::-;39654:59;;39752:4;-1:-1:-1;;;;;39730:26:0;:13;:18;;;-1:-1:-1;;;;;39730:26:0;;39726:67;;39765:28;;-1:-1:-1;;;39765:28:0;;;;;;;;;;;39726:67;39806:22;5748:10;-1:-1:-1;;;;;39832:20:0;;;;:73;;-1:-1:-1;39869:36:0;39886:4;5748:10;35087:164;:::i;39869:36::-;39832:126;;;-1:-1:-1;5748:10:0;39922:20;39934:7;39922:11;:20::i;:::-;-1:-1:-1;;;;;39922:36:0;;39832:126;39806:153;;39977:17;39972:66;;40003:35;;-1:-1:-1;;;40003:35:0;;;;;;;;;;;39972:66;-1:-1:-1;;;;;40053:16:0;;40049:52;;40078:23;;-1:-1:-1;;;40078:23:0;;;;;;;;;;;40049:52;40222:35;40239:1;40243:7;40252:4;40222:8;:35::i;:::-;-1:-1:-1;;;;;40553:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40553:31:0;;;-1:-1:-1;;;;;40553:31:0;;;-1:-1:-1;;40553:31:0;;;;;;;40599:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40599:29:0;;;;;;;;;;;40679:20;;;:11;:20;;;;;;40714:18;;-1:-1:-1;;;;;;40747:49:0;;;;-1:-1:-1;;;40780:15:0;40747:49;;;;;;;;;;41070:11;;41130:24;;;;;41173:13;;40679:20;;41130:24;;41173:13;41169:384;;41383:13;;41368:11;:28;41364:174;;41421:20;;41490:28;;;;-1:-1:-1;;;;;41464:54:0;-1:-1:-1;;;41464:54:0;-1:-1:-1;;;;;;41464:54:0;;;-1:-1:-1;;;;;41421:20:0;;41464:54;;;;41364:174;40528:1036;;;41600:7;41596:2;-1:-1:-1;;;;;41581:27:0;41590:4;-1:-1:-1;;;;;41581:27:0;;;;;;;;;;;41619:42;55498:163;37088;37211:32;37217:2;37221:8;37231:5;37238:4;37211:5;:32::i;45284:667::-;45468:72;;-1:-1:-1;;;45468:72:0;;45447:4;;-1:-1:-1;;;;;45468:36:0;;;;;:72;;5748:10;;45519:4;;45525:7;;45534:5;;45468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45468:72:0;;;;;;;;-1:-1:-1;;45468:72:0;;;;;;;;;;;;:::i;:::-;;;45464:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45702:6;:13;45719:1;45702:18;45698:235;;45748:40;;-1:-1:-1;;;45748:40:0;;;;;;;;;;;45698:235;45891:6;45885:13;45876:6;45872:2;45868:15;45861:38;45464:480;-1:-1:-1;;;;;;45587:55:0;-1:-1:-1;;;45587:55:0;;-1:-1:-1;45284:667:0;;;;;;:::o;37510:1775::-;37649:20;37672:13;-1:-1:-1;;;;;37700:16:0;;37696:48;;37725:19;;-1:-1:-1;;;37725:19:0;;;;;;;;;;;37696:48;37759:8;37771:1;37759:13;37755:44;;37781:18;;-1:-1:-1;;;37781:18:0;;;;;;;;;;;37755:44;-1:-1:-1;;;;;38150:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38209:49:0;;-1:-1:-1;;;;;38150:44:0;;;;;;;38209:49;;;;-1:-1:-1;;38150:44:0;;;;;;38209:49;;;;;;;;;;;;;;;;38275:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38325:66:0;;;;-1:-1:-1;;;38375:15:0;38325:66;;;;;;;;;;38275:25;38472:23;;;38516:4;:23;;;;-1:-1:-1;;;;;;38524:13:0;;9940:19;:23;;38524:15;38512:641;;;38560:314;38591:38;;38616:12;;-1:-1:-1;;;;;38591:38:0;;;38608:1;;38591:38;;38608:1;;38591:38;38657:69;38696:1;38700:2;38704:14;;;;;;38720:5;38657:30;:69::i;:::-;38652:174;;38762:40;;-1:-1:-1;;;38762:40:0;;;;;;;;;;;38652:174;38869:3;38853:12;:19;38560:314;;38955:12;38938:13;;:29;38934:43;;38969:8;;;38934:43;38512:641;;;39018:120;39049:40;;39074:14;;;;;-1:-1:-1;;;;;39049:40:0;;;39066:1;;39049:40;;39066:1;;39049:40;39133:3;39117:12;:19;39018:120;;38512:641;-1:-1:-1;39167:13:0;:28;39217:60;55498:163;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:118::-;2446:5;2439:13;2432:21;2425:5;2422:32;2412:60;;2468:1;2465;2458:12;2483:241;2539:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:52;;;2608:1;2605;2598:12;2560:52;2647:9;2634:23;2666:28;2688:5;2666:28;:::i;2729:328::-;2806:6;2814;2822;2875:2;2863:9;2854:7;2850:23;2846:32;2843:52;;;2891:1;2888;2881:12;2843:52;2914:29;2933:9;2914:29;:::i;:::-;2904:39;;2962:38;2996:2;2985:9;2981:18;2962:38;:::i;:::-;2952:48;;3047:2;3036:9;3032:18;3019:32;3009:42;;2729:328;;;;;:::o;3062:127::-;3123:10;3118:3;3114:20;3111:1;3104:31;3154:4;3151:1;3144:15;3178:4;3175:1;3168:15;3194:632;3259:5;-1:-1:-1;;;;;3330:2:1;3322:6;3319:14;3316:40;;;3336:18;;:::i;:::-;3411:2;3405:9;3379:2;3465:15;;-1:-1:-1;;3461:24:1;;;3487:2;3457:33;3453:42;3441:55;;;3511:18;;;3531:22;;;3508:46;3505:72;;;3557:18;;:::i;:::-;3597:10;3593:2;3586:22;3626:6;3617:15;;3656:6;3648;3641:22;3696:3;3687:6;3682:3;3678:16;3675:25;3672:45;;;3713:1;3710;3703:12;3672:45;3763:6;3758:3;3751:4;3743:6;3739:17;3726:44;3818:1;3811:4;3802:6;3794;3790:19;3786:30;3779:41;;;;3194:632;;;;;:::o;3831:451::-;3900:6;3953:2;3941:9;3932:7;3928:23;3924:32;3921:52;;;3969:1;3966;3959:12;3921:52;4009:9;3996:23;-1:-1:-1;;;;;4034:6:1;4031:30;4028:50;;;4074:1;4071;4064:12;4028:50;4097:22;;4150:4;4142:13;;4138:27;-1:-1:-1;4128:55:1;;4179:1;4176;4169:12;4128:55;4202:74;4268:7;4263:2;4250:16;4245:2;4241;4237:11;4202:74;:::i;4287:592::-;4358:6;4366;4419:2;4407:9;4398:7;4394:23;4390:32;4387:52;;;4435:1;4432;4425:12;4387:52;4475:9;4462:23;-1:-1:-1;;;;;4545:2:1;4537:6;4534:14;4531:34;;;4561:1;4558;4551:12;4531:34;4599:6;4588:9;4584:22;4574:32;;4644:7;4637:4;4633:2;4629:13;4625:27;4615:55;;4666:1;4663;4656:12;4615:55;4706:2;4693:16;4732:2;4724:6;4721:14;4718:34;;;4748:1;4745;4738:12;4718:34;4793:7;4788:2;4779:6;4775:2;4771:15;4767:24;4764:37;4761:57;;;4814:1;4811;4804:12;4761:57;4845:2;4837:11;;;;;4867:6;;-1:-1:-1;4287:592:1;;-1:-1:-1;;;;4287:592:1:o;4884:186::-;4943:6;4996:2;4984:9;4975:7;4971:23;4967:32;4964:52;;;5012:1;5009;5002:12;4964:52;5035:29;5054:9;5035:29;:::i;5075:315::-;5140:6;5148;5201:2;5189:9;5180:7;5176:23;5172:32;5169:52;;;5217:1;5214;5207:12;5169:52;5240:29;5259:9;5240:29;:::i;:::-;5230:39;;5319:2;5308:9;5304:18;5291:32;5332:28;5354:5;5332:28;:::i;:::-;5379:5;5369:15;;;5075:315;;;;;:::o;5395:667::-;5490:6;5498;5506;5514;5567:3;5555:9;5546:7;5542:23;5538:33;5535:53;;;5584:1;5581;5574:12;5535:53;5607:29;5626:9;5607:29;:::i;:::-;5597:39;;5655:38;5689:2;5678:9;5674:18;5655:38;:::i;:::-;5645:48;;5740:2;5729:9;5725:18;5712:32;5702:42;;5795:2;5784:9;5780:18;5767:32;-1:-1:-1;;;;;5814:6:1;5811:30;5808:50;;;5854:1;5851;5844:12;5808:50;5877:22;;5930:4;5922:13;;5918:27;-1:-1:-1;5908:55:1;;5959:1;5956;5949:12;5908:55;5982:74;6048:7;6043:2;6030:16;6025:2;6021;6017:11;5982:74;:::i;:::-;5972:84;;;5395:667;;;;;;;:::o;6067:260::-;6135:6;6143;6196:2;6184:9;6175:7;6171:23;6167:32;6164:52;;;6212:1;6209;6202:12;6164:52;6235:29;6254:9;6235:29;:::i;:::-;6225:39;;6283:38;6317:2;6306:9;6302:18;6283:38;:::i;:::-;6273:48;;6067:260;;;;;:::o;6332:254::-;6400:6;6408;6461:2;6449:9;6440:7;6436:23;6432:32;6429:52;;;6477:1;6474;6467:12;6429:52;6513:9;6500:23;6490:33;;6542:38;6576:2;6565:9;6561:18;6542:38;:::i;6591:380::-;6670:1;6666:12;;;;6713;;;6734:61;;6788:4;6780:6;6776:17;6766:27;;6734:61;6841:2;6833:6;6830:14;6810:18;6807:38;6804:161;;6887:10;6882:3;6878:20;6875:1;6868:31;6922:4;6919:1;6912:15;6950:4;6947:1;6940:15;6804:161;;6591:380;;;:::o;6976:356::-;7178:2;7160:21;;;7197:18;;;7190:30;7256:34;7251:2;7236:18;;7229:62;7323:2;7308:18;;6976:356::o;7646:245::-;7713:6;7766:2;7754:9;7745:7;7741:23;7737:32;7734:52;;;7782:1;7779;7772:12;7734:52;7814:9;7808:16;7833:28;7855:5;7833:28;:::i;8592:545::-;8694:2;8689:3;8686:11;8683:448;;;8730:1;8755:5;8751:2;8744:17;8800:4;8796:2;8786:19;8870:2;8858:10;8854:19;8851:1;8847:27;8841:4;8837:38;8906:4;8894:10;8891:20;8888:47;;;-1:-1:-1;8929:4:1;8888:47;8984:2;8979:3;8975:12;8972:1;8968:20;8962:4;8958:31;8948:41;;9039:82;9057:2;9050:5;9047:13;9039:82;;;9102:17;;;9083:1;9072:13;9039:82;;;9043:3;;;8592:545;;;:::o;9313:1352::-;9439:3;9433:10;-1:-1:-1;;;;;9458:6:1;9455:30;9452:56;;;9488:18;;:::i;:::-;9517:97;9607:6;9567:38;9599:4;9593:11;9567:38;:::i;:::-;9561:4;9517:97;:::i;:::-;9669:4;;9733:2;9722:14;;9750:1;9745:663;;;;10452:1;10469:6;10466:89;;;-1:-1:-1;10521:19:1;;;10515:26;10466:89;-1:-1:-1;;9270:1:1;9266:11;;;9262:24;9258:29;9248:40;9294:1;9290:11;;;9245:57;10568:81;;9715:944;;9745:663;8539:1;8532:14;;;8576:4;8563:18;;-1:-1:-1;;9781:20:1;;;9899:236;9913:7;9910:1;9907:14;9899:236;;;10002:19;;;9996:26;9981:42;;10094:27;;;;10062:1;10050:14;;;;9929:19;;9899:236;;;9903:3;10163:6;10154:7;10151:19;10148:201;;;10224:19;;;10218:26;-1:-1:-1;;10307:1:1;10303:14;;;10319:3;10299:24;10295:37;10291:42;10276:58;10261:74;;10148:201;-1:-1:-1;;;;;10395:1:1;10379:14;;;10375:22;10362:36;;-1:-1:-1;9313:1352:1:o;10670:1206::-;-1:-1:-1;;;;;10789:3:1;10786:27;10783:53;;;10816:18;;:::i;:::-;10845:94;10935:3;10895:38;10927:4;10921:11;10895:38;:::i;:::-;10889:4;10845:94;:::i;:::-;10965:1;10990:2;10985:3;10982:11;11007:1;11002:616;;;;11662:1;11679:3;11676:93;;;-1:-1:-1;11735:19:1;;;11722:33;11676:93;-1:-1:-1;;9270:1:1;9266:11;;;9262:24;9258:29;9248:40;9294:1;9290:11;;;9245:57;11782:78;;10975:895;;11002:616;8539:1;8532:14;;;8576:4;8563:18;;-1:-1:-1;;11038:17:1;;;11139:9;11161:229;11175:7;11172:1;11169:14;11161:229;;;11264:19;;;11251:33;11236:49;;11371:4;11356:20;;;;11324:1;11312:14;;;;11191:12;11161:229;;;11165:3;11418;11409:7;11406:16;11403:159;;;11542:1;11538:6;11532:3;11526;11523:1;11519:11;11515:21;11511:34;11507:39;11494:9;11489:3;11485:19;11472:33;11468:79;11460:6;11453:95;11403:159;;;11605:1;11599:3;11596:1;11592:11;11588:19;11582:4;11575:33;10975:895;;10670:1206;;;:::o;12230:127::-;12291:10;12286:3;12282:20;12279:1;12272:31;12322:4;12319:1;12312:15;12346:4;12343:1;12336:15;12362:125;12427:9;;;12448:10;;;12445:36;;;12461:18;;:::i;13193:184::-;13263:6;13316:2;13304:9;13295:7;13291:23;13287:32;13284:52;;;13332:1;13329;13322:12;13284:52;-1:-1:-1;13355:16:1;;13193:184;-1:-1:-1;13193:184:1:o;13382:128::-;13449:9;;;13470:11;;;13467:37;;;13484:18;;:::i;13515:168::-;13588:9;;;13619;;13636:15;;;13630:22;;13616:37;13606:71;;13657:18;;:::i;14738:496::-;14917:3;14955:6;14949:13;14971:66;15030:6;15025:3;15018:4;15010:6;15006:17;14971:66;:::i;:::-;15100:13;;15059:16;;;;15122:70;15100:13;15059:16;15169:4;15157:17;;15122:70;:::i;:::-;15208:20;;14738:496;-1:-1:-1;;;;14738:496:1:o;15646:135::-;15685:3;15706:17;;;15703:43;;15726:18;;:::i;:::-;-1:-1:-1;15773:1:1;15762:13;;15646:135::o;15786:127::-;15847:10;15842:3;15838:20;15835:1;15828:31;15878:4;15875:1;15868:15;15902:4;15899:1;15892:15;15918:120;15958:1;15984;15974:35;;15989:18;;:::i;:::-;-1:-1:-1;16023:9:1;;15918:120::o;16043:112::-;16075:1;16101;16091:35;;16106:18;;:::i;:::-;-1:-1:-1;16140:9:1;;16043:112::o;16160:127::-;16221:10;16216:3;16212:20;16209:1;16202:31;16252:4;16249:1;16242:15;16276:4;16273:1;16266:15;16292:489;-1:-1:-1;;;;;16561:15:1;;;16543:34;;16613:15;;16608:2;16593:18;;16586:43;16660:2;16645:18;;16638:34;;;16708:3;16703:2;16688:18;;16681:31;;;16486:4;;16729:46;;16755:19;;16747:6;16729:46;:::i;:::-;16721:54;16292:489;-1:-1:-1;;;;;;16292:489:1:o;16786:249::-;16855:6;16908:2;16896:9;16887:7;16883:23;16879:32;16876:52;;;16924:1;16921;16914:12;16876:52;16956:9;16950:16;16975:30;16999:5;16975:30;:::i

Swarm Source

ipfs://ace77cc04e9a3b52b60df0679be3c1a3780b7e9dd6cc5c4d4d148ab1ef1d9316
Loading...
Loading
Loading...
Loading
[ 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.