ETH Price: $3,439.05 (-1.29%)

Token

Ongaku (Ongaku)
 

Overview

Max Total Supply

175 Ongaku

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jpegflipflops.eth
Balance
2 Ongaku
0x9B266AA7E5eA5c090FDDAA360f1B10cD93BCc3D0
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:
Ongaku

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 6: Ongaku.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;


import "./DefaultOperatorFilterer.sol";

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

contract Ongaku is Ownable, ERC721A, DefaultOperatorFilterer {

    using ECDSA for bytes32;
    using Strings for uint;

    address private signerAddressWL;

    enum Step {
        Before,
        WhitelistSale,
        PublicSale,
        SoldOut
    }

    string public baseURI;

    Step public sellingStep;

    uint private constant MAX_PUBLIC = 1833;
    uint private constant MAX_WL = 1500;

    uint public wlSalePrice = 0.0075 ether;
    uint public publicSalePrice = 0.01 ether;

    mapping(address => uint) public mintedAmountNFTsperWalletWhitelistSale;
    mapping(address => uint) public mintedAmountNFTsperWalletPublicSale;

    uint public maxMintAmountPerWhitelist = 2; 
    uint public maxMintAmountPerPublic = 3; 

    constructor(address _signerAddressWL, string memory _baseURI) ERC721A("Ongaku", "Ongaku"){
        signerAddressWL = _signerAddressWL;
        baseURI = _baseURI;
    }

    function mintForOwner(uint quantity) external onlyOwner{
        _mint(msg.sender, quantity);
    }

    function publicSaleMint(uint _quantity) external payable {
        uint price = publicSalePrice;
        if(price <= 0) revert("Price is 0");
        if(sellingStep != Step.PublicSale) revert("Public Mint not live.");
        if(totalSupply() + _quantity > (MAX_PUBLIC + MAX_WL)) revert("max exceeded");
        if(msg.value < price * _quantity) revert("Not enough funds");
        if(mintedAmountNFTsperWalletPublicSale[msg.sender] + _quantity > maxMintAmountPerPublic) revert("max exceeded");

        mintedAmountNFTsperWalletPublicSale[msg.sender] += _quantity;

        _mint(msg.sender, _quantity);
    }

    function WLMint(uint _quantity, bytes calldata signature) external payable {
        uint price = wlSalePrice;
        if(price <= 0) revert("Price is 0");
        if(sellingStep != Step.WhitelistSale) revert("WL Mint not live.");
        if(totalSupply() + _quantity > (MAX_WL)) revert("Max supply exceeded for WL exceeded");
        if(msg.value < price * _quantity) revert("Not enough funds");          
        if(signerAddressWL != keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                bytes32(uint256(uint160(msg.sender)))
            )
        ).recover(signature)) revert("You are not in WL whitelist");
        if(mintedAmountNFTsperWalletWhitelistSale[msg.sender] + _quantity > maxMintAmountPerWhitelist) revert("max exceeded");
            
        mintedAmountNFTsperWalletWhitelistSale[msg.sender] += _quantity;
        _mint(msg.sender, _quantity);
    }

    function currentState() external view returns (Step, uint, uint, uint, uint) {
        return (sellingStep, publicSalePrice, wlSalePrice, maxMintAmountPerWhitelist, maxMintAmountPerPublic);
    }

    function changeWlSalePrice(uint256 new_price) external onlyOwner{
        wlSalePrice = new_price;
    }

    function changePublicSalePrice(uint256 new_price) external onlyOwner{
        publicSalePrice = new_price;
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function setMaxMintPerWhitelist(uint amount) external onlyOwner{
        maxMintAmountPerWhitelist = amount;
    }

    function setMaxMintPerPublic(uint amount) external onlyOwner{
        maxMintAmountPerPublic = amount;
    }

    function getNumberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    function getNumberWLMinted(address account) external view returns (uint256) {
        return mintedAmountNFTsperWalletWhitelistSale[account];
    }

    function getNumberPublicMinted(address account) external view returns (uint256) {
        return mintedAmountNFTsperWalletPublicSale[account];
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, _toString(_tokenId), ".json"));
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

}

File 1 of 6: .deps...npm...@openzeppelin...contracts...utils...structs...EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 2 of 6: DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

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

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

File 3 of 6: EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 4 of 6: IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {EnumerableSet} from "./EnumerableSet.sol";

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external 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);
}

File 6 of 6: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

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() virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signerAddressWL","type":"address"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","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":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"WLMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"changeWlSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"enum Ongaku.Step","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberPublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNumberWLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmountPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountNFTsperWalletPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountNFTsperWalletWhitelistSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum Ongaku.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","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"},{"inputs":[],"name":"wlSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052661aa535d3d0c000600c55662386f26fc10000600d55600260105560036011553480156200003157600080fd5b506040516200260a3803806200260a8339810160408190526200005491620002ca565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806040016040528060068152602001654f6e67616b7560d01b815250604051806040016040528060068152602001654f6e67616b7560d01b815250620000c3620000bd6200026060201b60201c565b62000264565b6003620000d183826200044f565b506004620000e082826200044f565b506001805550506daaeb6d7670e522a718067333cd4e3b156200022c5780156200017a57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200015b57600080fd5b505af115801562000170573d6000803e3d6000fd5b505050506200022c565b6001600160a01b03821615620001cb5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000140565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021257600080fd5b505af115801562000227573d6000803e3d6000fd5b505050505b5050600980546001600160a01b0319166001600160a01b038416179055600a6200025782826200044f565b5050506200051b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215620002de57600080fd5b82516001600160a01b0381168114620002f657600080fd5b602084810151919350906001600160401b03808211156200031657600080fd5b818601915086601f8301126200032b57600080fd5b815181811115620003405762000340620002b4565b604051601f8201601f19908116603f011681019083821181831017156200036b576200036b620002b4565b8160405282815289868487010111156200038457600080fd5b600093505b82841015620003a8578484018601518185018701529285019262000389565b60008684830101528096505050505050509250929050565b600181811c90821680620003d557607f821691505b602082108103620003f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044a57600081815260208120601f850160051c81016020861015620004255750805b601f850160051c820191505b81811015620004465782815560010162000431565b5050505b505050565b81516001600160401b038111156200046b576200046b620002b4565b62000483816200047c8454620003c0565b84620003fc565b602080601f831160018114620004bb5760008415620004a25750858301515b600019600386901b1c1916600185901b17855562000446565b600085815260208120601f198616915b82811015620004ec57888601518255948401946001909101908401620004cb565b50858210156200050b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6120df806200052b6000396000f3fe60806040526004361061022f5760003560e01c806370a082311161012e578063b3ab66b0116100ab578063d0cd8e691161006f578063d0cd8e6914610676578063e985e9c5146106a3578063ea900475146106c3578063f2fde38b146106f9578063f8dcbddb1461071957600080fd5b8063b3ab66b0146105cf578063b88d4fde146105e2578063b9bbe00a14610602578063c87b56dd1461062f578063cbccefb21461064f57600080fd5b80638da5cb5b116100f25780638da5cb5b1461054657806395d89b41146105645780639b6860c814610579578063a0bcfc7f1461058f578063a22cb465146105af57600080fd5b806370a08231146104a5578063715018a6146104c5578063734c66bd146104da5780637f16053a146104f05780638a59a7fd1461052657600080fd5b80633ccfd60b116101bc57806359d20e611161018057806359d20e611461041d5780635b2fda671461043d5780636352211e1461045057806363bc312a146104705780636c0360eb1461049057600080fd5b80633ccfd60b1461039257806342842e0e146103a757806349e949e7146103c75780634ef22ea9146103e75780634fda7285146103fd57600080fd5b8063095ea7b311610203578063095ea7b3146102e55780630c3f6acf1461030557806318160ddd1461033557806323b872dd1461035c5780632cefffa71461037c57600080fd5b8062eb70131461023457806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad575b600080fd5b34801561024057600080fd5b5061025461024f366004611a14565b610739565b005b34801561026257600080fd5b50610276610271366004611a43565b610746565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610798565b6040516102829190611ab0565b3480156102b957600080fd5b506102cd6102c8366004611a14565b61082a565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610254610300366004611adf565b61086e565b34801561031157600080fd5b50600b54600d54600c546010546011546040516102829560ff169493929190611b41565b34801561034157600080fd5b5060025460015403600019015b604051908152602001610282565b34801561036857600080fd5b50610254610377366004611b71565b61090e565b34801561038857600080fd5b5061034e60105481565b34801561039e57600080fd5b50610254610aa7565b3480156103b357600080fd5b506102546103c2366004611b71565b610ad5565b3480156103d357600080fd5b506102546103e2366004611a14565b610af5565b3480156103f357600080fd5b5061034e60115481565b34801561040957600080fd5b50610254610418366004611a14565b610b02565b34801561042957600080fd5b50610254610438366004611a14565b610b0f565b61025461044b366004611bad565b610b1c565b34801561045c57600080fd5b506102cd61046b366004611a14565b610ddd565b34801561047c57600080fd5b5061025461048b366004611a14565b610de8565b34801561049c57600080fd5b506102a0610dfd565b3480156104b157600080fd5b5061034e6104c0366004611c29565b610e8b565b3480156104d157600080fd5b50610254610eda565b3480156104e657600080fd5b5061034e600c5481565b3480156104fc57600080fd5b5061034e61050b366004611c29565b6001600160a01b03166000908152600f602052604090205490565b34801561053257600080fd5b5061034e610541366004611c29565b610eec565b34801561055257600080fd5b506000546001600160a01b03166102cd565b34801561057057600080fd5b506102a0610f17565b34801561058557600080fd5b5061034e600d5481565b34801561059b57600080fd5b506102546105aa366004611cd0565b610f26565b3480156105bb57600080fd5b506102546105ca366004611d19565b610f3e565b6102546105dd366004611a14565b610fd3565b3480156105ee57600080fd5b506102546105fd366004611d55565b611169565b34801561060e57600080fd5b5061034e61061d366004611c29565b600f6020526000908152604090205481565b34801561063b57600080fd5b506102a061064a366004611a14565b6111ad565b34801561065b57600080fd5b50600b546106699060ff1681565b6040516102829190611dd1565b34801561068257600080fd5b5061034e610691366004611c29565b600e6020526000908152604090205481565b3480156106af57600080fd5b506102766106be366004611ddf565b611236565b3480156106cf57600080fd5b5061034e6106de366004611c29565b6001600160a01b03166000908152600e602052604090205490565b34801561070557600080fd5b50610254610714366004611c29565b611264565b34801561072557600080fd5b50610254610734366004611a14565b6112da565b610741611318565b601055565b60006301ffc9a760e01b6001600160e01b03198316148061077757506380ac58cd60e01b6001600160e01b03198316145b806107925750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107a790611e12565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390611e12565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b600061083582611372565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061087982610ddd565b9050336001600160a01b038216146108b2576108958133611236565b6108b2576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610919826113a7565b9050836001600160a01b0316816001600160a01b03161461094c5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109995761097c8633611236565b61099957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109c057604051633a954ecd60e21b815260040160405180910390fd5b80156109cb57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610a5d57600184016000818152600560205260408120549003610a5b576001548114610a5b5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610aaf611318565b60405133904780156108fc02916000818181858888f19350505050610ad357600080fd5b565b610af083838360405180602001604052806000815250611169565b505050565b610afd611318565b601155565b610b0a611318565b600d55565b610b17611318565b600c55565b600c5480610b5e5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064015b60405180910390fd5b6001600b5460ff166003811115610b7757610b77611b09565b14610bb85760405162461bcd60e51b81526020600482015260116024820152702ba61026b4b73a103737ba103634bb329760791b6044820152606401610b55565b6002546001546105dc9186910360001901610bd39190611e62565b1115610c2d5760405162461bcd60e51b815260206004820152602360248201527f4d617820737570706c7920657863656564656420666f7220574c20657863656560448201526219195960ea1b6064820152608401610b55565b610c378482611e75565b341015610c795760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610b55565b610d0f83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610ceb9050565b6040516020818303038152906040528051906020012061141d90919063ffffffff16565b6009546001600160a01b03908116911614610d6c5760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f7420696e20574c2077686974656c69737400000000006044820152606401610b55565b601054336000908152600e6020526040902054610d8a908690611e62565b1115610da85760405162461bcd60e51b8152600401610b5590611e8c565b336000908152600e602052604081208054869290610dc7908490611e62565b90915550610dd790503385611441565b50505050565b6000610792826113a7565b610df0611318565b610dfa3382611441565b50565b600a8054610e0a90611e12565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3690611e12565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b505050505081565b60006001600160a01b038216610eb4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610ee2611318565b610ad3600061153f565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610792565b6060600480546107a790611e12565b610f2e611318565b600a610f3a8282611ef8565b5050565b336001600160a01b03831603610f675760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d54806110105760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610b55565b6002600b5460ff16600381111561102957611029611b09565b1461106e5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610b55565b61107c6105dc610729611e62565b60025460015484919003600019016110949190611e62565b11156110b25760405162461bcd60e51b8152600401610b5590611e8c565b6110bc8282611e75565b3410156110fe5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610b55565b601154336000908152600f602052604090205461111c908490611e62565b111561113a5760405162461bcd60e51b8152600401610b5590611e8c565b336000908152600f602052604081208054849290611159908490611e62565b90915550610f3a90503383611441565b61117484848461090e565b6001600160a01b0383163b15610dd7576111908484848461158f565b610dd7576040516368d2bf6b60e11b815260040160405180910390fd5b60606111b882611372565b6112045760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b55565b600a61120f8361167b565b604051602001611220929190611fb8565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61126c611318565b6001600160a01b0381166112d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b55565b610dfa8161153f565b6112e2611318565b8060038111156112f4576112f4611b09565b600b805460ff1916600183600381111561131057611310611b09565b021790555050565b6000546001600160a01b03163314610ad35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b55565b600081600111158015611386575060015482105b8015610792575050600090815260056020526040902054600160e01b161590565b60008180600111611404576001548110156114045760008181526005602052604081205490600160e01b82169003611402575b806000036113fb5750600019016000818152600560205260409020546113da565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080600061142c85856116ca565b9150915061143981611738565b509392505050565b60015460008290036114665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461151557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016114dd565b508160000361153657604051622e076360e81b815260040160405180910390fd5b60015550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115c490339089908890889060040161204f565b6020604051808303816000875af19250505080156115ff575060408051601f3d908101601f191682019092526115fc9181019061208c565b60015b61165d573d80801561162d576040519150601f19603f3d011682016040523d82523d6000602084013e611632565b606091505b508051600003611655576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b80156116b857600183039250600a81066030018353600a900461169a565b50819003601f19909101908152919050565b60008082516041036117005760208301516040840151606085015160001a6116f4878285856118ee565b94509450505050611731565b8251604003611729576020830151604084015161171e8683836119db565b935093505050611731565b506000905060025b9250929050565b600081600481111561174c5761174c611b09565b036117545750565b600181600481111561176857611768611b09565b036117b55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b55565b60028160048111156117c9576117c9611b09565b036118165760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b55565b600381600481111561182a5761182a611b09565b036118825760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b55565b600481600481111561189657611896611b09565b03610dfa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b55565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561192557506000905060036119d2565b8460ff16601b1415801561193d57508460ff16601c14155b1561194e57506000905060046119d2565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156119a2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119cb576000600192509250506119d2565b9150600090505b94509492505050565b6000806001600160ff1b038316816119f860ff86901c601b611e62565b9050611a06878288856118ee565b935093505050935093915050565b600060208284031215611a2657600080fd5b5035919050565b6001600160e01b031981168114610dfa57600080fd5b600060208284031215611a5557600080fd5b81356113fb81611a2d565b60005b83811015611a7b578181015183820152602001611a63565b50506000910152565b60008151808452611a9c816020860160208601611a60565b601f01601f19169290920160200192915050565b6020815260006113fb6020830184611a84565b80356001600160a01b0381168114611ada57600080fd5b919050565b60008060408385031215611af257600080fd5b611afb83611ac3565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110611b3d57634e487b7160e01b600052602160045260246000fd5b9052565b60a08101611b4f8288611b1f565b8560208301528460408301528360608301528260808301529695505050505050565b600080600060608486031215611b8657600080fd5b611b8f84611ac3565b9250611b9d60208501611ac3565b9150604084013590509250925092565b600080600060408486031215611bc257600080fd5b83359250602084013567ffffffffffffffff80821115611be157600080fd5b818601915086601f830112611bf557600080fd5b813581811115611c0457600080fd5b876020828501011115611c1657600080fd5b6020830194508093505050509250925092565b600060208284031215611c3b57600080fd5b6113fb82611ac3565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7557611c75611c44565b604051601f8501601f19908116603f01168101908282118183101715611c9d57611c9d611c44565b81604052809350858152868686011115611cb657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ce257600080fd5b813567ffffffffffffffff811115611cf957600080fd5b8201601f81018413611d0a57600080fd5b61167384823560208401611c5a565b60008060408385031215611d2c57600080fd5b611d3583611ac3565b915060208301358015158114611d4a57600080fd5b809150509250929050565b60008060008060808587031215611d6b57600080fd5b611d7485611ac3565b9350611d8260208601611ac3565b925060408501359150606085013567ffffffffffffffff811115611da557600080fd5b8501601f81018713611db657600080fd5b611dc587823560208401611c5a565b91505092959194509250565b602081016107928284611b1f565b60008060408385031215611df257600080fd5b611dfb83611ac3565b9150611e0960208401611ac3565b90509250929050565b600181811c90821680611e2657607f821691505b602082108103611e4657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079257610792611e4c565b808202811582820484141761079257610792611e4c565b6020808252600c908201526b1b585e08195e18d95959195960a21b604082015260600190565b601f821115610af057600081815260208120601f850160051c81016020861015611ed95750805b601f850160051c820191505b81811015610a9f57828155600101611ee5565b815167ffffffffffffffff811115611f1257611f12611c44565b611f2681611f208454611e12565b84611eb2565b602080601f831160018114611f5b5760008415611f435750858301515b600019600386901b1c1916600185901b178555610a9f565b600085815260208120601f198616915b82811015611f8a57888601518255948401946001909101908401611f6b565b5085821015611fa85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611fc681611e12565b60018281168015611fde5760018114611ff357612022565b60ff1984168752821515830287019450612022565b8860005260208060002060005b858110156120195781548a820152908401908201612000565b50505082870194505b505050508351612036818360208801611a60565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208290830184611a84565b9695505050505050565b60006020828403121561209e57600080fd5b81516113fb81611a2d56fea264697066735822122048f43b82a0e314023ca04cd87d4341efa3e13537f22df0751ada8309aef6a7e064736f6c63430008130033000000000000000000000000a5c0c8e29645dac017ace5b7e3e6322086e77cdc000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061022f5760003560e01c806370a082311161012e578063b3ab66b0116100ab578063d0cd8e691161006f578063d0cd8e6914610676578063e985e9c5146106a3578063ea900475146106c3578063f2fde38b146106f9578063f8dcbddb1461071957600080fd5b8063b3ab66b0146105cf578063b88d4fde146105e2578063b9bbe00a14610602578063c87b56dd1461062f578063cbccefb21461064f57600080fd5b80638da5cb5b116100f25780638da5cb5b1461054657806395d89b41146105645780639b6860c814610579578063a0bcfc7f1461058f578063a22cb465146105af57600080fd5b806370a08231146104a5578063715018a6146104c5578063734c66bd146104da5780637f16053a146104f05780638a59a7fd1461052657600080fd5b80633ccfd60b116101bc57806359d20e611161018057806359d20e611461041d5780635b2fda671461043d5780636352211e1461045057806363bc312a146104705780636c0360eb1461049057600080fd5b80633ccfd60b1461039257806342842e0e146103a757806349e949e7146103c75780634ef22ea9146103e75780634fda7285146103fd57600080fd5b8063095ea7b311610203578063095ea7b3146102e55780630c3f6acf1461030557806318160ddd1461033557806323b872dd1461035c5780632cefffa71461037c57600080fd5b8062eb70131461023457806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad575b600080fd5b34801561024057600080fd5b5061025461024f366004611a14565b610739565b005b34801561026257600080fd5b50610276610271366004611a43565b610746565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a0610798565b6040516102829190611ab0565b3480156102b957600080fd5b506102cd6102c8366004611a14565b61082a565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610254610300366004611adf565b61086e565b34801561031157600080fd5b50600b54600d54600c546010546011546040516102829560ff169493929190611b41565b34801561034157600080fd5b5060025460015403600019015b604051908152602001610282565b34801561036857600080fd5b50610254610377366004611b71565b61090e565b34801561038857600080fd5b5061034e60105481565b34801561039e57600080fd5b50610254610aa7565b3480156103b357600080fd5b506102546103c2366004611b71565b610ad5565b3480156103d357600080fd5b506102546103e2366004611a14565b610af5565b3480156103f357600080fd5b5061034e60115481565b34801561040957600080fd5b50610254610418366004611a14565b610b02565b34801561042957600080fd5b50610254610438366004611a14565b610b0f565b61025461044b366004611bad565b610b1c565b34801561045c57600080fd5b506102cd61046b366004611a14565b610ddd565b34801561047c57600080fd5b5061025461048b366004611a14565b610de8565b34801561049c57600080fd5b506102a0610dfd565b3480156104b157600080fd5b5061034e6104c0366004611c29565b610e8b565b3480156104d157600080fd5b50610254610eda565b3480156104e657600080fd5b5061034e600c5481565b3480156104fc57600080fd5b5061034e61050b366004611c29565b6001600160a01b03166000908152600f602052604090205490565b34801561053257600080fd5b5061034e610541366004611c29565b610eec565b34801561055257600080fd5b506000546001600160a01b03166102cd565b34801561057057600080fd5b506102a0610f17565b34801561058557600080fd5b5061034e600d5481565b34801561059b57600080fd5b506102546105aa366004611cd0565b610f26565b3480156105bb57600080fd5b506102546105ca366004611d19565b610f3e565b6102546105dd366004611a14565b610fd3565b3480156105ee57600080fd5b506102546105fd366004611d55565b611169565b34801561060e57600080fd5b5061034e61061d366004611c29565b600f6020526000908152604090205481565b34801561063b57600080fd5b506102a061064a366004611a14565b6111ad565b34801561065b57600080fd5b50600b546106699060ff1681565b6040516102829190611dd1565b34801561068257600080fd5b5061034e610691366004611c29565b600e6020526000908152604090205481565b3480156106af57600080fd5b506102766106be366004611ddf565b611236565b3480156106cf57600080fd5b5061034e6106de366004611c29565b6001600160a01b03166000908152600e602052604090205490565b34801561070557600080fd5b50610254610714366004611c29565b611264565b34801561072557600080fd5b50610254610734366004611a14565b6112da565b610741611318565b601055565b60006301ffc9a760e01b6001600160e01b03198316148061077757506380ac58cd60e01b6001600160e01b03198316145b806107925750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107a790611e12565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390611e12565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b600061083582611372565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061087982610ddd565b9050336001600160a01b038216146108b2576108958133611236565b6108b2576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610919826113a7565b9050836001600160a01b0316816001600160a01b03161461094c5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176109995761097c8633611236565b61099957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109c057604051633a954ecd60e21b815260040160405180910390fd5b80156109cb57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610a5d57600184016000818152600560205260408120549003610a5b576001548114610a5b5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610aaf611318565b60405133904780156108fc02916000818181858888f19350505050610ad357600080fd5b565b610af083838360405180602001604052806000815250611169565b505050565b610afd611318565b601155565b610b0a611318565b600d55565b610b17611318565b600c55565b600c5480610b5e5760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b60448201526064015b60405180910390fd5b6001600b5460ff166003811115610b7757610b77611b09565b14610bb85760405162461bcd60e51b81526020600482015260116024820152702ba61026b4b73a103737ba103634bb329760791b6044820152606401610b55565b6002546001546105dc9186910360001901610bd39190611e62565b1115610c2d5760405162461bcd60e51b815260206004820152602360248201527f4d617820737570706c7920657863656564656420666f7220574c20657863656560448201526219195960ea1b6064820152608401610b55565b610c378482611e75565b341015610c795760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610b55565b610d0f83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c019150610ceb9050565b6040516020818303038152906040528051906020012061141d90919063ffffffff16565b6009546001600160a01b03908116911614610d6c5760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f7420696e20574c2077686974656c69737400000000006044820152606401610b55565b601054336000908152600e6020526040902054610d8a908690611e62565b1115610da85760405162461bcd60e51b8152600401610b5590611e8c565b336000908152600e602052604081208054869290610dc7908490611e62565b90915550610dd790503385611441565b50505050565b6000610792826113a7565b610df0611318565b610dfa3382611441565b50565b600a8054610e0a90611e12565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3690611e12565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b505050505081565b60006001600160a01b038216610eb4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610ee2611318565b610ad3600061153f565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610792565b6060600480546107a790611e12565b610f2e611318565b600a610f3a8282611ef8565b5050565b336001600160a01b03831603610f675760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d54806110105760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b6044820152606401610b55565b6002600b5460ff16600381111561102957611029611b09565b1461106e5760405162461bcd60e51b8152602060048201526015602482015274283ab13634b19026b4b73a103737ba103634bb329760591b6044820152606401610b55565b61107c6105dc610729611e62565b60025460015484919003600019016110949190611e62565b11156110b25760405162461bcd60e51b8152600401610b5590611e8c565b6110bc8282611e75565b3410156110fe5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610b55565b601154336000908152600f602052604090205461111c908490611e62565b111561113a5760405162461bcd60e51b8152600401610b5590611e8c565b336000908152600f602052604081208054849290611159908490611e62565b90915550610f3a90503383611441565b61117484848461090e565b6001600160a01b0383163b15610dd7576111908484848461158f565b610dd7576040516368d2bf6b60e11b815260040160405180910390fd5b60606111b882611372565b6112045760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b55565b600a61120f8361167b565b604051602001611220929190611fb8565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61126c611318565b6001600160a01b0381166112d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b55565b610dfa8161153f565b6112e2611318565b8060038111156112f4576112f4611b09565b600b805460ff1916600183600381111561131057611310611b09565b021790555050565b6000546001600160a01b03163314610ad35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b55565b600081600111158015611386575060015482105b8015610792575050600090815260056020526040902054600160e01b161590565b60008180600111611404576001548110156114045760008181526005602052604081205490600160e01b82169003611402575b806000036113fb5750600019016000818152600560205260409020546113da565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080600061142c85856116ca565b9150915061143981611738565b509392505050565b60015460008290036114665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461151557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016114dd565b508160000361153657604051622e076360e81b815260040160405180910390fd5b60015550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115c490339089908890889060040161204f565b6020604051808303816000875af19250505080156115ff575060408051601f3d908101601f191682019092526115fc9181019061208c565b60015b61165d573d80801561162d576040519150601f19603f3d011682016040523d82523d6000602084013e611632565b606091505b508051600003611655576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b80156116b857600183039250600a81066030018353600a900461169a565b50819003601f19909101908152919050565b60008082516041036117005760208301516040840151606085015160001a6116f4878285856118ee565b94509450505050611731565b8251604003611729576020830151604084015161171e8683836119db565b935093505050611731565b506000905060025b9250929050565b600081600481111561174c5761174c611b09565b036117545750565b600181600481111561176857611768611b09565b036117b55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b55565b60028160048111156117c9576117c9611b09565b036118165760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b55565b600381600481111561182a5761182a611b09565b036118825760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b55565b600481600481111561189657611896611b09565b03610dfa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b55565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561192557506000905060036119d2565b8460ff16601b1415801561193d57508460ff16601c14155b1561194e57506000905060046119d2565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156119a2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119cb576000600192509250506119d2565b9150600090505b94509492505050565b6000806001600160ff1b038316816119f860ff86901c601b611e62565b9050611a06878288856118ee565b935093505050935093915050565b600060208284031215611a2657600080fd5b5035919050565b6001600160e01b031981168114610dfa57600080fd5b600060208284031215611a5557600080fd5b81356113fb81611a2d565b60005b83811015611a7b578181015183820152602001611a63565b50506000910152565b60008151808452611a9c816020860160208601611a60565b601f01601f19169290920160200192915050565b6020815260006113fb6020830184611a84565b80356001600160a01b0381168114611ada57600080fd5b919050565b60008060408385031215611af257600080fd5b611afb83611ac3565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60048110611b3d57634e487b7160e01b600052602160045260246000fd5b9052565b60a08101611b4f8288611b1f565b8560208301528460408301528360608301528260808301529695505050505050565b600080600060608486031215611b8657600080fd5b611b8f84611ac3565b9250611b9d60208501611ac3565b9150604084013590509250925092565b600080600060408486031215611bc257600080fd5b83359250602084013567ffffffffffffffff80821115611be157600080fd5b818601915086601f830112611bf557600080fd5b813581811115611c0457600080fd5b876020828501011115611c1657600080fd5b6020830194508093505050509250925092565b600060208284031215611c3b57600080fd5b6113fb82611ac3565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7557611c75611c44565b604051601f8501601f19908116603f01168101908282118183101715611c9d57611c9d611c44565b81604052809350858152868686011115611cb657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ce257600080fd5b813567ffffffffffffffff811115611cf957600080fd5b8201601f81018413611d0a57600080fd5b61167384823560208401611c5a565b60008060408385031215611d2c57600080fd5b611d3583611ac3565b915060208301358015158114611d4a57600080fd5b809150509250929050565b60008060008060808587031215611d6b57600080fd5b611d7485611ac3565b9350611d8260208601611ac3565b925060408501359150606085013567ffffffffffffffff811115611da557600080fd5b8501601f81018713611db657600080fd5b611dc587823560208401611c5a565b91505092959194509250565b602081016107928284611b1f565b60008060408385031215611df257600080fd5b611dfb83611ac3565b9150611e0960208401611ac3565b90509250929050565b600181811c90821680611e2657607f821691505b602082108103611e4657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079257610792611e4c565b808202811582820484141761079257610792611e4c565b6020808252600c908201526b1b585e08195e18d95959195960a21b604082015260600190565b601f821115610af057600081815260208120601f850160051c81016020861015611ed95750805b601f850160051c820191505b81811015610a9f57828155600101611ee5565b815167ffffffffffffffff811115611f1257611f12611c44565b611f2681611f208454611e12565b84611eb2565b602080601f831160018114611f5b5760008415611f435750858301515b600019600386901b1c1916600185901b178555610a9f565b600085815260208120601f198616915b82811015611f8a57888601518255948401946001909101908401611f6b565b5085821015611fa85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611fc681611e12565b60018281168015611fde5760018114611ff357612022565b60ff1984168752821515830287019450612022565b8860005260208060002060005b858110156120195781548a820152908401908201612000565b50505082870194505b505050508351612036818360208801611a60565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208290830184611a84565b9695505050505050565b60006020828403121561209e57600080fd5b81516113fb81611a2d56fea264697066735822122048f43b82a0e314023ca04cd87d4341efa3e13537f22df0751ada8309aef6a7e064736f6c63430008130033

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

000000000000000000000000a5c0c8e29645dac017ace5b7e3e6322086e77cdc000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _signerAddressWL (address): 0xA5c0c8E29645Dac017aCE5b7E3E6322086E77cdc
Arg [1] : _baseURI (string): ipfs

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5c0c8e29645dac017ace5b7e3e6322086e77cdc
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 6970667300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

73322:4346:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76607:116;;;;;;;;;;-1:-1:-1;76607:116:4;;;;;:::i;:::-;;:::i;:::-;;31270:639;;;;;;;;;;-1:-1:-1;31270:639:4;;;;;:::i;:::-;;:::i;:::-;;;750:14:6;;743:22;725:41;;713:2;698:18;31270:639:4;;;;;;;;32172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38655:218::-;;;;;;;;;;-1:-1:-1;38655:218:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:6;;;1679:51;;1667:2;1652:18;38655:218:4;1533:203:6;38096:400:4;;;;;;;;;;-1:-1:-1;38096:400:4;;;;;:::i;:::-;;:::i;75958:197::-;;;;;;;;;;-1:-1:-1;76054:11:4;;76067:15;;76084:11;;76097:25;;76124:22;;75958:197;;;;76054:11;;;76067:15;76084:11;76097:25;76124:22;75958:197;:::i;27923:323::-;;;;;;;;;;-1:-1:-1;28197:12:4;;27522:1;28181:13;:28;-1:-1:-1;;28181:46:4;27923:323;;;3182:25:6;;;3170:2;3155:18;27923:323:4;3036:177:6;42362:2817:4;;;;;;;;;;-1:-1:-1;42362:2817:4;;;;;:::i;:::-;;:::i;73997:41::-;;;;;;;;;;;;;;;;77549:114;;;;;;;;;;;;;:::i;45275:185::-;;;;;;;;;;-1:-1:-1;45275:185:4;;;;;:::i;:::-;;:::i;76731:110::-;;;;;;;;;;-1:-1:-1;76731:110:4;;;;;:::i;:::-;;:::i;74046:38::-;;;;;;;;;;;;;;;;76277:114;;;;;;;;;;-1:-1:-1;76277:114:4;;;;;:::i;:::-;;:::i;76163:106::-;;;;;;;;;;-1:-1:-1;76163:106:4;;;;;:::i;:::-;;:::i;75011:939::-;;;;;;:::i;:::-;;:::i;33565:152::-;;;;;;;;;;-1:-1:-1;33565:152:4;;;;;:::i;:::-;;:::i;74273:101::-;;;;;;;;;;-1:-1:-1;74273:101:4;;;;;:::i;:::-;;:::i;73598:21::-;;;;;;;;;;;;;:::i;29107:233::-;;;;;;;;;;-1:-1:-1;29107:233:4;;;;;:::i;:::-;;:::i;21227:103::-;;;;;;;;;;;;;:::i;73750:38::-;;;;;;;;;;;;;;;;77136:150;;;;;;;;;;-1:-1:-1;77136:150:4;;;;;:::i;:::-;-1:-1:-1;;;;;77234:44:4;77207:7;77234:44;;;:35;:44;;;;;;;77136:150;76849:122;;;;;;;;;;-1:-1:-1;76849:122:4;;;;;:::i;:::-;;:::i;20579:87::-;;;;;;;;;;-1:-1:-1;20625:7:4;20652:6;-1:-1:-1;;;;;20652:6:4;20579:87;;32348:104;;;;;;;;;;;;;:::i;73795:40::-;;;;;;;;;;;;;;;;76399:100;;;;;;;;;;-1:-1:-1;76399:100:4;;;;;:::i;:::-;;:::i;39213:308::-;;;;;;;;;;-1:-1:-1;39213:308:4;;;;;:::i;:::-;;:::i;74382:621::-;;;;;;:::i;:::-;;:::i;46058:399::-;;;;;;;;;;-1:-1:-1;46058:399:4;;;;;:::i;:::-;;:::i;73921:67::-;;;;;;;;;;-1:-1:-1;73921:67:4;;;;;:::i;:::-;;;;;;;;;;;;;;77294:247;;;;;;;;;;-1:-1:-1;77294:247:4;;;;;:::i;:::-;;:::i;73628:23::-;;;;;;;;;;-1:-1:-1;73628:23:4;;;;;;;;;;;;;;;:::i;73844:70::-;;;;;;;;;;-1:-1:-1;73844:70:4;;;;;:::i;:::-;;;;;;;;;;;;;;39678:164;;;;;;;;;;-1:-1:-1;39678:164:4;;;;;:::i;:::-;;:::i;76979:149::-;;;;;;;;;;-1:-1:-1;76979:149:4;;;;;:::i;:::-;-1:-1:-1;;;;;77073:47:4;77046:7;77073:47;;;:38;:47;;;;;;;76979:149;21485:201;;;;;;;;;;-1:-1:-1;21485:201:4;;;;;:::i;:::-;;:::i;76507:92::-;;;;;;;;;;-1:-1:-1;76507:92:4;;;;;:::i;:::-;;:::i;76607:116::-;20465:13;:11;:13::i;:::-;76681:25:::1;:34:::0;76607:116::o;31270:639::-;31355:4;-1:-1:-1;;;;;;;;;31679:25:4;;;;:102;;-1:-1:-1;;;;;;;;;;31756:25:4;;;31679:102;:179;;;-1:-1:-1;;;;;;;;;;31833:25:4;;;31679:179;31659:199;31270:639;-1:-1:-1;;31270:639:4:o;32172:100::-;32226:13;32259:5;32252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32172:100;:::o;38655:218::-;38731:7;38756:16;38764:7;38756;:16::i;:::-;38751:64;;38781:34;;-1:-1:-1;;;38781:34:4;;;;;;;;;;;38751:64;-1:-1:-1;38835:24:4;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;38835:30:4;;38655:218::o;38096:400::-;38177:13;38193:16;38201:7;38193;:16::i;:::-;38177:32;-1:-1:-1;61953:10:4;-1:-1:-1;;;;;38226:28:4;;;38222:175;;38274:44;38291:5;61953:10;39678:164;:::i;38274:44::-;38269:128;;38346:35;;-1:-1:-1;;;38346:35:4;;;;;;;;;;;38269:128;38409:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;38409:35:4;-1:-1:-1;;;;;38409:35:4;;;;;;;;;38460:28;;38409:24;;38460:28;;;;;;;38166:330;38096:400;;:::o;42362:2817::-;42496:27;42526;42545:7;42526:18;:27::i;:::-;42496:57;;42611:4;-1:-1:-1;;;;;42570:45:4;42586:19;-1:-1:-1;;;;;42570:45:4;;42566:86;;42624:28;;-1:-1:-1;;;42624:28:4;;;;;;;;;;;42566:86;42666:27;41476:24;;;:15;:24;;;;;41698:26;;61953:10;41101:30;;;-1:-1:-1;;;;;40794:28:4;;41079:20;;;41076:56;42852:180;;42945:43;42962:4;61953:10;39678:164;:::i;42945:43::-;42940:92;;42997:35;;-1:-1:-1;;;42997:35:4;;;;;;;;;;;42940:92;-1:-1:-1;;;;;43049:16:4;;43045:52;;43074:23;;-1:-1:-1;;;43074:23:4;;;;;;;;;;;43045:52;43246:15;43243:160;;;43386:1;43365:19;43358:30;43243:160;-1:-1:-1;;;;;43783:24:4;;;;;;;:18;:24;;;;;;43781:26;;-1:-1:-1;;43781:26:4;;;43852:22;;;;;;;;;43850:24;;-1:-1:-1;43850:24:4;;;36954:11;36929:23;36925:41;36912:63;-1:-1:-1;;;36912:63:4;44145:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;44440:47:4;;:52;;44436:627;;44545:1;44535:11;;44513:19;44668:30;;;:17;:30;;;;;;:35;;44664:384;;44806:13;;44791:11;:28;44787:242;;44953:30;;;;:17;:30;;;;;:52;;;44787:242;44494:569;44436:627;45110:7;45106:2;-1:-1:-1;;;;;45091:27:4;45100:4;-1:-1:-1;;;;;45091:27:4;;;;;;;;;;;45129:42;42485:2694;;;42362:2817;;;:::o;77549:114::-;20465:13;:11;:13::i;:::-;77607:47:::1;::::0;77615:10:::1;::::0;77632:21:::1;77607:47:::0;::::1;;;::::0;::::1;::::0;;;77632:21;77615:10;77607:47;::::1;;;;;;77599:56;;;::::0;::::1;;77549:114::o:0;45275:185::-;45413:39;45430:4;45436:2;45440:7;45413:39;;;;;;;;;;;;:16;:39::i;:::-;45275:185;;;:::o;76731:110::-;20465:13;:11;:13::i;:::-;76802:22:::1;:31:::0;76731:110::o;76277:114::-;20465:13;:11;:13::i;:::-;76356:15:::1;:27:::0;76277:114::o;76163:106::-;20465:13;:11;:13::i;:::-;76238:11:::1;:23:::0;76163:106::o;75011:939::-;75110:11;;75135:10;75132:35;;75147:20;;-1:-1:-1;;;75147:20:4;;7710:2:6;75147:20:4;;;7692:21:6;7749:2;7729:18;;;7722:30;-1:-1:-1;;;7768:18:6;;;7761:40;7818:18;;75147:20:4;;;;;;;;75132:35;75196:18;75181:11;;;;:33;;;;;;;;:::i;:::-;;75178:65;;75216:27;;-1:-1:-1;;;75216:27:4;;8049:2:6;75216:27:4;;;8031:21:6;8088:2;8068:18;;;8061:30;-1:-1:-1;;;8107:18:6;;;8100:47;8164:18;;75216:27:4;7847:341:6;75178:65:4;28197:12;;27522:1;28181:13;73737:4;;75273:9;;28181:28;-1:-1:-1;;28181:46:4;75257:25;;;;:::i;:::-;:36;75254:86;;;75295:45;;-1:-1:-1;;;75295:45:4;;8657:2:6;75295:45:4;;;8639:21:6;8696:2;8676:18;;;8669:30;8735:34;8715:18;;;8708:62;-1:-1:-1;;;8786:18:6;;;8779:33;8829:19;;75295:45:4;8455:399:6;75254:86:4;75366:17;75374:9;75366:5;:17;:::i;:::-;75354:9;:29;75351:60;;;75385:26;;-1:-1:-1;;;75385:26:4;;9234:2:6;75385:26:4;;;9216:21:6;9273:2;9253:18;;;9246:30;-1:-1:-1;;;9292:18:6;;;9285:46;9348:18;;75385:26:4;9032:340:6;75351:60:4;75454:194;75638:9;;75454:194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75478:140:4;;9619:66:6;75478:140:4;;;9607:79:6;75590:10:4;9702:12:6;;;9695:28;9739:12;;;-1:-1:-1;75478:140:4;;-1:-1:-1;9377:380:6;75478:140:4;;;;;;;;;;;;;75454:175;;;;;;:183;;:194;;;;:::i;:::-;75435:15;;-1:-1:-1;;;;;75435:15:4;;;:213;;;75432:255;;75650:37;;-1:-1:-1;;;75650:37:4;;9964:2:6;75650:37:4;;;9946:21:6;10003:2;9983:18;;;9976:30;10042:29;10022:18;;;10015:57;10089:18;;75650:37:4;9762:351:6;75432:255:4;75766:25;;75740:10;75701:50;;;;:38;:50;;;;;;:62;;75754:9;;75701:62;:::i;:::-;:90;75698:117;;;75793:22;;-1:-1:-1;;;75793:22:4;;;;;;;:::i;75698:117::-;75879:10;75840:50;;;;:38;:50;;;;;:63;;75894:9;;75840:50;:63;;75894:9;;75840:63;:::i;:::-;;;;-1:-1:-1;75914:28:4;;-1:-1:-1;75920:10:4;75932:9;75914:5;:28::i;:::-;75086:864;75011:939;;;:::o;33565:152::-;33637:7;33680:27;33699:7;33680:18;:27::i;74273:101::-;20465:13;:11;:13::i;:::-;74339:27:::1;74345:10;74357:8;74339:5;:27::i;:::-;74273:101:::0;:::o;73598:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29107:233::-;29179:7;-1:-1:-1;;;;;29203:19:4;;29199:60;;29231:28;;-1:-1:-1;;;29231:28:4;;;;;;;;;;;29199:60;-1:-1:-1;;;;;;29277:25:4;;;;;:18;:25;;;;;;23266:13;29277:55;;29107:233::o;21227:103::-;20465:13;:11;:13::i;:::-;21292:30:::1;21319:1;21292:18;:30::i;76849:122::-:0;-1:-1:-1;;;;;29511:25:4;;76914:7;29511:25;;;:18;:25;;23404:2;29511:25;;;;23266:13;29511:50;;29510:82;76941:22;29422:178;32348:104;32404:13;32437:7;32430:14;;;;;:::i;76399:100::-;20465:13;:11;:13::i;:::-;76473:7:::1;:18;76483:8:::0;76473:7;:18:::1;:::i;:::-;;76399:100:::0;:::o;39213:308::-;61953:10;-1:-1:-1;;;;;39312:31:4;;;39308:61;;39352:17;;-1:-1:-1;;;39352:17:4;;;;;;;;;;;39308:61;61953:10;39382:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;39382:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;39382:60:4;;;;;;;;;;39458:55;;725:41:6;;;39382:49:4;;61953:10;39458:55;;698:18:6;39458:55:4;;;;;;;39213:308;;:::o;74382:621::-;74463:15;;74492:10;74489:35;;74504:20;;-1:-1:-1;;;74504:20:4;;7710:2:6;74504:20:4;;;7692:21:6;7749:2;7729:18;;;7722:30;-1:-1:-1;;;7768:18:6;;;7761:40;7818:18;;74504:20:4;7508:334:6;74489:35:4;74553:15;74538:11;;;;:30;;;;;;;;:::i;:::-;;74535:66;;74570:31;;-1:-1:-1;;;74570:31:4;;12865:2:6;74570:31:4;;;12847:21:6;12904:2;12884:18;;;12877:30;-1:-1:-1;;;12923:18:6;;;12916:51;12984:18;;74570:31:4;12663:345:6;74535:66:4;74644:19;73737:4;73695;74644:19;:::i;:::-;28197:12;;27522:1;28181:13;74631:9;;28181:28;;-1:-1:-1;;28181:46:4;74615:25;;;;:::i;:::-;:49;74612:76;;;74666:22;;-1:-1:-1;;;74666:22:4;;;;;;;:::i;74612:76::-;74714:17;74722:9;74714:5;:17;:::i;:::-;74702:9;:29;74699:60;;;74733:26;;-1:-1:-1;;;74733:26:4;;9234:2:6;74733:26:4;;;9216:21:6;9273:2;9253:18;;;9246:30;-1:-1:-1;;;9292:18:6;;;9285:46;9348:18;;74733:26:4;9032:340:6;74699:60:4;74835:22;;74809:10;74773:47;;;;:35;:47;;;;;;:59;;74823:9;;74773:59;:::i;:::-;:84;74770:111;;;74859:22;;-1:-1:-1;;;74859:22:4;;;;;;;:::i;74770:111::-;74930:10;74894:47;;;;:35;:47;;;;;:60;;74945:9;;74894:47;:60;;74945:9;;74894:60;:::i;:::-;;;;-1:-1:-1;74967:28:4;;-1:-1:-1;74973:10:4;74985:9;74967:5;:28::i;46058:399::-;46225:31;46238:4;46244:2;46248:7;46225:12;:31::i;:::-;-1:-1:-1;;;;;46271:14:4;;;:19;46267:183;;46310:56;46341:4;46347:2;46351:7;46360:5;46310:30;:56::i;:::-;46305:145;;46394:40;;-1:-1:-1;;;46394:40:4;;;;;;;;;;;77294:247;77365:13;77399:17;77407:8;77399:7;:17::i;:::-;77391:61;;;;-1:-1:-1;;;77391:61:4;;13215:2:6;77391:61:4;;;13197:21:6;13254:2;13234:18;;;13227:30;13293:33;13273:18;;;13266:61;13344:18;;77391:61:4;13013:355:6;77391:61:4;77494:7;77503:19;77513:8;77503:9;:19::i;:::-;77477:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77463:70;;77294:247;;;:::o;39678:164::-;-1:-1:-1;;;;;39799:25:4;;;39775:4;39799:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39678:164::o;21485:201::-;20465:13;:11;:13::i;:::-;-1:-1:-1;;;;;21574:22:4;::::1;21566:73;;;::::0;-1:-1:-1;;;21566:73:4;;14767:2:6;21566:73:4::1;::::0;::::1;14749:21:6::0;14806:2;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;-1:-1:-1;;;14896:18:6;;;14889:36;14942:19;;21566:73:4::1;14565:402:6::0;21566:73:4::1;21650:28;21669:8;21650:18;:28::i;76507:92::-:0;20465:13;:11;:13::i;:::-;76585:5:::1;76580:11;;;;;;;;:::i;:::-;76566;:25:::0;;-1:-1:-1;;76566:25:4::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;76507:92:::0;:::o;20744:132::-;20625:7;20652:6;-1:-1:-1;;;;;20652:6:4;61953:10;20808:23;20800:68;;;;-1:-1:-1;;;20800:68:4;;15174:2:6;20800:68:4;;;15156:21:6;;;15193:18;;;15186:30;15252:34;15232:18;;;15225:62;15304:18;;20800:68:4;14972:356:6;40100:282:4;40165:4;40221:7;27522:1;40202:26;;:66;;;;;40255:13;;40245:7;:23;40202:66;:153;;;;-1:-1:-1;;40306:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;40306:44:4;:49;;40100:282::o;34720:1275::-;34787:7;34822;;27522:1;34871:23;34867:1061;;34924:13;;34917:4;:20;34913:1015;;;34962:14;34979:23;;;:17;:23;;;;;;;-1:-1:-1;;;35068:24:4;;:29;;35064:845;;35733:113;35740:6;35750:1;35740:11;35733:113;;-1:-1:-1;;;35811:6:4;35793:25;;;;:17;:25;;;;;;35733:113;;;35879:6;34720:1275;-1:-1:-1;;;34720:1275:4:o;35064:845::-;34939:989;34913:1015;35956:31;;-1:-1:-1;;;35956:31:4;;;;;;;;;;;68205:231;68283:7;68304:17;68323:18;68345:27;68356:4;68362:9;68345:10;:27::i;:::-;68303:69;;;;68383:18;68395:5;68383:11;:18::i;:::-;-1:-1:-1;68419:9:4;68205:231;-1:-1:-1;;;68205:231:4:o;49719:2454::-;49815:13;;49792:20;49843:13;;;49839:44;;49865:18;;-1:-1:-1;;;49865:18:4;;;;;;;;;;;49839:44;-1:-1:-1;;;;;50371:22:4;;;;;;:18;:22;;;;23404:2;50371:22;;;:71;;50409:32;50397:45;;50371:71;;;50685:31;;;:17;:31;;;;;-1:-1:-1;37385:15:4;;37359:24;37355:46;36954:11;36929:23;36925:41;36922:52;36912:63;;50685:173;;50920:23;;;;50685:31;;50371:22;;51419:25;50371:22;;51272:335;51687:1;51673:12;51669:20;51627:346;51728:3;51719:7;51716:16;51627:346;;51946:7;51936:8;51933:1;51906:25;51903:1;51900;51895:59;51781:1;51768:15;51627:346;;;51631:77;52006:8;52018:1;52006:13;52002:45;;52028:19;;-1:-1:-1;;;52028:19:4;;;;;;;;;;;52002:45;52064:13;:19;-1:-1:-1;45275:185:4;;;:::o;21846:191::-;21920:16;21939:6;;-1:-1:-1;;;;;21956:17:4;;;-1:-1:-1;;;;;;21956:17:4;;;;;;21989:40;;21939:6;;;;;;;21989:40;;21920:16;21989:40;21909:128;21846:191;:::o;48541:716::-;48725:88;;-1:-1:-1;;;48725:88:4;;48704:4;;-1:-1:-1;;;;;48725:45:4;;;;;:88;;61953:10;;48792:4;;48798:7;;48807:5;;48725:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48725:88:4;;;;;;;;-1:-1:-1;;48725:88:4;;;;;;;;;;;;:::i;:::-;;;48721:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49008:6;:13;49025:1;49008:18;49004:235;;49054:40;;-1:-1:-1;;;49054:40:4;;;;;;;;;;;49004:235;49197:6;49191:13;49182:6;49178:2;49174:15;49167:38;48721:529;-1:-1:-1;;;;;;48884:64:4;-1:-1:-1;;;48884:64:4;;-1:-1:-1;48721:529:4;48541:716;;;;;;:::o;62073:2002::-;62550:4;62544:11;;62557:3;62540:21;;62635:17;;;;63331:11;;;63210:5;63497:2;63511;63501:13;;63493:22;63331:11;63480:36;63552:2;63542:13;;63102:731;63571:4;63102:731;;;63762:1;63757:3;63753:11;63746:18;;63813:2;63807:4;63803:13;63799:2;63795:22;63790:3;63782:36;63666:2;63656:13;;63102:731;;;-1:-1:-1;63863:13:4;;;-1:-1:-1;;63978:12:4;;;64038:19;;;63978:12;62073:2002;-1:-1:-1;62073:2002:4:o;65999:1404::-;66080:7;66089:12;66314:9;:16;66334:2;66314:22;66310:1086;;66658:4;66643:20;;66637:27;66708:4;66693:20;;66687:27;66766:4;66751:20;;66745:27;66353:9;66737:36;66809:25;66820:4;66737:36;66637:27;66687;66809:10;:25::i;:::-;66802:32;;;;;;;;;66310:1086;66856:9;:16;66876:2;66856:22;66852:544;;67179:4;67164:20;;67158:27;67230:4;67215:20;;67209:27;67272:23;67283:4;67158:27;67209;67272:10;:23::i;:::-;67265:30;;;;;;;;66852:544;-1:-1:-1;67344:1:4;;-1:-1:-1;67348:35:4;66852:544;65999:1404;;;;;:::o;64270:643::-;64348:20;64339:5;:29;;;;;;;;:::i;:::-;;64335:571;;64270:643;:::o;64335:571::-;64446:29;64437:5;:38;;;;;;;;:::i;:::-;;64433:473;;64492:34;;-1:-1:-1;;;64492:34:4;;16283:2:6;64492:34:4;;;16265:21:6;16322:2;16302:18;;;16295:30;16361:26;16341:18;;;16334:54;16405:18;;64492:34:4;16081:348:6;64433:473:4;64557:35;64548:5;:44;;;;;;;;:::i;:::-;;64544:362;;64609:41;;-1:-1:-1;;;64609:41:4;;16636:2:6;64609:41:4;;;16618:21:6;16675:2;16655:18;;;16648:30;16714:33;16694:18;;;16687:61;16765:18;;64609:41:4;16434:355:6;64544:362:4;64681:30;64672:5;:39;;;;;;;;:::i;:::-;;64668:238;;64728:44;;-1:-1:-1;;;64728:44:4;;16996:2:6;64728:44:4;;;16978:21:6;17035:2;17015:18;;;17008:30;17074:34;17054:18;;;17047:62;-1:-1:-1;;;17125:18:6;;;17118:32;17167:19;;64728:44:4;16794:398:6;64668:238:4;64803:30;64794:5;:39;;;;;;;;:::i;:::-;;64790:116;;64850:44;;-1:-1:-1;;;64850:44:4;;17399:2:6;64850:44:4;;;17381:21:6;17438:2;17418:18;;;17411:30;17477:34;17457:18;;;17450:62;-1:-1:-1;;;17528:18:6;;;17521:32;17570:19;;64850:44:4;17197:398:6;69657:1632:4;69788:7;;70722:66;70709:79;;70705:163;;;-1:-1:-1;70821:1:4;;-1:-1:-1;70825:30:4;70805:51;;70705:163;70882:1;:7;;70887:2;70882:7;;:18;;;;;70893:1;:7;;70898:2;70893:7;;70882:18;70878:102;;;-1:-1:-1;70933:1:4;;-1:-1:-1;70937:30:4;70917:51;;70878:102;71094:24;;;71077:14;71094:24;;;;;;;;;17827:25:6;;;17900:4;17888:17;;17868:18;;;17861:45;;;;17922:18;;;17915:34;;;17965:18;;;17958:34;;;71094:24:4;;17799:19:6;;71094:24:4;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;71094:24:4;;-1:-1:-1;;71094:24:4;;;-1:-1:-1;;;;;;;71133:20:4;;71129:103;;71186:1;71190:29;71170:50;;;;;;;71129:103;71252:6;-1:-1:-1;71260:20:4;;-1:-1:-1;69657:1632:4;;;;;;;;:::o;68699:344::-;68813:7;;-1:-1:-1;;;;;68859:80:4;;68813:7;68966:25;68982:3;68967:18;;;68989:2;68966:25;:::i;:::-;68950:42;;69010:25;69021:4;69027:1;69030;69033;69010:10;:25::i;:::-;69003:32;;;;;;68699:344;;;;;;:::o;14:180:6:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:6;;14:180;-1:-1:-1;14:180:6:o;199:131::-;-1:-1:-1;;;;;;273:32:6;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:6;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:6;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:6:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:6;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;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:6:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:232;2386:1;2379:5;2376:12;2366:143;;2431:10;2426:3;2422:20;2419:1;2412:31;2466:4;2463:1;2456:15;2494:4;2491:1;2484:15;2366:143;2518:18;;2310:232::o;2547:484::-;2800:3;2785:19;;2813:39;2789:9;2834:6;2813:39;:::i;:::-;2888:6;2883:2;2872:9;2868:18;2861:34;2931:6;2926:2;2915:9;2911:18;2904:34;2974:6;2969:2;2958:9;2954:18;2947:34;3018:6;3012:3;3001:9;2997:19;2990:35;2547:484;;;;;;;;:::o;3218:328::-;3295:6;3303;3311;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3403:29;3422:9;3403:29;:::i;:::-;3393:39;;3451:38;3485:2;3474:9;3470:18;3451:38;:::i;:::-;3441:48;;3536:2;3525:9;3521:18;3508:32;3498:42;;3218:328;;;;;:::o;3551:659::-;3630:6;3638;3646;3699:2;3687:9;3678:7;3674:23;3670:32;3667:52;;;3715:1;3712;3705:12;3667:52;3751:9;3738:23;3728:33;;3812:2;3801:9;3797:18;3784:32;3835:18;3876:2;3868:6;3865:14;3862:34;;;3892:1;3889;3882:12;3862:34;3930:6;3919:9;3915:22;3905:32;;3975:7;3968:4;3964:2;3960:13;3956:27;3946:55;;3997:1;3994;3987:12;3946:55;4037:2;4024:16;4063:2;4055:6;4052:14;4049:34;;;4079:1;4076;4069:12;4049:34;4124:7;4119:2;4110:6;4106:2;4102:15;4098:24;4095:37;4092:57;;;4145:1;4142;4135:12;4092:57;4176:2;4172;4168:11;4158:21;;4198:6;4188:16;;;;;3551:659;;;;;:::o;4215:186::-;4274:6;4327:2;4315:9;4306:7;4302:23;4298:32;4295:52;;;4343:1;4340;4333:12;4295:52;4366:29;4385:9;4366:29;:::i;4406:127::-;4467:10;4462:3;4458:20;4455:1;4448:31;4498:4;4495:1;4488:15;4522:4;4519:1;4512:15;4538:632;4603:5;4633:18;4674:2;4666:6;4663:14;4660:40;;;4680:18;;:::i;:::-;4755:2;4749:9;4723:2;4809:15;;-1:-1:-1;;4805:24:6;;;4831:2;4801:33;4797:42;4785:55;;;4855:18;;;4875:22;;;4852:46;4849:72;;;4901:18;;:::i;:::-;4941:10;4937:2;4930:22;4970:6;4961:15;;5000:6;4992;4985:22;5040:3;5031:6;5026:3;5022:16;5019:25;5016:45;;;5057:1;5054;5047:12;5016:45;5107:6;5102:3;5095:4;5087:6;5083:17;5070:44;5162:1;5155:4;5146:6;5138;5134:19;5130:30;5123:41;;;;4538:632;;;;;:::o;5175:451::-;5244:6;5297:2;5285:9;5276:7;5272:23;5268:32;5265:52;;;5313:1;5310;5303:12;5265:52;5353:9;5340:23;5386:18;5378:6;5375:30;5372:50;;;5418:1;5415;5408:12;5372:50;5441:22;;5494:4;5486:13;;5482:27;-1:-1:-1;5472:55:6;;5523:1;5520;5513:12;5472:55;5546:74;5612:7;5607:2;5594:16;5589:2;5585;5581:11;5546:74;:::i;5631:347::-;5696:6;5704;5757:2;5745:9;5736:7;5732:23;5728:32;5725:52;;;5773:1;5770;5763:12;5725:52;5796:29;5815:9;5796:29;:::i;:::-;5786:39;;5875:2;5864:9;5860:18;5847:32;5922:5;5915:13;5908:21;5901:5;5898:32;5888:60;;5944:1;5941;5934:12;5888:60;5967:5;5957:15;;;5631:347;;;;;:::o;5983:667::-;6078:6;6086;6094;6102;6155:3;6143:9;6134:7;6130:23;6126:33;6123:53;;;6172:1;6169;6162:12;6123:53;6195:29;6214:9;6195:29;:::i;:::-;6185:39;;6243:38;6277:2;6266:9;6262:18;6243:38;:::i;:::-;6233:48;;6328:2;6317:9;6313:18;6300:32;6290:42;;6383:2;6372:9;6368:18;6355:32;6410:18;6402:6;6399:30;6396:50;;;6442:1;6439;6432:12;6396:50;6465:22;;6518:4;6510:13;;6506:27;-1:-1:-1;6496:55:6;;6547:1;6544;6537:12;6496:55;6570:74;6636:7;6631:2;6618:16;6613:2;6609;6605:11;6570:74;:::i;:::-;6560:84;;;5983:667;;;;;;;:::o;6655:198::-;6796:2;6781:18;;6808:39;6785:9;6829:6;6808:39;:::i;6858:260::-;6926:6;6934;6987:2;6975:9;6966:7;6962:23;6958:32;6955:52;;;7003:1;7000;6993:12;6955:52;7026:29;7045:9;7026:29;:::i;:::-;7016:39;;7074:38;7108:2;7097:9;7093:18;7074:38;:::i;:::-;7064:48;;6858:260;;;;;:::o;7123:380::-;7202:1;7198:12;;;;7245;;;7266:61;;7320:4;7312:6;7308:17;7298:27;;7266:61;7373:2;7365:6;7362:14;7342:18;7339:38;7336:161;;7419:10;7414:3;7410:20;7407:1;7400:31;7454:4;7451:1;7444:15;7482:4;7479:1;7472:15;7336:161;;7123:380;;;:::o;8193:127::-;8254:10;8249:3;8245:20;8242:1;8235:31;8285:4;8282:1;8275:15;8309:4;8306:1;8299:15;8325:125;8390:9;;;8411:10;;;8408:36;;;8424:18;;:::i;8859:168::-;8932:9;;;8963;;8980:15;;;8974:22;;8960:37;8950:71;;9001:18;;:::i;10118:336::-;10320:2;10302:21;;;10359:2;10339:18;;;10332:30;-1:-1:-1;;;10393:2:6;10378:18;;10371:42;10445:2;10430:18;;10118:336::o;10585:545::-;10687:2;10682:3;10679:11;10676:448;;;10723:1;10748:5;10744:2;10737:17;10793:4;10789:2;10779:19;10863:2;10851:10;10847:19;10844:1;10840:27;10834:4;10830:38;10899:4;10887:10;10884:20;10881:47;;;-1:-1:-1;10922:4:6;10881:47;10977:2;10972:3;10968:12;10965:1;10961:20;10955:4;10951:31;10941:41;;11032:82;11050:2;11043:5;11040:13;11032:82;;;11095:17;;;11076:1;11065:13;11032:82;;11306:1352;11432:3;11426:10;11459:18;11451:6;11448:30;11445:56;;;11481:18;;:::i;:::-;11510:97;11600:6;11560:38;11592:4;11586:11;11560:38;:::i;:::-;11554:4;11510:97;:::i;:::-;11662:4;;11726:2;11715:14;;11743:1;11738:663;;;;12445:1;12462:6;12459:89;;;-1:-1:-1;12514:19:6;;;12508:26;12459:89;-1:-1:-1;;11263:1:6;11259:11;;;11255:24;11251:29;11241:40;11287:1;11283:11;;;11238:57;12561:81;;11708:944;;11738:663;10532:1;10525:14;;;10569:4;10556:18;;-1:-1:-1;;11774:20:6;;;11892:236;11906:7;11903:1;11900:14;11892:236;;;11995:19;;;11989:26;11974:42;;12087:27;;;;12055:1;12043:14;;;;11922:19;;11892:236;;;11896:3;12156:6;12147:7;12144:19;12141:201;;;12217:19;;;12211:26;-1:-1:-1;;12300:1:6;12296:14;;;12312:3;12292:24;12288:37;12284:42;12269:58;12254:74;;12141:201;-1:-1:-1;;;;;12388:1:6;12372:14;;;12368:22;12355:36;;-1:-1:-1;11306:1352:6:o;13373:1187::-;13650:3;13679:1;13712:6;13706:13;13742:36;13768:9;13742:36;:::i;:::-;13797:1;13814:18;;;13841:133;;;;13988:1;13983:356;;;;13807:532;;13841:133;-1:-1:-1;;13874:24:6;;13862:37;;13947:14;;13940:22;13928:35;;13919:45;;;-1:-1:-1;13841:133:6;;13983:356;14014:6;14011:1;14004:17;14044:4;14089:2;14086:1;14076:16;14114:1;14128:165;14142:6;14139:1;14136:13;14128:165;;;14220:14;;14207:11;;;14200:35;14263:16;;;;14157:10;;14128:165;;;14132:3;;;14322:6;14317:3;14313:16;14306:23;;13807:532;;;;;14370:6;14364:13;14386:68;14445:8;14440:3;14433:4;14425:6;14421:17;14386:68;:::i;:::-;-1:-1:-1;;;14476:18:6;;14503:22;;;14552:1;14541:13;;13373:1187;-1:-1:-1;;;;13373:1187:6:o;15333:489::-;-1:-1:-1;;;;;15602:15:6;;;15584:34;;15654:15;;15649:2;15634:18;;15627:43;15701:2;15686:18;;15679:34;;;15749:3;15744:2;15729:18;;15722:31;;;15527:4;;15770:46;;15796:19;;15788:6;15770:46;:::i;:::-;15762:54;15333:489;-1:-1:-1;;;;;;15333:489:6:o;15827:249::-;15896:6;15949:2;15937:9;15928:7;15924:23;15920:32;15917:52;;;15965:1;15962;15955:12;15917:52;15997:9;15991:16;16016:30;16040:5;16016:30;:::i

Swarm Source

ipfs://48f43b82a0e314023ca04cd87d4341efa3e13537f22df0751ada8309aef6a7e0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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