ETH Price: $2,275.94 (-6.00%)

Token

NFT4CCAT (NFT4CCAT)
 

Overview

Max Total Supply

177 NFT4CCAT

Holders

135

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFT4CCAT
0xD8a272831C7fb0100886e15d2eeBBe345bf0a49b
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:
NFT4CCAT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-26
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 {
    if (address(this).balance < amount) revert('Address: insufficient balance');

    (bool success,) = recipient.call{value: amount}('');
    if (!success) revert('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)
  {
    if (address(this).balance < value) revert('Address: insufficient balance for call');
    if (!isContract(target)) revert('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)
  {
    if (!isContract(target)) revert('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)
  {
    if (!isContract(target)) revert('Address: delegate call to non-contract');

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

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

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

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

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

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

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

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

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

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

    return string(buffer);
  }
}

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

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

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

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

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

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

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

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

    address from = prevOwnership.addr;

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

      if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    if (owner() != _msgSender()) revert('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 {
    if (newOwner == address(0)) revert('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 for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
  /**
   * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
   * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
   */
  function royaltyInfo(
    uint256 tokenId,
    uint256 salePrice
  )
  external
  view
  returns (address receiver, uint256 royaltyAmount);
}

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
  struct RoyaltyInfo {
    address receiver;
    uint96 royaltyFraction;
  }

  RoyaltyInfo private _defaultRoyaltyInfo;
  mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

  /**
   * @inheritdoc IERC2981
   */
  function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) {
    RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

    if (royalty.receiver == address(0)) {
      royalty = _defaultRoyaltyInfo;
    }

    uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

    return (royalty.receiver, royaltyAmount);
  }

  /**
   * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
   * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
   * override.
   */
  function _feeDenominator() internal pure virtual returns (uint96) {
    return 10_000;
  }

  /**
   * @dev Sets the royalty information that all ids in this contract will default to.
   *
   * Requirements:
   *
   * - `receiver` cannot be the zero address.
   * - `feeNumerator` cannot be greater than the fee denominator.
   */
  function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
    if (feeNumerator > _feeDenominator()) revert('ERC2981: royalty fee will exceed salePrice');
    if (receiver == address(0)) revert('ERC2981: invalid receiver');

    _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
  }

  /**
   * @dev Removes default royalty information.
   */
  function _deleteDefaultRoyalty() internal virtual {
    delete _defaultRoyaltyInfo;
  }

  /**
   * @dev Sets the royalty information for a specific token id, overriding the global default.
   *
   * Requirements:
   *
   * - `tokenId` must be already minted.
   * - `receiver` cannot be the zero address.
   * - `feeNumerator` cannot be greater than the fee denominator.
   */
  function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
    if (feeNumerator > _feeDenominator()) revert('ERC2981: royalty fee will exceed salePrice');
    if (receiver == address(0)) revert('ERC2981: Invalid parameters');

    _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
  }

  /**
   * @dev Resets royalty information for the token id back to the global default.
   */
  function _resetTokenRoyalty(uint256 tokenId) internal virtual {
    delete _tokenRoyaltyInfo[tokenId];
  }
}

interface IOperatorFilterRegistry {
  function isOperatorAllowed(address registrant, address operator) external view returns (bool);
  function register(address registrant) external;
  function registerAndSubscribe(address registrant, address subscription) external;
  function registerAndCopyEntries(address registrant, address registrantToCopy) external;
  function unregister(address addr) 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);
}

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
  error OperatorNotAllowed(address operator);

  IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
  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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
      if (subscribe) {
        OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
      } else {
        if (subscriptionOrRegistrantToCopy != address(0)) {
          OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
        } else {
          OPERATOR_FILTER_REGISTRY.register(address(this));
        }
      }
    }
  }

  modifier onlyAllowedOperator(address from) virtual {
    // Allow spending tokens from addresses with balance
    // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
    // from an EOA.
    if (from != msg.sender) {
      _checkFilterOperator(msg.sender);
    }
    _;
  }

  modifier onlyAllowedOperatorApproval(address operator) virtual {
    _checkFilterOperator(operator);
    _;
  }

  function _checkFilterOperator(address operator) internal view virtual {
    // Check registry code length to facilitate testing in environments without a deployed registry.
    if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
      if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
        revert OperatorNotAllowed(operator);
      }
    }
  }
}

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
  address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

contract NFT4CCAT is ERC721A, ERC2981, DefaultOperatorFilterer, Ownable {
  address internal constant SERVICE_OWNER = address(0x253cF7158c13e661072295982a90f7ac971aAb5B);
  uint96 internal constant SERVICE_FEE_RATIO = 5;

  enum SaleStatus {
    CLOSED,
    PRESALE,
    OPEN
  }
  enum RevealStatus {
    NONE,
    YET,
    DONE
  }

  struct SalesRecipient {
    address recipient;
    uint96 percentages;
  }

  struct GasOption {
    uint256 gasLimit;
    uint256 gasPrice;
  }

  uint256 internal immutable _totalSupply;
  SaleStatus internal _saleStatus = SaleStatus.CLOSED;

  mapping(address => uint256) internal _preSaleMinted;
  mapping(address => uint256) internal _publicSaleMinted;

  uint96 internal _royaltyAmount;
  uint256 internal _publicSalePrice;
  uint256 internal _publicPerWalletMaximum;
  uint256 internal _publicPerTransactionMaximum;
  uint256 internal _publicSaleMintedTotal;
  uint256 internal _preSaleMintedTotal;
  string internal _baseTokenURI;
  SalesRecipient[] internal _salesRecipients;
  RevealStatus internal _revealStatus;
  uint256 internal constant _presaleSupply = 126;
  uint256 internal _preSalePrice = 0 ether;
  uint256 internal _prePerWalletMaximum = 1;
  uint256 internal _prePerTransactionMaximum = 1;

  event UpdatedSaleState(SaleStatus saleState);
  event UpdatedPublicSalePrice(uint256 publicSalePrice);
  event UpdatedPublicPerWalletMaximum(uint256 perCount);
  event UpdatedPublicPerTransactionMaximum(uint256 perCount);
  event Minted(uint256 currentSupply);
  event AirDropped(uint256 currentSupply);
  event UpdatedPreSalePrice(uint256 preSalePrice);
  event UpdatedPrePerWalletMaximum(uint256 perCount);
  event UpdatedPrePerTransactionMaximum(uint256 perCount);

  error InvalidSalesRecipients();
  error SaleInactive();
  error SoldOut();
  error InvalidPrice();
  error WithdrawFailed();
  error InvalidQuantity();
  error InvalidSaleStatus();

  constructor(
    string memory name,
    string memory symbol,
    string memory baseUri,
    uint96 royaltyAmount,
    uint256 totalSupply,
    uint256 publicSalePrice,
    SalesRecipient[] memory salesRecipients,
    RevealStatus revealStatus,
    GasOption memory gasOption
  )
  ERC721A(name, symbol)
  {
    _baseTokenURI = baseUri;
    _totalSupply = totalSupply;
    _publicSalePrice = publicSalePrice;
    _royaltyAmount = royaltyAmount;
    _setDefaultRoyalty(owner(), royaltyAmount);
    _salesRecipients.push(SalesRecipient(SERVICE_OWNER, SERVICE_FEE_RATIO));
    _revealStatus = revealStatus;
    uint96 percentagesTotal = SERVICE_FEE_RATIO;
    for (uint256 i = 0; i < salesRecipients.length; i++) {
      _salesRecipients.push(salesRecipients[i]);
      percentagesTotal += salesRecipients[i].percentages;
    }
    if (percentagesTotal != 100) revert InvalidSalesRecipients();
  }

  /**
   * @notice get base URI
   * @return baseTokenURI
   */
  function _baseURI() internal view override returns (string memory) {
    return _baseTokenURI;
  }

  /**
   * @notice Get the number of NFTs issued
   * @return current supplied number
   */
  function getSupplied() external view returns (uint256) {
    return _currentIndex;
  }

  /**
   * @notice Get what number the token starts from
   * @return token start id
   */
  function _startTokenId() internal pure override returns (uint256) {
    return 0;
  }

  /**
   * @notice get max count
   * @return totalSupply
   * @dev If the total supply is changed, the contract must be redeployed
   */
  function getTotalSupply() external view returns (uint256) {
    return _totalSupply;
  }

  /**
   * @notice Change the default royalty fee (ERC2981)
   */
  function setRoyaltyInfo(address receiver, uint96 feeBasisPoints) external onlyOwner {
    _setDefaultRoyalty(receiver, feeBasisPoints);
  }

  /**
   * @notice Update baseURI
   */
  function setBaseURI(string memory baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  /**
   * @notice Get Sale Status
   * @return 0: CLOSED 1: PRESALE 2: OPEN (Public Sale)
   */
  function getSaleState() external view returns (SaleStatus) {
    return _saleStatus;
  }

  /**
   * @notice update Sale Status
   */
  function setSaleState(SaleStatus _saleState) external onlyOwner {
    _saleStatus = _saleState;
    emit UpdatedSaleState(_saleStatus);
  }

  /**
   * @notice Get the maximum number of mint allowed per wallet during a public sale
   * @return the maximum number of mint allowed per wallet
   */
  function getPublicPerWalletMaximum() external view returns (uint256) {
    return _publicPerWalletMaximum;
  }

  /**
   * @notice Set the maximum number of mint allowed per wallet during a public sale
   */
  function setPublicPerWalletMaximum(uint256 perCount) external onlyOwner {
    _publicPerWalletMaximum = perCount;
    emit UpdatedPublicPerWalletMaximum(perCount);
  }

  /**
   * @notice Get the maximum number of mint allowed per transaction during a public sale
   * @return the maximum number of mint allowed per transaction
   */
  function getPublicPerTransactionMaximum() external view returns (uint256) {
    return _publicPerTransactionMaximum;
  }

  /**
   * @notice Set the maximum number of mint allowed per transaction during a public sale
   */
  function setPublicPerTransactionMaximum(uint256 perCount) external onlyOwner {
    _publicPerTransactionMaximum = perCount;
    emit UpdatedPublicPerTransactionMaximum(perCount);
  }

  /**
   * @notice Get Public Sale Price
   * @return Public Sale Price
   */
  function getPublicSalePrice() external view returns (uint256) {
    return _publicSalePrice;
  }

  /**
   * @notice Update Public Sale Price
   */
  function setPublicSalePrice(uint256 price) external onlyOwner {
    _publicSalePrice = price;
    emit UpdatedPublicSalePrice(_publicSalePrice);
  }

  /**
   * @notice Get Sale Recipients
   * @return Sale Recipients
   */
  function getSalesRecipients() external view returns (SalesRecipient[] memory) {
    return _salesRecipients;
  }

  /**
   * @notice Get Royalty Amount
   * @return Royalty Amount
   */
  function getRoyaltyAmount() external view returns (uint96) {
    return _royaltyAmount;
  }

  /**
   * @notice Get Reveal Status
   * @return Reveal Status
   */
  function getRevealStatus() external view returns (RevealStatus) {
    return _revealStatus;
  }

  /**
   * @notice Reveal NFT art
   * @param baseURI Base URI
   */
  function reveal(string memory baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
    _revealStatus = RevealStatus.DONE;
  }

  /**
   * @notice get public sale sold supply
   */
  function getPublicSaleMinted(address owner) public view returns (uint256) {
    return _publicSaleMinted[owner];
  }

  /**
   * @notice get public sale total minted
   */
  function getPublicSaleMintedTotal() public view returns (uint256) {
    return _publicSaleMintedTotal;
  }

  /**
   * @notice get pre sale total minted
   */
  function getPreSaleMintedTotal() public view returns (uint256) {
    return _preSaleMintedTotal;
  }

  /**
   * @notice get available public sale quantity
   */
  function getAvailablePublicSaleQuantity() public view virtual returns (uint256) {
    return _totalSupply - getPreSaleMintedTotal() - getPublicSaleMintedTotal();
  }

  /**
   * @notice Increase the number of minted pieces according to the sale status
   */
  function _increaseMintedCount(SaleStatus saleStatus, uint256 quantity) internal {
    if (saleStatus == SaleStatus.PRESALE) {
      _preSaleMintedTotal += quantity;
      _preSaleMinted[msg.sender] += quantity;
    } else {
      _publicSaleMintedTotal += quantity;
      _publicSaleMinted[msg.sender] += quantity;
    }
  }

  function _validatePublicSaleMintQuantity(address to, uint256 quantity) internal view {
    if (_currentIndex > _totalSupply) revert SoldOut();
    if (_publicPerWalletMaximum > 0 && getPublicSaleMinted(to) + quantity > _publicPerWalletMaximum) {
      revert InvalidQuantity();
    }
    if (_publicPerTransactionMaximum > 0 && quantity > _publicPerTransactionMaximum) revert InvalidQuantity();
    if (getPublicSaleMintedTotal() + quantity > getAvailablePublicSaleQuantity()) revert InvalidQuantity();
  }

  /**
   * @notice mint the specified number
   * @param quantity Number of mint
   * @dev Available for public sale only. Use presale() instead of this function during presale.
   */
  function mint(uint256 quantity) external payable {
    if (_saleStatus != SaleStatus.OPEN) revert SaleInactive();
    if (msg.value != _publicSalePrice * quantity) revert InvalidPrice();

    _validatePublicSaleMintQuantity(msg.sender, quantity);

    _safeMint(msg.sender, quantity);

    _increaseMintedCount(SaleStatus.OPEN, quantity);

    emit Minted(_currentIndex);
  }

  /**
   * @notice Mint NFT to the specified address
   * @param quantity Number of mint
   * @param recipient Recipient address
   */
  function airdrop(uint256 quantity, address recipient, SaleStatus countIncreaseSaleStatus) external onlyOwner {
    if (_currentIndex + (quantity - 1) > _totalSupply) revert SoldOut();
    if (countIncreaseSaleStatus == SaleStatus.CLOSED) revert InvalidSaleStatus();

    if (countIncreaseSaleStatus == SaleStatus.PRESALE) {
      _validatePreSaleMintQuantity(msg.sender, quantity);
    } else {
      _validatePublicSaleMintQuantity(msg.sender, quantity);
    }

    _safeMint(recipient, quantity);

    _increaseMintedCount(countIncreaseSaleStatus, quantity);

    emit AirDropped(_currentIndex);
  }

  /**
   * @notice get balance
   * @return balance
   */
  function getBalance() external view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  /**
   * @notice Withdraw sales according to a specified distribution rate
   */
  function withdraw() external onlyOwner {
    uint256 balance = address(this).balance;

    for (uint256 i; i < _salesRecipients.length; i++) {
      _withdraw(_salesRecipients[i].recipient, (balance * _salesRecipients[i].percentages) / 100);
    }
  }

  /**
   * @notice Send money to the specified address and verify if it is successful
   * @param recipient Recipient address
   * @param amount amount of remittance
   */
  function _withdraw(address recipient, uint256 amount) internal {
    (bool success,) = recipient.call{value: amount}('');
    if (!success) revert WithdrawFailed();
  }

  function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) {
    return super.supportsInterface(interfaceId);
  }

  /**
   * @dev This contract is configured to use the DefaultOperatorFilterer, which automatically registers the
   *        token and subscribes it to OpenSea's curated filters.
   *        Adding the onlyAllowedOperator modifier to the transferFrom and both safeTransferFrom methods ensures that
   *        the msg.sender (operator) is allowed by the OperatorFilterRegistry. Adding the onlyAllowedOperatorApproval
   *        modifier to the approval methods ensures that owners do not approve operators that are not allowed.
   */
  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
    super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
  }

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

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

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

  /**
   * @notice get presale max count
   * @return presaleSupply
   * @dev If the presale total supply is changed, the contract must be redeployed
   */
  function getPreSaleSupply() external pure returns (uint256) {
    return _presaleSupply;
  }

  /**
   * @notice Get Pre Sale Price
   * @return Public Sale Price
   */
  function getPreSalePrice() external view returns (uint256) {
    return _preSalePrice;
  }

  /**
   * @notice Set Pre Sale Price
   */
  function setPreSalePrice(uint256 price) external onlyOwner {
    _preSalePrice = price;
    emit UpdatedPreSalePrice(_preSalePrice);
  }

  /**
   * @notice Get the maximum number of mint allowed per wallet during a Pre sale
   * @return the maximum number of mint allowed per wallet
   */
  function getPrePerWalletMaximum() external view returns (uint256) {
    return _prePerWalletMaximum;
  }

  /**
   * @notice Set the maximum number of mint allowed per wallet during a Pre sale
   */
  function setPrePerWalletMaximum(uint256 perCount) external onlyOwner {
    _prePerWalletMaximum = perCount;
    emit UpdatedPrePerWalletMaximum(perCount);
  }

  /**
   * @notice Get the maximum number of mint allowed per transaction during a Pre sale
   * @return the maximum number of mint allowed per transaction
   */
  function getPrePerTransactionMaximum() external view returns (uint256) {
    return _prePerTransactionMaximum;
  }

  /**
   * @notice Set the maximum number of mint allowed per transaction during a Pre sale
   */
  function setPrePerTransactionMaximum(uint256 perCount) external onlyOwner {
    _prePerTransactionMaximum = perCount;
    emit UpdatedPrePerTransactionMaximum(perCount);
  }

  /**
   * @notice get pre sale sold supply
   */
  function getPreSaleMinted(address owner) public view returns (uint256) {
    return _preSaleMinted[owner];
  }

  /**
   * @notice Validate that the number of mints available in the presale has not been exceeded
   */
  function _validatePreSaleMintQuantity(address to, uint256 quantity) internal view {
    if (_currentIndex > _presaleSupply) revert SoldOut();
    if (_prePerWalletMaximum > 0 && getPreSaleMinted(to) + quantity > _prePerWalletMaximum) revert InvalidQuantity();
    if (_prePerTransactionMaximum > 0 && quantity > _prePerTransactionMaximum) revert InvalidQuantity();
    if (getPreSaleMintedTotal() + quantity > _presaleSupply) revert InvalidQuantity();
  }

  /**
   * @notice Mint the specified number on presale
   * @param quantity Number of mint
   */
  function presale(uint256 quantity) external payable {
    if (_saleStatus != SaleStatus.PRESALE) revert SaleInactive();
    if (msg.value != _preSalePrice * quantity) revert InvalidPrice();

    _validatePreSaleMintQuantity(msg.sender, quantity);

    _safeMint(msg.sender, quantity);

    _increaseMintedCount(SaleStatus.PRESALE, quantity);

    emit Minted(_currentIndex);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint96","name":"royaltyAmount","type":"uint96"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"publicSalePrice","type":"uint256"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint96","name":"percentages","type":"uint96"}],"internalType":"struct NFT4CCAT.SalesRecipient[]","name":"salesRecipients","type":"tuple[]"},{"internalType":"enum NFT4CCAT.RevealStatus","name":"revealStatus","type":"uint8"},{"components":[{"internalType":"uint256","name":"gasLimit","type":"uint256"},{"internalType":"uint256","name":"gasPrice","type":"uint256"}],"internalType":"struct NFT4CCAT.GasOption","name":"gasOption","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidPrice","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"InvalidSaleStatus","type":"error"},{"inputs":[],"name":"InvalidSalesRecipients","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":"SaleInactive","type":"error"},{"inputs":[],"name":"SoldOut","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"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"currentSupply","type":"uint256"}],"name":"AirDropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"currentSupply","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"UpdatedPrePerTransactionMaximum","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"UpdatedPrePerWalletMaximum","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"preSalePrice","type":"uint256"}],"name":"UpdatedPreSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"UpdatedPublicPerTransactionMaximum","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"UpdatedPublicPerWalletMaximum","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"publicSalePrice","type":"uint256"}],"name":"UpdatedPublicSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum NFT4CCAT.SaleStatus","name":"saleState","type":"uint8"}],"name":"UpdatedSaleState","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"enum NFT4CCAT.SaleStatus","name":"countIncreaseSaleStatus","type":"uint8"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailablePublicSaleQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrePerTransactionMaximum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrePerWalletMaximum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getPreSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleMintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPublicPerTransactionMaximum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicPerWalletMaximum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getPublicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleMintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealStatus","outputs":[{"internalType":"enum NFT4CCAT.RevealStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyAmount","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"enum NFT4CCAT.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalesRecipients","outputs":[{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint96","name":"percentages","type":"uint96"}],"internalType":"struct NFT4CCAT.SalesRecipient[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"setPrePerTransactionMaximum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"setPrePerWalletMaximum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"setPublicPerTransactionMaximum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perCount","type":"uint256"}],"name":"setPublicPerWalletMaximum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum NFT4CCAT.SaleStatus","name":"_saleState","type":"uint8"}],"name":"setSaleState","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"}]

60a0604052600a805460ff60a01b191690556000601655600160178190556018553480156200002d57600080fd5b506040516200381a3803806200381a833981016040819052620000509162000767565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018a8a6002620000778382620008fc565b506003620000868282620008fc565b506000805550506daaeb6d7670e522a718067333cd4e3b15620001d25780156200012057604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010157600080fd5b505af115801562000116573d6000803e3d6000fd5b50505050620001d2565b6001600160a01b03821615620001715760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000e6565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001b857600080fd5b505af1158015620001cd573d6000803e3d6000fd5b505050505b50620001e0905033620003ca565b6013620001ee8882620008fc565b506080859052600e849055600d80546001600160601b0319166001600160601b038816179055620002326200022b600a546001600160a01b031690565b876200041c565b6040805180820190915273253cf7158c13e661072295982a90f7ac971aab5b81526005602082019081526014805460018181018355600092909252925191516001600160601b0316600160a01b026001600160a01b0392909216919091177fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec9092019190915560158054849260ff1990911690836002811115620002da57620002da62000521565b0217905550600560005b84518110156200038e576014858281518110620003055762000305620009c8565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b039091161791015584518590829081106200035e576200035e620009c8565b60200260200101516020015182620003779190620009f4565b915080620003858162000a1e565b915050620002e4565b50806001600160601b0316606414620003ba5760405163abd8686160e01b815260040160405180910390fd5b5050505050505050505062000a3a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620004905760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620004e85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000487565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171562000572576200057262000537565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620005a357620005a362000537565b604052919050565b600082601f830112620005bd57600080fd5b81516001600160401b03811115620005d957620005d962000537565b6020620005ef601f8301601f1916820162000578565b82815285828487010111156200060457600080fd5b60005b838110156200062457858101830151828201840152820162000607565b506000928101909101919091529392505050565b80516001600160601b03811681146200065057600080fd5b919050565b600082601f8301126200066757600080fd5b815160206001600160401b0382111562000685576200068562000537565b62000695818360051b0162000578565b82815260069290921b84018101918181019086841115620006b557600080fd5b8286015b84811015620007195760408189031215620006d45760008081fd5b620006de6200054d565b81516001600160a01b0381168114620006f75760008081fd5b81526200070682860162000638565b81860152835291830191604001620006b9565b509695505050505050565b8051600381106200065057600080fd5b6000604082840312156200074757600080fd5b620007516200054d565b9050815181526020820151602082015292915050565b60008060008060008060008060006101408a8c0312156200078757600080fd5b89516001600160401b03808211156200079f57600080fd5b620007ad8d838e01620005ab565b9a5060208c0151915080821115620007c457600080fd5b620007d28d838e01620005ab565b995060408c0151915080821115620007e957600080fd5b620007f78d838e01620005ab565b98506200080760608d0162000638565b975060808c0151965060a08c0151955060c08c01519150808211156200082c57600080fd5b506200083b8c828d0162000655565b9350506200084c60e08b0162000724565b91506200085e8b6101008c0162000734565b90509295985092959850929598565b600181811c908216806200088257607f821691505b602082108103620008a357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008f757600081815260208120601f850160051c81016020861015620008d25750805b601f850160051c820191505b81811015620008f357828155600101620008de565b5050505b505050565b81516001600160401b0381111562000918576200091862000537565b62000930816200092984546200086d565b84620008a9565b602080601f8311600181146200096857600084156200094f5750858301515b600019600386901b1c1916600185901b178555620008f3565b600085815260208120601f198616915b82811015620009995788860151825594840194600190910190840162000978565b5085821015620009b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6001600160601b0381811683821601908082111562000a175762000a17620009de565b5092915050565b60006001820162000a335762000a33620009de565b5060010190565b608051612daf62000a6b6000396000818161087b01528181610f90015281816112700152611b850152612daf6000f3fe60806040526004361061033e5760003560e01c80636e76a887116101b0578063b1ff1f4c116100ec578063d4dfaada11610095578063f00382171161006f578063f00382171461094f578063f041f87214610977578063f2fde38b14610997578063f3b886ba146109b757600080fd5b8063d4dfaada146108df578063e6ab1434146108f3578063e985e9c51461090657600080fd5b8063c4e41b22116100c6578063c4e41b221461086c578063c87a471b1461089f578063c87b56dd146108bf57600080fd5b8063b1ff1f4c1461080c578063b88d4fde1461082c578063bca68ef41461084c57600080fd5b80638aed4b481161015957806395d89b411161013357806395d89b41146107af5780639649b7e8146107c4578063a0712d68146107d9578063a22cb465146107ec57600080fd5b80638aed4b48146107675780638da5cb5b1461077c5780638e8bdd0d1461079a57600080fd5b8063791a25191161018a578063791a2519146107125780637d7eee4214610732578063816d6a5d1461075257600080fd5b80636e76a887146106c857806370a08231146106dd578063715018a6146106fd57600080fd5b80633ccfd60b1161027f5780635b0f4c3e116102285780636352211e116102025780636352211e1461066657806364a6fe62146106865780636741cd111461069b5780636844e238146106b057600080fd5b80635b0f4c3e1461061c5780635b57d0331461063c5780635c2084901461065157600080fd5b80634c261247116102595780634c261247146105bc57806355f804b3146105dc5780635a67de07146105fc57600080fd5b80633ccfd60b1461056557806341f434341461057a57806342842e0e1461059c57600080fd5b806312065fe0116102ec57806323b872dd116102c657806323b872dd146104a857806325bdb2a8146104c85780632a55205a146104f0578063302b29251461052f57600080fd5b806312065fe01461045857806318160ddd1461046d5780631e73295f1461048657600080fd5b806306fdde031161031d57806306fdde03146103de578063081812fc14610400578063095ea7b31461043857600080fd5b8062d0c2801461034357806301ffc9a71461038c57806302fa7c47146103bc575b600080fd5b34801561034f57600080fd5b5061037961035e36600461264b565b6001600160a01b03166000908152600b602052604090205490565b6040519081526020015b60405180910390f35b34801561039857600080fd5b506103ac6103a736600461267c565b6109cc565b6040519015158152602001610383565b3480156103c857600080fd5b506103dc6103d7366004612699565b6109dd565b005b3480156103ea57600080fd5b506103f3610a38565b604051610383919061272c565b34801561040c57600080fd5b5061042061041b36600461273f565b610aca565b6040516001600160a01b039091168152602001610383565b34801561044457600080fd5b506103dc610453366004612758565b610b0e565b34801561046457600080fd5b50610379610b27565b34801561047957600080fd5b5060015460005403610379565b34801561049257600080fd5b5061049b610b77565b6040516103839190612782565b3480156104b457600080fd5b506103dc6104c33660046127e3565b610bf3565b3480156104d457600080fd5b50600a54600160a01b900460ff165b6040516103839190612853565b3480156104fc57600080fd5b5061051061050b366004612866565b610c1e565b604080516001600160a01b039093168352602083019190915201610383565b34801561053b57600080fd5b5061037961054a36600461264b565b6001600160a01b03166000908152600c602052604090205490565b34801561057157600080fd5b506103dc610cca565b34801561058657600080fd5b506104206daaeb6d7670e522a718067333cd4e81565b3480156105a857600080fd5b506103dc6105b73660046127e3565b610dad565b3480156105c857600080fd5b506103dc6105d7366004612914565b610dd2565b3480156105e857600080fd5b506103dc6105f7366004612914565b610e37565b34801561060857600080fd5b506103dc61061736600461296c565b610e8b565b34801561062857600080fd5b506103dc610637366004612987565b610f46565b34801561064857600080fd5b50600f54610379565b34801561065d57600080fd5b50600054610379565b34801561067257600080fd5b5061042061068136600461273f565b61109e565b34801561069257600080fd5b50601754610379565b3480156106a757600080fd5b50601154610379565b3480156106bc57600080fd5b5060155460ff166104e3565b3480156106d457600080fd5b50601854610379565b3480156106e957600080fd5b506103796106f836600461264b565b6110b0565b34801561070957600080fd5b506103dc6110ff565b34801561071e57600080fd5b506103dc61072d36600461273f565b611153565b34801561073e57600080fd5b506103dc61074d36600461273f565b6111d0565b34801561075e57600080fd5b50601654610379565b34801561077357600080fd5b50601054610379565b34801561078857600080fd5b50600a546001600160a01b0316610420565b3480156107a657600080fd5b50600e54610379565b3480156107bb57600080fd5b506103f361124d565b3480156107d057600080fd5b5061037961125c565b6103dc6107e736600461273f565b6112a3565b3480156107f857600080fd5b506103dc6108073660046129d1565b61135f565b34801561081857600080fd5b506103dc61082736600461273f565b611373565b34801561083857600080fd5b506103dc6108473660046129fd565b6113f0565b34801561085857600080fd5b506103dc61086736600461273f565b61141d565b34801561087857600080fd5b507f0000000000000000000000000000000000000000000000000000000000000000610379565b3480156108ab57600080fd5b506103dc6108ba36600461273f565b61149a565b3480156108cb57600080fd5b506103f36108da36600461273f565b611517565b3480156108eb57600080fd5b50607e610379565b6103dc61090136600461273f565b61159b565b34801561091257600080fd5b506103ac610921366004612a79565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095b57600080fd5b50600d546040516001600160601b039091168152602001610383565b34801561098357600080fd5b506103dc61099236600461273f565b611624565b3480156109a357600080fd5b506103dc6109b236600461264b565b6116a1565b3480156109c357600080fd5b50601254610379565b60006109d78261175a565b92915050565b600a546001600160a01b03163314610a2a5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a83398151915260448201526064015b60405180910390fd5b610a34828261177f565b5050565b606060028054610a4790612aac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7390612aac565b8015610ac05780601f10610a9557610100808354040283529160200191610ac0565b820191906000526020600020905b815481529060010190602001808311610aa357829003601f168201915b5050505050905090565b6000610ad58261187c565b610af2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610b18816118a7565b610b228383611960565b505050565b600a546000906001600160a01b03163314610b725760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b504790565b60606014805480602002602001604051908101604052809291908181526020016000905b82821015610bea57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610b9b565b50505050905090565b826001600160a01b0381163314610c0d57610c0d336118a7565b610c18848484611a05565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c935750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb2906001600160601b031687612afc565b610cbc9190612b29565b915196919550909350505050565b600a546001600160a01b03163314610d125760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b4760005b601454811015610a3457610d9b60148281548110610d3657610d36612b3d565b600091825260209091200154601480546001600160a01b03909216916064919085908110610d6657610d66612b3d565b600091825260209091200154610d8c90600160a01b90046001600160601b031686612afc565b610d969190612b29565b611a10565b80610da581612b53565b915050610d16565b826001600160a01b0381163314610dc757610dc7336118a7565b610c18848484611a84565b600a546001600160a01b03163314610e1a5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6013610e268282612bba565b50506015805460ff19166002179055565b600a546001600160a01b03163314610e7f5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6013610a348282612bba565b600a546001600160a01b03163314610ed35760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b600a805482919060ff60a01b1916600160a01b836002811115610ef857610ef861281f565b02179055507f32d6dd32e4cff7c7027b0c88608b762300c4d4aeede35a9403c50ac58a412ca6600a60149054906101000a900460ff16604051610f3b9190612853565b60405180910390a150565b600a546001600160a01b03163314610f8e5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b7f0000000000000000000000000000000000000000000000000000000000000000610fba600185612c7a565b600054610fc79190612c8d565b1115610fe6576040516352df9fe560e01b815260040160405180910390fd5b6000816002811115610ffa57610ffa61281f565b036110185760405163053c271b60e51b815260040160405180910390fd5b600181600281111561102c5761102c61281f565b036110405761103b3384611a9f565b61104a565b61104a3384611b83565b6110548284611c63565b61105e8184611c7d565b7fadda3e92e988c700c6e61d6414bb4414a90e13a49ae8a51c9706a10cde99b6c760005460405161109191815260200190565b60405180910390a1505050565b60006110a982611d16565b5192915050565b60006001600160a01b0382166110d9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600a546001600160a01b031633146111475760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6111516000611e32565b565b600a546001600160a01b0316331461119b5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b600e8190556040518181527f538123bdf023da4cd0f1d64e4127486ba1f66933bfeeae36ea4db63050d45b0790602001610f3b565b600a546001600160a01b031633146112185760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60168190556040518181527f85c83192633773702a5a992465470f50740d41dedddd7bcd685a37359f5d585290602001610f3b565b606060038054610a4790612aac565b600061126760115490565b601254611294907f0000000000000000000000000000000000000000000000000000000000000000612c7a565b61129e9190612c7a565b905090565b6002600a54600160a01b900460ff1660028111156112c3576112c361281f565b146112e157604051630fe219dd60e21b815260040160405180910390fd5b80600e546112ef9190612afc565b341461130d5760405162bfc92160e01b815260040160405180910390fd5b6113173382611b83565b6113213382611c63565b61132c600282611c7d565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a600054604051610f3b91815260200190565b81611369816118a7565b610b228383611e91565b600a546001600160a01b031633146113bb5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60178190556040518181527f96fde6f79fcfa3d08c5f1d47d5f84b683c3d1c444ff5fa43987396c701cc20d090602001610f3b565b836001600160a01b038116331461140a5761140a336118a7565b61141685858585611f26565b5050505050565b600a546001600160a01b031633146114655760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60188190556040518181527f6a1b8f3bcf96013c03d91603ee4eea83608dbf0ddca7bf3f5aef1f1f69be654990602001610f3b565b600a546001600160a01b031633146114e25760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60108190556040518181527f5f9ed68de45a8d2badd6d79e968333754a36c83b78ab00ea9e2f8924a71d67bf90602001610f3b565b60606115228261187c565b61153f57604051630a14c4b560e41b815260040160405180910390fd5b6000611549611f71565b905080516000036115695760405180602001604052806000815250611594565b8061157384611f80565b604051602001611584929190612ca0565b6040516020818303038152906040525b9392505050565b6001600a54600160a01b900460ff1660028111156115bb576115bb61281f565b146115d957604051630fe219dd60e21b815260040160405180910390fd5b806016546115e79190612afc565b34146116055760405162bfc92160e01b815260040160405180910390fd5b61160f3382611a9f565b6116193382611c63565b61132c600182611c7d565b600a546001600160a01b0316331461166c5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b600f8190556040518181527fac2e63ef3ba1bde1658b04e0f58acac611ad7be71c6ba57a2b479c6ccf34f25990602001610f3b565b600a546001600160a01b031633146116e95760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6001600160a01b03811661174e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a21565b61175781611e32565b50565b60006001600160e01b0319821663152a902d60e11b14806109d757506109d7826120a1565b6127106001600160601b03821611156117ed5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a21565b6001600160a01b0382166118435760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a21565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b60008054821080156109d7575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b1561175757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611914573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119389190612ccf565b61175757604051633b79c77360e21b81526001600160a01b0382166004820152602401610a21565b600061196b8261109e565b9050806001600160a01b0316836001600160a01b03160361199f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906119dc57506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b156119fa576040516367d9dca160e11b815260040160405180910390fd5b610b228383836120f1565b610b2283838361215a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a5d576040519150601f19603f3d011682016040523d82523d6000602084013e611a62565b606091505b5050905080610b2257604051631d42c86760e21b815260040160405180910390fd5b610b22838383604051806020016040528060008152506113f0565b607e6000541115611ac3576040516352df9fe560e01b815260040160405180910390fd5b6000601754118015611aff575060175481611af3846001600160a01b03166000908152600b602052604090205490565b611afd9190612c8d565b115b15611b1d5760405163524f409b60e01b815260040160405180910390fd5b6000601854118015611b30575060185481115b15611b4e5760405163524f409b60e01b815260040160405180910390fd5b607e81611b5a60125490565b611b649190612c8d565b1115610a345760405163524f409b60e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006000541115611bc6576040516352df9fe560e01b815260040160405180910390fd5b6000600f54118015611c025750600f5481611bf6846001600160a01b03166000908152600c602052604090205490565b611c009190612c8d565b115b15611c205760405163524f409b60e01b815260040160405180910390fd5b6000601054118015611c33575060105481115b15611c515760405163524f409b60e01b815260040160405180910390fd5b611c5961125c565b81611b5a60115490565b610a34828260405180602001604052806000815250612365565b6001826002811115611c9157611c9161281f565b03611cd7578060126000828254611ca89190612c8d565b9091555050336000908152600b602052604081208054839290611ccc908490612c8d565b90915550610a349050565b8060116000828254611ce99190612c8d565b9091555050336000908152600c602052604081208054839290611d0d908490612c8d565b90915550505050565b604080516060810182526000808252602082018190529181019190915281600054811015611e1957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611e175780516001600160a01b031615611dad579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611e12579392505050565b611dad565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611eba5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f3184848461215a565b6001600160a01b0383163b15158015611f535750611f5184848484612372565b155b15610c18576040516368d2bf6b60e11b815260040160405180910390fd5b606060138054610a4790612aac565b606081600003611fa75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fd15780611fbb81612b53565b9150611fca9050600a83612b29565b9150611fab565b60008167ffffffffffffffff811115611fec57611fec612888565b6040519080825280601f01601f191660200182016040528015612016576020820181803683370190505b5090505b84156120995761202b600183612c7a565b9150612038600a86612cec565b612043906030612c8d565b60f81b81838151811061205857612058612b3d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612092600a86612b29565b945061201a565b949350505050565b60006001600160e01b031982166380ac58cd60e01b14806120d257506001600160e01b03198216635b5e139f60e01b145b806109d757506301ffc9a760e01b6001600160e01b03198316146109d7565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061216582611d16565b9050836001600160a01b031681600001516001600160a01b03161461219c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806121d857506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b806121f35750336121e884610aca565b6001600160a01b0316145b90508061221357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661223a57604051633a954ecd60e21b815260040160405180910390fd5b612246600084876120f1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661231c57600054821461231c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611416565b610b22838383600161245d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123a7903390899088908890600401612d00565b6020604051808303816000875af19250505080156123e2575060408051601f3d908101601f191682019092526123df91810190612d3c565b60015b612440573d808015612410576040519150601f19603f3d011682016040523d82523d6000602084013e612415565b606091505b508051600003612438576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661248657604051622e076360e81b815260040160405180910390fd5b836000036124a75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561255957506001600160a01b0387163b15155b156125e1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125aa6000888480600101955088612372565b6125c7576040516368d2bf6b60e11b815260040160405180910390fd5b80820361255f5782600054146125dc57600080fd5b612626565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036125e2575b50600055611416565b80356001600160a01b038116811461264657600080fd5b919050565b60006020828403121561265d57600080fd5b6115948261262f565b6001600160e01b03198116811461175757600080fd5b60006020828403121561268e57600080fd5b813561159481612666565b600080604083850312156126ac57600080fd5b6126b58361262f565b915060208301356001600160601b03811681146126d157600080fd5b809150509250929050565b60005b838110156126f75781810151838201526020016126df565b50506000910152565b600081518084526127188160208601602086016126dc565b601f01601f19169290920160200192915050565b6020815260006115946020830184612700565b60006020828403121561275157600080fd5b5035919050565b6000806040838503121561276b57600080fd5b6127748361262f565b946020939093013593505050565b602080825282518282018190526000919060409081850190868401855b828110156127d657815180516001600160a01b031685528601516001600160601b031686850152928401929085019060010161279f565b5091979650505050505050565b6000806000606084860312156127f857600080fd5b6128018461262f565b925061280f6020850161262f565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b6003811061175757634e487b7160e01b600052602160045260246000fd5b6020810161286083612835565b91905290565b6000806040838503121561287957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128b9576128b9612888565b604051601f8501601f19908116603f011681019082821181831017156128e1576128e1612888565b816040528093508581528686860111156128fa57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561292657600080fd5b813567ffffffffffffffff81111561293d57600080fd5b8201601f8101841361294e57600080fd5b6120998482356020840161289e565b80356003811061264657600080fd5b60006020828403121561297e57600080fd5b6115948261295d565b60008060006060848603121561299c57600080fd5b833592506129ac6020850161262f565b91506129ba6040850161295d565b90509250925092565b801515811461175757600080fd5b600080604083850312156129e457600080fd5b6129ed8361262f565b915060208301356126d1816129c3565b60008060008060808587031215612a1357600080fd5b612a1c8561262f565b9350612a2a6020860161262f565b925060408501359150606085013567ffffffffffffffff811115612a4d57600080fd5b8501601f81018713612a5e57600080fd5b612a6d8782356020840161289e565b91505092959194509250565b60008060408385031215612a8c57600080fd5b612a958361262f565b9150612aa36020840161262f565b90509250929050565b600181811c90821680612ac057607f821691505b602082108103612ae057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d7576109d7612ae6565b634e487b7160e01b600052601260045260246000fd5b600082612b3857612b38612b13565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612b6557612b65612ae6565b5060010190565b601f821115610b2257600081815260208120601f850160051c81016020861015612b935750805b601f850160051c820191505b81811015612bb257828155600101612b9f565b505050505050565b815167ffffffffffffffff811115612bd457612bd4612888565b612be881612be28454612aac565b84612b6c565b602080601f831160018114612c1d5760008415612c055750858301515b600019600386901b1c1916600185901b178555612bb2565b600085815260208120601f198616915b82811015612c4c57888601518255948401946001909101908401612c2d565b5085821015612c6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156109d7576109d7612ae6565b808201808211156109d7576109d7612ae6565b60008351612cb28184602088016126dc565b835190830190612cc68183602088016126dc565b01949350505050565b600060208284031215612ce157600080fd5b8151611594816129c3565b600082612cfb57612cfb612b13565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d326080830184612700565b9695505050505050565b600060208284031215612d4e57600080fd5b81516115948161266656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122028542f41e5927d195e08c9eff794dfeb06aa8fbec1e45b1ffdfe3154552091fb64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000046600000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d090000000000000000000000000000000000000000000000000000000003471daa1100000000000000000000000000000000000000000000000000000000000000084e4654344343415400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084e46543443434154000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f6261667962656964656e6e35326f37676a6b6732693261656c756769676f61643769767061756a6c72346a36756f717163726737727473337437752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a222240ce4d7d33abea30e7ae9bbe0c93160e2830000000000000000000000000000000000000000000000000000000000000047000000000000000000000000d40fe44a3b8f849a05bbfcaffe593280d4ca5dce0000000000000000000000000000000000000000000000000000000000000018

Deployed Bytecode

0x60806040526004361061033e5760003560e01c80636e76a887116101b0578063b1ff1f4c116100ec578063d4dfaada11610095578063f00382171161006f578063f00382171461094f578063f041f87214610977578063f2fde38b14610997578063f3b886ba146109b757600080fd5b8063d4dfaada146108df578063e6ab1434146108f3578063e985e9c51461090657600080fd5b8063c4e41b22116100c6578063c4e41b221461086c578063c87a471b1461089f578063c87b56dd146108bf57600080fd5b8063b1ff1f4c1461080c578063b88d4fde1461082c578063bca68ef41461084c57600080fd5b80638aed4b481161015957806395d89b411161013357806395d89b41146107af5780639649b7e8146107c4578063a0712d68146107d9578063a22cb465146107ec57600080fd5b80638aed4b48146107675780638da5cb5b1461077c5780638e8bdd0d1461079a57600080fd5b8063791a25191161018a578063791a2519146107125780637d7eee4214610732578063816d6a5d1461075257600080fd5b80636e76a887146106c857806370a08231146106dd578063715018a6146106fd57600080fd5b80633ccfd60b1161027f5780635b0f4c3e116102285780636352211e116102025780636352211e1461066657806364a6fe62146106865780636741cd111461069b5780636844e238146106b057600080fd5b80635b0f4c3e1461061c5780635b57d0331461063c5780635c2084901461065157600080fd5b80634c261247116102595780634c261247146105bc57806355f804b3146105dc5780635a67de07146105fc57600080fd5b80633ccfd60b1461056557806341f434341461057a57806342842e0e1461059c57600080fd5b806312065fe0116102ec57806323b872dd116102c657806323b872dd146104a857806325bdb2a8146104c85780632a55205a146104f0578063302b29251461052f57600080fd5b806312065fe01461045857806318160ddd1461046d5780631e73295f1461048657600080fd5b806306fdde031161031d57806306fdde03146103de578063081812fc14610400578063095ea7b31461043857600080fd5b8062d0c2801461034357806301ffc9a71461038c57806302fa7c47146103bc575b600080fd5b34801561034f57600080fd5b5061037961035e36600461264b565b6001600160a01b03166000908152600b602052604090205490565b6040519081526020015b60405180910390f35b34801561039857600080fd5b506103ac6103a736600461267c565b6109cc565b6040519015158152602001610383565b3480156103c857600080fd5b506103dc6103d7366004612699565b6109dd565b005b3480156103ea57600080fd5b506103f3610a38565b604051610383919061272c565b34801561040c57600080fd5b5061042061041b36600461273f565b610aca565b6040516001600160a01b039091168152602001610383565b34801561044457600080fd5b506103dc610453366004612758565b610b0e565b34801561046457600080fd5b50610379610b27565b34801561047957600080fd5b5060015460005403610379565b34801561049257600080fd5b5061049b610b77565b6040516103839190612782565b3480156104b457600080fd5b506103dc6104c33660046127e3565b610bf3565b3480156104d457600080fd5b50600a54600160a01b900460ff165b6040516103839190612853565b3480156104fc57600080fd5b5061051061050b366004612866565b610c1e565b604080516001600160a01b039093168352602083019190915201610383565b34801561053b57600080fd5b5061037961054a36600461264b565b6001600160a01b03166000908152600c602052604090205490565b34801561057157600080fd5b506103dc610cca565b34801561058657600080fd5b506104206daaeb6d7670e522a718067333cd4e81565b3480156105a857600080fd5b506103dc6105b73660046127e3565b610dad565b3480156105c857600080fd5b506103dc6105d7366004612914565b610dd2565b3480156105e857600080fd5b506103dc6105f7366004612914565b610e37565b34801561060857600080fd5b506103dc61061736600461296c565b610e8b565b34801561062857600080fd5b506103dc610637366004612987565b610f46565b34801561064857600080fd5b50600f54610379565b34801561065d57600080fd5b50600054610379565b34801561067257600080fd5b5061042061068136600461273f565b61109e565b34801561069257600080fd5b50601754610379565b3480156106a757600080fd5b50601154610379565b3480156106bc57600080fd5b5060155460ff166104e3565b3480156106d457600080fd5b50601854610379565b3480156106e957600080fd5b506103796106f836600461264b565b6110b0565b34801561070957600080fd5b506103dc6110ff565b34801561071e57600080fd5b506103dc61072d36600461273f565b611153565b34801561073e57600080fd5b506103dc61074d36600461273f565b6111d0565b34801561075e57600080fd5b50601654610379565b34801561077357600080fd5b50601054610379565b34801561078857600080fd5b50600a546001600160a01b0316610420565b3480156107a657600080fd5b50600e54610379565b3480156107bb57600080fd5b506103f361124d565b3480156107d057600080fd5b5061037961125c565b6103dc6107e736600461273f565b6112a3565b3480156107f857600080fd5b506103dc6108073660046129d1565b61135f565b34801561081857600080fd5b506103dc61082736600461273f565b611373565b34801561083857600080fd5b506103dc6108473660046129fd565b6113f0565b34801561085857600080fd5b506103dc61086736600461273f565b61141d565b34801561087857600080fd5b507f0000000000000000000000000000000000000000000000000000000000000466610379565b3480156108ab57600080fd5b506103dc6108ba36600461273f565b61149a565b3480156108cb57600080fd5b506103f36108da36600461273f565b611517565b3480156108eb57600080fd5b50607e610379565b6103dc61090136600461273f565b61159b565b34801561091257600080fd5b506103ac610921366004612a79565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095b57600080fd5b50600d546040516001600160601b039091168152602001610383565b34801561098357600080fd5b506103dc61099236600461273f565b611624565b3480156109a357600080fd5b506103dc6109b236600461264b565b6116a1565b3480156109c357600080fd5b50601254610379565b60006109d78261175a565b92915050565b600a546001600160a01b03163314610a2a5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a83398151915260448201526064015b60405180910390fd5b610a34828261177f565b5050565b606060028054610a4790612aac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7390612aac565b8015610ac05780601f10610a9557610100808354040283529160200191610ac0565b820191906000526020600020905b815481529060010190602001808311610aa357829003601f168201915b5050505050905090565b6000610ad58261187c565b610af2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610b18816118a7565b610b228383611960565b505050565b600a546000906001600160a01b03163314610b725760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b504790565b60606014805480602002602001604051908101604052809291908181526020016000905b82821015610bea57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610b9b565b50505050905090565b826001600160a01b0381163314610c0d57610c0d336118a7565b610c18848484611a05565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c935750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb2906001600160601b031687612afc565b610cbc9190612b29565b915196919550909350505050565b600a546001600160a01b03163314610d125760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b4760005b601454811015610a3457610d9b60148281548110610d3657610d36612b3d565b600091825260209091200154601480546001600160a01b03909216916064919085908110610d6657610d66612b3d565b600091825260209091200154610d8c90600160a01b90046001600160601b031686612afc565b610d969190612b29565b611a10565b80610da581612b53565b915050610d16565b826001600160a01b0381163314610dc757610dc7336118a7565b610c18848484611a84565b600a546001600160a01b03163314610e1a5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6013610e268282612bba565b50506015805460ff19166002179055565b600a546001600160a01b03163314610e7f5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6013610a348282612bba565b600a546001600160a01b03163314610ed35760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b600a805482919060ff60a01b1916600160a01b836002811115610ef857610ef861281f565b02179055507f32d6dd32e4cff7c7027b0c88608b762300c4d4aeede35a9403c50ac58a412ca6600a60149054906101000a900460ff16604051610f3b9190612853565b60405180910390a150565b600a546001600160a01b03163314610f8e5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b7f0000000000000000000000000000000000000000000000000000000000000466610fba600185612c7a565b600054610fc79190612c8d565b1115610fe6576040516352df9fe560e01b815260040160405180910390fd5b6000816002811115610ffa57610ffa61281f565b036110185760405163053c271b60e51b815260040160405180910390fd5b600181600281111561102c5761102c61281f565b036110405761103b3384611a9f565b61104a565b61104a3384611b83565b6110548284611c63565b61105e8184611c7d565b7fadda3e92e988c700c6e61d6414bb4414a90e13a49ae8a51c9706a10cde99b6c760005460405161109191815260200190565b60405180910390a1505050565b60006110a982611d16565b5192915050565b60006001600160a01b0382166110d9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600a546001600160a01b031633146111475760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6111516000611e32565b565b600a546001600160a01b0316331461119b5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b600e8190556040518181527f538123bdf023da4cd0f1d64e4127486ba1f66933bfeeae36ea4db63050d45b0790602001610f3b565b600a546001600160a01b031633146112185760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60168190556040518181527f85c83192633773702a5a992465470f50740d41dedddd7bcd685a37359f5d585290602001610f3b565b606060038054610a4790612aac565b600061126760115490565b601254611294907f0000000000000000000000000000000000000000000000000000000000000466612c7a565b61129e9190612c7a565b905090565b6002600a54600160a01b900460ff1660028111156112c3576112c361281f565b146112e157604051630fe219dd60e21b815260040160405180910390fd5b80600e546112ef9190612afc565b341461130d5760405162bfc92160e01b815260040160405180910390fd5b6113173382611b83565b6113213382611c63565b61132c600282611c7d565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a600054604051610f3b91815260200190565b81611369816118a7565b610b228383611e91565b600a546001600160a01b031633146113bb5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60178190556040518181527f96fde6f79fcfa3d08c5f1d47d5f84b683c3d1c444ff5fa43987396c701cc20d090602001610f3b565b836001600160a01b038116331461140a5761140a336118a7565b61141685858585611f26565b5050505050565b600a546001600160a01b031633146114655760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60188190556040518181527f6a1b8f3bcf96013c03d91603ee4eea83608dbf0ddca7bf3f5aef1f1f69be654990602001610f3b565b600a546001600160a01b031633146114e25760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b60108190556040518181527f5f9ed68de45a8d2badd6d79e968333754a36c83b78ab00ea9e2f8924a71d67bf90602001610f3b565b60606115228261187c565b61153f57604051630a14c4b560e41b815260040160405180910390fd5b6000611549611f71565b905080516000036115695760405180602001604052806000815250611594565b8061157384611f80565b604051602001611584929190612ca0565b6040516020818303038152906040525b9392505050565b6001600a54600160a01b900460ff1660028111156115bb576115bb61281f565b146115d957604051630fe219dd60e21b815260040160405180910390fd5b806016546115e79190612afc565b34146116055760405162bfc92160e01b815260040160405180910390fd5b61160f3382611a9f565b6116193382611c63565b61132c600182611c7d565b600a546001600160a01b0316331461166c5760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b600f8190556040518181527fac2e63ef3ba1bde1658b04e0f58acac611ad7be71c6ba57a2b479c6ccf34f25990602001610f3b565b600a546001600160a01b031633146116e95760405162461bcd60e51b81526020600482018190526024820152600080516020612d5a8339815191526044820152606401610a21565b6001600160a01b03811661174e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a21565b61175781611e32565b50565b60006001600160e01b0319821663152a902d60e11b14806109d757506109d7826120a1565b6127106001600160601b03821611156117ed5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a21565b6001600160a01b0382166118435760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a21565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b60008054821080156109d7575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b1561175757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611914573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119389190612ccf565b61175757604051633b79c77360e21b81526001600160a01b0382166004820152602401610a21565b600061196b8261109e565b9050806001600160a01b0316836001600160a01b03160361199f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906119dc57506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b156119fa576040516367d9dca160e11b815260040160405180910390fd5b610b228383836120f1565b610b2283838361215a565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a5d576040519150601f19603f3d011682016040523d82523d6000602084013e611a62565b606091505b5050905080610b2257604051631d42c86760e21b815260040160405180910390fd5b610b22838383604051806020016040528060008152506113f0565b607e6000541115611ac3576040516352df9fe560e01b815260040160405180910390fd5b6000601754118015611aff575060175481611af3846001600160a01b03166000908152600b602052604090205490565b611afd9190612c8d565b115b15611b1d5760405163524f409b60e01b815260040160405180910390fd5b6000601854118015611b30575060185481115b15611b4e5760405163524f409b60e01b815260040160405180910390fd5b607e81611b5a60125490565b611b649190612c8d565b1115610a345760405163524f409b60e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000004666000541115611bc6576040516352df9fe560e01b815260040160405180910390fd5b6000600f54118015611c025750600f5481611bf6846001600160a01b03166000908152600c602052604090205490565b611c009190612c8d565b115b15611c205760405163524f409b60e01b815260040160405180910390fd5b6000601054118015611c33575060105481115b15611c515760405163524f409b60e01b815260040160405180910390fd5b611c5961125c565b81611b5a60115490565b610a34828260405180602001604052806000815250612365565b6001826002811115611c9157611c9161281f565b03611cd7578060126000828254611ca89190612c8d565b9091555050336000908152600b602052604081208054839290611ccc908490612c8d565b90915550610a349050565b8060116000828254611ce99190612c8d565b9091555050336000908152600c602052604081208054839290611d0d908490612c8d565b90915550505050565b604080516060810182526000808252602082018190529181019190915281600054811015611e1957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611e175780516001600160a01b031615611dad579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611e12579392505050565b611dad565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611eba5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f3184848461215a565b6001600160a01b0383163b15158015611f535750611f5184848484612372565b155b15610c18576040516368d2bf6b60e11b815260040160405180910390fd5b606060138054610a4790612aac565b606081600003611fa75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fd15780611fbb81612b53565b9150611fca9050600a83612b29565b9150611fab565b60008167ffffffffffffffff811115611fec57611fec612888565b6040519080825280601f01601f191660200182016040528015612016576020820181803683370190505b5090505b84156120995761202b600183612c7a565b9150612038600a86612cec565b612043906030612c8d565b60f81b81838151811061205857612058612b3d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612092600a86612b29565b945061201a565b949350505050565b60006001600160e01b031982166380ac58cd60e01b14806120d257506001600160e01b03198216635b5e139f60e01b145b806109d757506301ffc9a760e01b6001600160e01b03198316146109d7565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061216582611d16565b9050836001600160a01b031681600001516001600160a01b03161461219c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806121d857506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b806121f35750336121e884610aca565b6001600160a01b0316145b90508061221357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661223a57604051633a954ecd60e21b815260040160405180910390fd5b612246600084876120f1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661231c57600054821461231c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611416565b610b22838383600161245d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123a7903390899088908890600401612d00565b6020604051808303816000875af19250505080156123e2575060408051601f3d908101601f191682019092526123df91810190612d3c565b60015b612440573d808015612410576040519150601f19603f3d011682016040523d82523d6000602084013e612415565b606091505b508051600003612438576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661248657604051622e076360e81b815260040160405180910390fd5b836000036124a75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561255957506001600160a01b0387163b15155b156125e1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125aa6000888480600101955088612372565b6125c7576040516368d2bf6b60e11b815260040160405180910390fd5b80820361255f5782600054146125dc57600080fd5b612626565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036125e2575b50600055611416565b80356001600160a01b038116811461264657600080fd5b919050565b60006020828403121561265d57600080fd5b6115948261262f565b6001600160e01b03198116811461175757600080fd5b60006020828403121561268e57600080fd5b813561159481612666565b600080604083850312156126ac57600080fd5b6126b58361262f565b915060208301356001600160601b03811681146126d157600080fd5b809150509250929050565b60005b838110156126f75781810151838201526020016126df565b50506000910152565b600081518084526127188160208601602086016126dc565b601f01601f19169290920160200192915050565b6020815260006115946020830184612700565b60006020828403121561275157600080fd5b5035919050565b6000806040838503121561276b57600080fd5b6127748361262f565b946020939093013593505050565b602080825282518282018190526000919060409081850190868401855b828110156127d657815180516001600160a01b031685528601516001600160601b031686850152928401929085019060010161279f565b5091979650505050505050565b6000806000606084860312156127f857600080fd5b6128018461262f565b925061280f6020850161262f565b9150604084013590509250925092565b634e487b7160e01b600052602160045260246000fd5b6003811061175757634e487b7160e01b600052602160045260246000fd5b6020810161286083612835565b91905290565b6000806040838503121561287957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128b9576128b9612888565b604051601f8501601f19908116603f011681019082821181831017156128e1576128e1612888565b816040528093508581528686860111156128fa57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561292657600080fd5b813567ffffffffffffffff81111561293d57600080fd5b8201601f8101841361294e57600080fd5b6120998482356020840161289e565b80356003811061264657600080fd5b60006020828403121561297e57600080fd5b6115948261295d565b60008060006060848603121561299c57600080fd5b833592506129ac6020850161262f565b91506129ba6040850161295d565b90509250925092565b801515811461175757600080fd5b600080604083850312156129e457600080fd5b6129ed8361262f565b915060208301356126d1816129c3565b60008060008060808587031215612a1357600080fd5b612a1c8561262f565b9350612a2a6020860161262f565b925060408501359150606085013567ffffffffffffffff811115612a4d57600080fd5b8501601f81018713612a5e57600080fd5b612a6d8782356020840161289e565b91505092959194509250565b60008060408385031215612a8c57600080fd5b612a958361262f565b9150612aa36020840161262f565b90509250929050565b600181811c90821680612ac057607f821691505b602082108103612ae057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d7576109d7612ae6565b634e487b7160e01b600052601260045260246000fd5b600082612b3857612b38612b13565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612b6557612b65612ae6565b5060010190565b601f821115610b2257600081815260208120601f850160051c81016020861015612b935750805b601f850160051c820191505b81811015612bb257828155600101612b9f565b505050505050565b815167ffffffffffffffff811115612bd457612bd4612888565b612be881612be28454612aac565b84612b6c565b602080601f831160018114612c1d5760008415612c055750858301515b600019600386901b1c1916600185901b178555612bb2565b600085815260208120601f198616915b82811015612c4c57888601518255948401946001909101908401612c2d565b5085821015612c6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156109d7576109d7612ae6565b808201808211156109d7576109d7612ae6565b60008351612cb28184602088016126dc565b835190830190612cc68183602088016126dc565b01949350505050565b600060208284031215612ce157600080fd5b8151611594816129c3565b600082612cfb57612cfb612b13565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d326080830184612700565b9695505050505050565b600060208284031215612d4e57600080fd5b81516115948161266656fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122028542f41e5927d195e08c9eff794dfeb06aa8fbec1e45b1ffdfe3154552091fb64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000046600000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d090000000000000000000000000000000000000000000000000000000003471daa1100000000000000000000000000000000000000000000000000000000000000084e4654344343415400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084e46543443434154000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f6261667962656964656e6e35326f37676a6b6732693261656c756769676f61643769767061756a6c72346a36756f717163726737727473337437752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a222240ce4d7d33abea30e7ae9bbe0c93160e2830000000000000000000000000000000000000000000000000000000000000047000000000000000000000000d40fe44a3b8f849a05bbfcaffe593280d4ca5dce0000000000000000000000000000000000000000000000000000000000000018

-----Decoded View---------------
Arg [0] : name (string): NFT4CCAT
Arg [1] : symbol (string): NFT4CCAT
Arg [2] : baseUri (string): https://ipfs.io/ipfs/bafybeidenn52o7gjkg2i2aelugigoad7ivpaujlr4j6uoqqcrg7rts3t7u/
Arg [3] : royaltyAmount (uint96): 10
Arg [4] : totalSupply (uint256): 1126
Arg [5] : publicSalePrice (uint256): 1000000000000000
Arg [6] : salesRecipients (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [7] : revealStatus (uint8): 0
Arg [8] : gasOption (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000466
Arg [5] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 00000000000000000000000000000000000000000000000000000000003d0900
Arg [9] : 00000000000000000000000000000000000000000000000000000003471daa11
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 4e46543443434154000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 4e46543443434154000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [15] : 68747470733a2f2f697066732e696f2f697066732f6261667962656964656e6e
Arg [16] : 35326f37676a6b6732693261656c756769676f61643769767061756a6c72346a
Arg [17] : 36756f717163726737727473337437752f000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 000000000000000000000000a222240ce4d7d33abea30e7ae9bbe0c93160e283
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [21] : 000000000000000000000000d40fe44a3b8f849a05bbfcaffe593280d4ca5dce
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000018


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.