ETH Price: $3,352.38 (-2.83%)
Gas: 2 Gwei

Token

CakedApeYachtClub (CAYC)
 

Overview

Max Total Supply

130 CAYC

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kingsov.eth
Balance
1 CAYC
0x1B8dD5c57e0A2f48027C983EDfd4A0C2e7A40Fe7
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:
CakedApeYachtClub

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/IERC721A.sol

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

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

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

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

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => 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();
    }

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

    /**
     * Sets the 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

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

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

pragma solidity 0.8.12;

/**

 .----------------.  .----------------.  .----------------.  .----------------.   
| .--------------. || .--------------. || .--------------. || .--------------. |  
| |     ______   | || |      __      | || |  ____  ____  | || |     ______   | |  
| |   .' ___  |  | || |     /  \     | || | |_  _||_  _| | || |   .' ___  |  | |  
| |  / .'   \_|  | || |    / /\ \    | || |   \ \  / /   | || |  / .'   \_|  | |  
| |  | |         | || |   / ____ \   | || |    \ \/ /    | || |  | |         | |  
| |  \ `.___.'\  | || | _/ /    \ \_ | || |    _|  |_    | || |  \ `.___.'\  | |  
| |   `._____.'  | || ||____|  |____|| || |   |______|   | || |   `._____.'  | |  
| |              | || |              | || |              | || |              | |  
| '--------------' || '--------------' || '--------------' || '--------------' |  
 '----------------'  '----------------'  '----------------'  '----------------'   

*/




/// @title An ERC721A minting contract for WenRaffleSer NFTs
contract CakedApeYachtClub is ERC721A, ReentrancyGuard {

    using Strings for uint;
   
    uint public constant MAX_SUPPLY = 5000;
    uint public constant MAX_PER_MINT = 10;
    uint public constant MAX_PER_WALLET = 10;
    uint public constant PRICE_FOR_BAYC_HOLDERS = 0.1 ether;

    address public owner; 
    address public BAYC_CONTRACT_ADDRESS = 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D;
    string public baseURI_ = "https://www.cakedapeyachtclub.com/metadata/assets/";
    mapping(address=>uint) public addressToMints; 

    constructor() 
    ERC721A("CakedApeYachtClub", "CAYC")
    {
        owner = msg.sender;
    }
    
    function mint(uint256 _quantity) external payable nonReentrant {
        
        require(_quantity <= MAX_PER_MINT, "Can mint at max 10 in each batch");
        require(addressToMints[msg.sender]+ _quantity<=MAX_PER_WALLET,"Max mints reached by this wallet");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Not enough NFTs left to mint");
        if(IERC721(BAYC_CONTRACT_ADDRESS).balanceOf(msg.sender)>0){
            require(msg.value>=PRICE_FOR_BAYC_HOLDERS * _quantity,"BAYC holders need to pay 0.1 eth per NFT");
        }
        addressToMints[msg.sender]=addressToMints[msg.sender]+_quantity;
        _safeMint(msg.sender, _quantity);
    }

    function setBaseURI(string memory _newURI) public {
        require(msg.sender==owner,"Only owner can do this");
        baseURI_ = _newURI;
    }

    function withdrawMoney() external nonReentrant {
        require(msg.sender==owner,"Only owner can do this");
        (bool success, ) = payable(owner).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }    

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = baseURI_;
        return string(abi.encodePacked(baseURI, tokenId.toString(),".json"));
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BAYC_CONTRACT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_FOR_BAYC_HOLDERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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":"_newURI","type":"string"}],"name":"setBaseURI","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a80546001600160a01b03191673bc4ca0eda7647a8ab7c2061c2e118a18a936f13d17905560e0604052603260808181529062001b3760a03980516200004f91600b91602090910190620000ed565b503480156200005d57600080fd5b50604080518082018252601181527021b0b5b2b220b832acb0b1b43a21b63ab160791b6020808301918252835180850190945260048452634341594360e01b908401528151919291620000b391600291620000ed565b508051620000c9906003906020840190620000ed565b506000805550506001600855600980546001600160a01b03191633179055620001d0565b828054620000fb9062000193565b90600052602060002090601f0160209004810192826200011f57600085556200016a565b82601f106200013a57805160ff19168380011785556200016a565b828001600101855582156200016a579182015b828111156200016a5782518255916020019190600101906200014d565b50620001789291506200017c565b5090565b5b808211156200017857600081556001016200017d565b600181811c90821680620001a857607f821691505b60208210811415620001ca57634e487b7160e01b600052602260045260246000fd5b50919050565b61195780620001e06000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146103f4578063c87b56dd14610414578063e985e9c514610434578063f259a29e1461047d57600080fd5b8063a22cb465146103a3578063ac446002146103c3578063b2249acf146103d857600080fd5b80636352211e146102ee57806363820f231461030e57806370a082311461033b5780638da5cb5b1461035b57806395d89b411461037b578063a0712d681461039057600080fd5b806318160ddd1161012357806318160ddd1461023f57806323b872dd1461025857806332cb6b0c1461027857806342842e0e1461028e5780635530bca5146102ae57806355f804b3146102ce57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806309d42b301461021c5780630f2cdd6c1461021c575b600080fd5b34801561017757600080fd5b5061018b610186366004611463565b610492565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104e4565b60405161019791906114d8565b3480156101ce57600080fd5b506101e26101dd3660046114eb565b610576565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611520565b6105ba565b005b34801561022857600080fd5b50610231600a81565b604051908152602001610197565b34801561024b57600080fd5b5060015460005403610231565b34801561026457600080fd5b5061021a61027336600461154a565b61068d565b34801561028457600080fd5b5061023161138881565b34801561029a57600080fd5b5061021a6102a936600461154a565b61069d565b3480156102ba57600080fd5b50600a546101e2906001600160a01b031681565b3480156102da57600080fd5b5061021a6102e9366004611612565b6106b8565b3480156102fa57600080fd5b506101e26103093660046114eb565b610727565b34801561031a57600080fd5b5061023161032936600461165b565b600c6020526000908152604090205481565b34801561034757600080fd5b5061023161035636600461165b565b610732565b34801561036757600080fd5b506009546101e2906001600160a01b031681565b34801561038757600080fd5b506101b5610778565b61021a61039e3660046114eb565b610787565b3480156103af57600080fd5b5061021a6103be366004611676565b610a2a565b3480156103cf57600080fd5b5061021a610ac0565b3480156103e457600080fd5b5061023167016345785d8a000081565b34801561040057600080fd5b5061021a61040f3660046116b2565b610c01565b34801561042057600080fd5b506101b561042f3660046114eb565b610c4b565b34801561044057600080fd5b5061018b61044f36600461172e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048957600080fd5b506101b5610d7b565b60006301ffc9a760e01b6001600160e01b0319831614806104c357506380ac58cd60e01b6001600160e01b03198316145b806104de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104f390611761565b80601f016020809104026020016040519081016040528092919081815260200182805461051f90611761565b801561056c5780601f106105415761010080835404028352916020019161056c565b820191906000526020600020905b81548152906001019060200180831161054f57829003601f168201915b5050505050905090565b600061058182610e09565b61059e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105c582610e30565b9050806001600160a01b0316836001600160a01b031614156105fa5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461063157610614813361044f565b610631576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610698838383610e98565b505050565b61069883838360405180602001604052806000815250610c01565b6009546001600160a01b031633146107105760405162461bcd60e51b81526020600482015260166024820152754f6e6c79206f776e65722063616e20646f207468697360501b60448201526064015b60405180910390fd5b805161072390600b9060208401906113b1565b5050565b60006104de82610e30565b600081610752576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546104f390611761565b600260085414156107da5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610707565b6002600855600a8111156108305760405162461bcd60e51b815260206004820181905260248201527f43616e206d696e74206174206d617820313020696e20656163682062617463686044820152606401610707565b336000908152600c6020526040902054600a9061084e9083906117b2565b111561089c5760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7473207265616368656420627920746869732077616c6c65746044820152606401610707565b611388816108ad6001546000540390565b6108b791906117b2565b11156109055760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f756768204e465473206c65667420746f206d696e74000000006044820152606401610707565b600a546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561094e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097291906117ca565b11156109ea5761098a8167016345785d8a00006117e3565b3410156109ea5760405162461bcd60e51b815260206004820152602860248201527f4241594320686f6c64657273206e65656420746f2070617920302e3120657468604482015267081c195c8813919560c21b6064820152608401610707565b336000908152600c6020526040902054610a059082906117b2565b336000818152600c6020526040902091909155610a229082611048565b506001600855565b6001600160a01b038216331415610a545760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026008541415610b135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610707565b60026008556009546001600160a01b03163314610b6b5760405162461bcd60e51b81526020600482015260166024820152754f6e6c79206f776e65722063616e20646f207468697360501b6044820152606401610707565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610bb8576040519150601f19603f3d011682016040523d82523d6000602084013e610bbd565b606091505b5050905080610a225760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610707565b610c0c848484610e98565b6001600160a01b0383163b15610c4557610c2884848484611062565b610c45576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c5682610e09565b610cba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610707565b6000600b8054610cc990611761565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590611761565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b5050505050905080610d538461114b565b604051602001610d64929190611802565b604051602081830303815290604052915050919050565b600b8054610d8890611761565b80601f0160208091040260200160405190810160405280929190818152602001828054610db490611761565b8015610e015780601f10610dd657610100808354040283529160200191610e01565b820191906000526020600020905b815481529060010190602001808311610de457829003601f168201915b505050505081565b60008054821080156104de575050600090815260046020526040902054600160e01b161590565b600081600054811015610e7f57600081815260046020526040902054600160e01b8116610e7d575b80610e76575060001901600081815260046020526040902054610e58565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610ea382610e30565b9050836001600160a01b0316816001600160a01b031614610ed65760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610f065750610f06863361044f565b80610f1957506001600160a01b03821633145b905080610f3957604051632ce44b5f60e11b815260040160405180910390fd5b84610f5757604051633a954ecd60e21b815260040160405180910390fd5b8115610f7a57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610fff5760018401600081815260046020526040902054610ffd576000548114610ffd5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610723828260405180602001604052806000815250611249565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611097903390899088908890600401611841565b6020604051808303816000875af19250505080156110d2575060408051601f3d908101601f191682019092526110cf9181019061187e565b60015b61112d573d808015611100576040519150601f19603f3d011682016040523d82523d6000602084013e611105565b606091505b508051611125576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161116f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561119957806111838161189b565b91506111929050600a836118cc565b9150611173565b60008167ffffffffffffffff8111156111b4576111b4611586565b6040519080825280601f01601f1916602001820160405280156111de576020820181803683370190505b5090505b8415611143576111f36001836118e0565b9150611200600a866118f7565b61120b9060306117b2565b60f81b8183815181106112205761122061190b565b60200101906001600160f81b031916908160001a905350611242600a866118cc565b94506111e2565b6000548361126957604051622e076360e81b815260040160405180910390fd5b826112875760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561135c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113256000878480600101955087611062565b611342576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112da57826000541461135757600080fd5b6113a1565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061135d575b506000908155610c459085838684565b8280546113bd90611761565b90600052602060002090601f0160209004810192826113df5760008555611425565b82601f106113f857805160ff1916838001178555611425565b82800160010185558215611425579182015b8281111561142557825182559160200191906001019061140a565b50611431929150611435565b5090565b5b808211156114315760008155600101611436565b6001600160e01b03198116811461146057600080fd5b50565b60006020828403121561147557600080fd5b8135610e768161144a565b60005b8381101561149b578181015183820152602001611483565b83811115610c455750506000910152565b600081518084526114c4816020860160208601611480565b601f01601f19169290920160200192915050565b602081526000610e7660208301846114ac565b6000602082840312156114fd57600080fd5b5035919050565b80356001600160a01b038116811461151b57600080fd5b919050565b6000806040838503121561153357600080fd5b61153c83611504565b946020939093013593505050565b60008060006060848603121561155f57600080fd5b61156884611504565b925061157660208501611504565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156115b7576115b7611586565b604051601f8501601f19908116603f011681019082821181831017156115df576115df611586565b816040528093508581528686860111156115f857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561162457600080fd5b813567ffffffffffffffff81111561163b57600080fd5b8201601f8101841361164c57600080fd5b6111438482356020840161159c565b60006020828403121561166d57600080fd5b610e7682611504565b6000806040838503121561168957600080fd5b61169283611504565b9150602083013580151581146116a757600080fd5b809150509250929050565b600080600080608085870312156116c857600080fd5b6116d185611504565b93506116df60208601611504565b925060408501359150606085013567ffffffffffffffff81111561170257600080fd5b8501601f8101871361171357600080fd5b6117228782356020840161159c565b91505092959194509250565b6000806040838503121561174157600080fd5b61174a83611504565b915061175860208401611504565b90509250929050565b600181811c9082168061177557607f821691505b6020821081141561179657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156117c5576117c561179c565b500190565b6000602082840312156117dc57600080fd5b5051919050565b60008160001904831182151516156117fd576117fd61179c565b500290565b60008351611814818460208801611480565b835190830190611828818360208801611480565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611874908301846114ac565b9695505050505050565b60006020828403121561189057600080fd5b8151610e768161144a565b60006000198214156118af576118af61179c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826118db576118db6118b6565b500490565b6000828210156118f2576118f261179c565b500390565b600082611906576119066118b6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c6fc02a95589b5641fa6135ad76651f2d9eed5ae4a0420252a27f3a8d8445f4364736f6c634300080c003368747470733a2f2f7777772e63616b65646170657961636874636c75622e636f6d2f6d657461646174612f6173736574732f

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146103f4578063c87b56dd14610414578063e985e9c514610434578063f259a29e1461047d57600080fd5b8063a22cb465146103a3578063ac446002146103c3578063b2249acf146103d857600080fd5b80636352211e146102ee57806363820f231461030e57806370a082311461033b5780638da5cb5b1461035b57806395d89b411461037b578063a0712d681461039057600080fd5b806318160ddd1161012357806318160ddd1461023f57806323b872dd1461025857806332cb6b0c1461027857806342842e0e1461028e5780635530bca5146102ae57806355f804b3146102ce57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806309d42b301461021c5780630f2cdd6c1461021c575b600080fd5b34801561017757600080fd5b5061018b610186366004611463565b610492565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104e4565b60405161019791906114d8565b3480156101ce57600080fd5b506101e26101dd3660046114eb565b610576565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611520565b6105ba565b005b34801561022857600080fd5b50610231600a81565b604051908152602001610197565b34801561024b57600080fd5b5060015460005403610231565b34801561026457600080fd5b5061021a61027336600461154a565b61068d565b34801561028457600080fd5b5061023161138881565b34801561029a57600080fd5b5061021a6102a936600461154a565b61069d565b3480156102ba57600080fd5b50600a546101e2906001600160a01b031681565b3480156102da57600080fd5b5061021a6102e9366004611612565b6106b8565b3480156102fa57600080fd5b506101e26103093660046114eb565b610727565b34801561031a57600080fd5b5061023161032936600461165b565b600c6020526000908152604090205481565b34801561034757600080fd5b5061023161035636600461165b565b610732565b34801561036757600080fd5b506009546101e2906001600160a01b031681565b34801561038757600080fd5b506101b5610778565b61021a61039e3660046114eb565b610787565b3480156103af57600080fd5b5061021a6103be366004611676565b610a2a565b3480156103cf57600080fd5b5061021a610ac0565b3480156103e457600080fd5b5061023167016345785d8a000081565b34801561040057600080fd5b5061021a61040f3660046116b2565b610c01565b34801561042057600080fd5b506101b561042f3660046114eb565b610c4b565b34801561044057600080fd5b5061018b61044f36600461172e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048957600080fd5b506101b5610d7b565b60006301ffc9a760e01b6001600160e01b0319831614806104c357506380ac58cd60e01b6001600160e01b03198316145b806104de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104f390611761565b80601f016020809104026020016040519081016040528092919081815260200182805461051f90611761565b801561056c5780601f106105415761010080835404028352916020019161056c565b820191906000526020600020905b81548152906001019060200180831161054f57829003601f168201915b5050505050905090565b600061058182610e09565b61059e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105c582610e30565b9050806001600160a01b0316836001600160a01b031614156105fa5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461063157610614813361044f565b610631576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610698838383610e98565b505050565b61069883838360405180602001604052806000815250610c01565b6009546001600160a01b031633146107105760405162461bcd60e51b81526020600482015260166024820152754f6e6c79206f776e65722063616e20646f207468697360501b60448201526064015b60405180910390fd5b805161072390600b9060208401906113b1565b5050565b60006104de82610e30565b600081610752576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546104f390611761565b600260085414156107da5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610707565b6002600855600a8111156108305760405162461bcd60e51b815260206004820181905260248201527f43616e206d696e74206174206d617820313020696e20656163682062617463686044820152606401610707565b336000908152600c6020526040902054600a9061084e9083906117b2565b111561089c5760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7473207265616368656420627920746869732077616c6c65746044820152606401610707565b611388816108ad6001546000540390565b6108b791906117b2565b11156109055760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f756768204e465473206c65667420746f206d696e74000000006044820152606401610707565b600a546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561094e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097291906117ca565b11156109ea5761098a8167016345785d8a00006117e3565b3410156109ea5760405162461bcd60e51b815260206004820152602860248201527f4241594320686f6c64657273206e65656420746f2070617920302e3120657468604482015267081c195c8813919560c21b6064820152608401610707565b336000908152600c6020526040902054610a059082906117b2565b336000818152600c6020526040902091909155610a229082611048565b506001600855565b6001600160a01b038216331415610a545760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026008541415610b135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610707565b60026008556009546001600160a01b03163314610b6b5760405162461bcd60e51b81526020600482015260166024820152754f6e6c79206f776e65722063616e20646f207468697360501b6044820152606401610707565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610bb8576040519150601f19603f3d011682016040523d82523d6000602084013e610bbd565b606091505b5050905080610a225760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610707565b610c0c848484610e98565b6001600160a01b0383163b15610c4557610c2884848484611062565b610c45576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c5682610e09565b610cba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610707565b6000600b8054610cc990611761565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590611761565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b5050505050905080610d538461114b565b604051602001610d64929190611802565b604051602081830303815290604052915050919050565b600b8054610d8890611761565b80601f0160208091040260200160405190810160405280929190818152602001828054610db490611761565b8015610e015780601f10610dd657610100808354040283529160200191610e01565b820191906000526020600020905b815481529060010190602001808311610de457829003601f168201915b505050505081565b60008054821080156104de575050600090815260046020526040902054600160e01b161590565b600081600054811015610e7f57600081815260046020526040902054600160e01b8116610e7d575b80610e76575060001901600081815260046020526040902054610e58565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610ea382610e30565b9050836001600160a01b0316816001600160a01b031614610ed65760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610f065750610f06863361044f565b80610f1957506001600160a01b03821633145b905080610f3957604051632ce44b5f60e11b815260040160405180910390fd5b84610f5757604051633a954ecd60e21b815260040160405180910390fd5b8115610f7a57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610fff5760018401600081815260046020526040902054610ffd576000548114610ffd5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610723828260405180602001604052806000815250611249565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611097903390899088908890600401611841565b6020604051808303816000875af19250505080156110d2575060408051601f3d908101601f191682019092526110cf9181019061187e565b60015b61112d573d808015611100576040519150601f19603f3d011682016040523d82523d6000602084013e611105565b606091505b508051611125576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161116f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561119957806111838161189b565b91506111929050600a836118cc565b9150611173565b60008167ffffffffffffffff8111156111b4576111b4611586565b6040519080825280601f01601f1916602001820160405280156111de576020820181803683370190505b5090505b8415611143576111f36001836118e0565b9150611200600a866118f7565b61120b9060306117b2565b60f81b8183815181106112205761122061190b565b60200101906001600160f81b031916908160001a905350611242600a866118cc565b94506111e2565b6000548361126957604051622e076360e81b815260040160405180910390fd5b826112875760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561135c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113256000878480600101955087611062565b611342576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112da57826000541461135757600080fd5b6113a1565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061135d575b506000908155610c459085838684565b8280546113bd90611761565b90600052602060002090601f0160209004810192826113df5760008555611425565b82601f106113f857805160ff1916838001178555611425565b82800160010185558215611425579182015b8281111561142557825182559160200191906001019061140a565b50611431929150611435565b5090565b5b808211156114315760008155600101611436565b6001600160e01b03198116811461146057600080fd5b50565b60006020828403121561147557600080fd5b8135610e768161144a565b60005b8381101561149b578181015183820152602001611483565b83811115610c455750506000910152565b600081518084526114c4816020860160208601611480565b601f01601f19169290920160200192915050565b602081526000610e7660208301846114ac565b6000602082840312156114fd57600080fd5b5035919050565b80356001600160a01b038116811461151b57600080fd5b919050565b6000806040838503121561153357600080fd5b61153c83611504565b946020939093013593505050565b60008060006060848603121561155f57600080fd5b61156884611504565b925061157660208501611504565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156115b7576115b7611586565b604051601f8501601f19908116603f011681019082821181831017156115df576115df611586565b816040528093508581528686860111156115f857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561162457600080fd5b813567ffffffffffffffff81111561163b57600080fd5b8201601f8101841361164c57600080fd5b6111438482356020840161159c565b60006020828403121561166d57600080fd5b610e7682611504565b6000806040838503121561168957600080fd5b61169283611504565b9150602083013580151581146116a757600080fd5b809150509250929050565b600080600080608085870312156116c857600080fd5b6116d185611504565b93506116df60208601611504565b925060408501359150606085013567ffffffffffffffff81111561170257600080fd5b8501601f8101871361171357600080fd5b6117228782356020840161159c565b91505092959194509250565b6000806040838503121561174157600080fd5b61174a83611504565b915061175860208401611504565b90509250929050565b600181811c9082168061177557607f821691505b6020821081141561179657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156117c5576117c561179c565b500190565b6000602082840312156117dc57600080fd5b5051919050565b60008160001904831182151516156117fd576117fd61179c565b500290565b60008351611814818460208801611480565b835190830190611828818360208801611480565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611874908301846114ac565b9695505050505050565b60006020828403121561189057600080fd5b8151610e768161144a565b60006000198214156118af576118af61179c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826118db576118db6118b6565b500490565b6000828210156118f2576118f261179c565b500390565b600082611906576119066118b6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c6fc02a95589b5641fa6135ad76651f2d9eed5ae4a0420252a27f3a8d8445f4364736f6c634300080c0033

Deployed Bytecode Sourcemap

50332:2074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23710:615;;;;;;;;;;-1:-1:-1;23710:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23710:615:0;;;;;;;;28733:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30801:204::-;;;;;;;;;;-1:-1:-1;30801:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30801:204:0;1528:203:1;30261:474:0;;;;;;;;;;-1:-1:-1;30261:474:0;;;;;:::i;:::-;;:::i;:::-;;50475:38;;;;;;;;;;;;50511:2;50475:38;;;;;2319:25:1;;;2307:2;2292:18;50475:38:0;2173:177:1;22764:315:0;;;;;;;;;;-1:-1:-1;23030:12:0;;22817:7;23014:13;:28;22764:315;;31687:170;;;;;;;;;;-1:-1:-1;31687:170:0;;;;;:::i;:::-;;:::i;50430:38::-;;;;;;;;;;;;50464:4;50430:38;;31928:185;;;;;;;;;;-1:-1:-1;31928:185:0;;;;;:::i;:::-;;:::i;50659:81::-;;;;;;;;;;-1:-1:-1;50659:81:0;;;;-1:-1:-1;;;;;50659:81:0;;;51674:149;;;;;;;;;;-1:-1:-1;51674:149:0;;;;;:::i;:::-;;:::i;28522:144::-;;;;;;;;;;-1:-1:-1;28522:144:0;;;;;:::i;:::-;;:::i;50831:44::-;;;;;;;;;;-1:-1:-1;50831:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;24389:234;;;;;;;;;;-1:-1:-1;24389:234:0;;;;;:::i;:::-;;:::i;50631:20::-;;;;;;;;;;-1:-1:-1;50631:20:0;;;;-1:-1:-1;;;;;50631:20:0;;;28902:104;;;;;;;;;;;;;:::i;50996:670::-;;;;;;:::i;:::-;;:::i;31077:308::-;;;;;;;;;;-1:-1:-1;31077:308:0;;;;;:::i;:::-;;:::i;51831:247::-;;;;;;;;;;;;;:::i;50567:55::-;;;;;;;;;;;;50613:9;50567:55;;32184:396;;;;;;;;;;-1:-1:-1;32184:396:0;;;;;:::i;:::-;;:::i;52090:305::-;;;;;;;;;;-1:-1:-1;52090:305:0;;;;;:::i;:::-;;:::i;31456:164::-;;;;;;;;;;-1:-1:-1;31456:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31577:25:0;;;31553:4;31577:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31456:164;50747:77;;;;;;;;;;;;;:::i;23710:615::-;23795:4;-1:-1:-1;;;;;;;;;24095:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24172:25:0;;;24095:102;:179;;;-1:-1:-1;;;;;;;;;;24249:25:0;;;24095:179;24075:199;23710:615;-1:-1:-1;;23710:615:0:o;28733:100::-;28787:13;28820:5;28813:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28733:100;:::o;30801:204::-;30869:7;30894:16;30902:7;30894;:16::i;:::-;30889:64;;30919:34;;-1:-1:-1;;;30919:34:0;;;;;;;;;;;30889:64;-1:-1:-1;30973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30973:24:0;;30801:204::o;30261:474::-;30334:13;30366:27;30385:7;30366:18;:27::i;:::-;30334:61;;30416:5;-1:-1:-1;;;;;30410:11:0;:2;-1:-1:-1;;;;;30410:11:0;;30406:48;;;30430:24;;-1:-1:-1;;;30430:24:0;;;;;;;;;;;30406:48;47189:10;-1:-1:-1;;;;;30471:28:0;;;30467:175;;30519:44;30536:5;47189:10;31456:164;:::i;30519:44::-;30514:128;;30591:35;;-1:-1:-1;;;30591:35:0;;;;;;;;;;;30514:128;30654:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;30654:29:0;-1:-1:-1;;;;;30654:29:0;;;;;;;;;30699:28;;30654:24;;30699:28;;;;;;;30323:412;30261:474;;:::o;31687:170::-;31821:28;31831:4;31837:2;31841:7;31821:9;:28::i;:::-;31687:170;;;:::o;31928:185::-;32066:39;32083:4;32089:2;32093:7;32066:39;;;;;;;;;;;;:16;:39::i;51674:149::-;51755:5;;-1:-1:-1;;;;;51755:5:0;51743:10;:17;51735:51;;;;-1:-1:-1;;;51735:51:0;;5980:2:1;51735:51:0;;;5962:21:1;6019:2;5999:18;;;5992:30;-1:-1:-1;;;6038:18:1;;;6031:52;6100:18;;51735:51:0;;;;;;;;;51797:18;;;;:8;;:18;;;;;:::i;:::-;;51674:149;:::o;28522:144::-;28586:7;28629:27;28648:7;28629:18;:27::i;24389:234::-;24453:7;24495:5;24473:70;;24515:28;;-1:-1:-1;;;24515:28:0;;;;;;;;;;;24473:70;-1:-1:-1;;;;;;24561:25:0;;;;;:18;:25;;;;;;19734:13;24561:54;;24389:234::o;28902:104::-;28958:13;28991:7;28984:14;;;;;:::i;50996:670::-;9720:1;10318:7;;:19;;10310:63;;;;-1:-1:-1;;;10310:63:0;;6331:2:1;10310:63:0;;;6313:21:1;6370:2;6350:18;;;6343:30;6409:33;6389:18;;;6382:61;6460:18;;10310:63:0;6129:355:1;10310:63:0;9720:1;10451:7;:18;50511:2:::1;51088:25:::0;::::1;;51080:70;;;::::0;-1:-1:-1;;;51080:70:0;;6691:2:1;51080:70:0::1;::::0;::::1;6673:21:1::0;;;6710:18;;;6703:30;6769:34;6749:18;;;6742:62;6821:18;;51080:70:0::1;6489:356:1::0;51080:70:0::1;51184:10;51169:26;::::0;;;:14:::1;:26;::::0;;;;;50558:2:::1;::::0;51169:37:::1;::::0;51197:9;;51169:37:::1;:::i;:::-;:53;;51161:97;;;::::0;-1:-1:-1;;;51161:97:0;;7317:2:1;51161:97:0::1;::::0;::::1;7299:21:1::0;;;7336:18;;;7329:30;7395:34;7375:18;;;7368:62;7447:18;;51161:97:0::1;7115:356:1::0;51161:97:0::1;50464:4;51293:9;51277:13;23030:12:::0;;22817:7;23014:13;:28;;22764:315;51277:13:::1;:25;;;;:::i;:::-;:39;;51269:80;;;::::0;-1:-1:-1;;;51269:80:0;;7678:2:1;51269:80:0::1;::::0;::::1;7660:21:1::0;7717:2;7697:18;;;7690:30;7756;7736:18;;;7729:58;7804:18;;51269:80:0::1;7476:352:1::0;51269:80:0::1;51371:21;::::0;51363:52:::1;::::0;-1:-1:-1;;;51363:52:0;;51404:10:::1;51363:52;::::0;::::1;1674:51:1::0;51416:1:0::1;::::0;-1:-1:-1;;;;;51371:21:0::1;::::0;51363:40:::1;::::0;1647:18:1;;51363:52:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;51360:182;;;51452:34;51477:9:::0;50613::::1;51452:34;:::i;:::-;51441:9;:45;;51433:97;;;::::0;-1:-1:-1;;;51433:97:0;;8397:2:1;51433:97:0::1;::::0;::::1;8379:21:1::0;8436:2;8416:18;;;8409:30;8475:34;8455:18;;;8448:62;-1:-1:-1;;;8526:18:1;;;8519:38;8574:19;;51433:97:0::1;8195:404:1::0;51433:97:0::1;51594:10;51579:26;::::0;;;:14:::1;:26;::::0;;;;;:36:::1;::::0;51606:9;;51579:36:::1;:::i;:::-;51567:10;51552:26;::::0;;;:14:::1;:26;::::0;;;;:63;;;;51626:32:::1;::::0;51648:9;51626::::1;:32::i;:::-;-1:-1:-1::0;9676:1:0;10630:7;:22;50996:670::o;31077:308::-;-1:-1:-1;;;;;31176:31:0;;47189:10;31176:31;31172:61;;;31216:17;;-1:-1:-1;;;31216:17:0;;;;;;;;;;;31172:61;47189:10;31246:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;31246:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;31246:60:0;;;;;;;;;;31322:55;;540:41:1;;;31246:49:0;;47189:10;31322:55;;513:18:1;31322:55:0;;;;;;;31077:308;;:::o;51831:247::-;9720:1;10318:7;;:19;;10310:63;;;;-1:-1:-1;;;10310:63:0;;6331:2:1;10310:63:0;;;6313:21:1;6370:2;6350:18;;;6343:30;6409:33;6389:18;;;6382:61;6460:18;;10310:63:0;6129:355:1;10310:63:0;9720:1;10451:7;:18;51909:5:::1;::::0;-1:-1:-1;;;;;51909:5:0::1;51897:10;:17;51889:51;;;::::0;-1:-1:-1;;;51889:51:0;;5980:2:1;51889:51:0::1;::::0;::::1;5962:21:1::0;6019:2;5999:18;;;5992:30;-1:-1:-1;;;6038:18:1;;;6031:52;6100:18;;51889:51:0::1;5778:346:1::0;51889:51:0::1;51978:5;::::0;51970:53:::1;::::0;51952:12:::1;::::0;-1:-1:-1;;;;;51978:5:0::1;::::0;51997:21:::1;::::0;51952:12;51970:53;51952:12;51970:53;51997:21;51978:5;51970:53:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51951:72;;;52042:7;52034:36;;;::::0;-1:-1:-1;;;52034:36:0;;9016:2:1;52034:36:0::1;::::0;::::1;8998:21:1::0;9055:2;9035:18;;;9028:30;-1:-1:-1;;;9074:18:1;;;9067:46;9130:18;;52034:36:0::1;8814:340:1::0;32184:396:0;32351:28;32361:4;32367:2;32371:7;32351:9;:28::i;:::-;-1:-1:-1;;;;;32394:14:0;;;:19;32390:183;;32433:56;32464:4;32470:2;32474:7;32483:5;32433:30;:56::i;:::-;32428:145;;32517:40;;-1:-1:-1;;;32517:40:0;;;;;;;;;;;32428:145;32184:396;;;;:::o;52090:305::-;52163:13;52197:16;52205:7;52197;:16::i;:::-;52189:76;;;;-1:-1:-1;;;52189:76:0;;9361:2:1;52189:76:0;;;9343:21:1;9400:2;9380:18;;;9373:30;9439:34;9419:18;;;9412:62;-1:-1:-1;;;9490:18:1;;;9483:45;9545:19;;52189:76:0;9159:411:1;52189:76:0;52276:21;52300:8;52276:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52350:7;52359:18;:7;:16;:18::i;:::-;52333:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52319:68;;;52090:305;;;:::o;50747:77::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32835:273::-;32892:4;32982:13;;32972:7;:23;32929:152;;;;-1:-1:-1;;33033:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33033:43:0;:48;;32835:273::o;26037:1129::-;26104:7;26139;26241:13;;26234:4;:20;26230:869;;;26279:14;26296:23;;;:17;:23;;;;;;-1:-1:-1;;;26385:23:0;;26381:699;;26904:113;26911:11;26904:113;;-1:-1:-1;;;26982:6:0;26964:25;;;;:17;:25;;;;;;26904:113;;;27050:6;26037:1129;-1:-1:-1;;;26037:1129:0:o;26381:699::-;26256:843;26230:869;27127:31;;-1:-1:-1;;;27127:31:0;;;;;;;;;;;38094:2654;38209:27;38239;38258:7;38239:18;:27::i;:::-;38209:57;;38324:4;-1:-1:-1;;;;;38283:45:0;38299:19;-1:-1:-1;;;;;38283:45:0;;38279:86;;38337:28;;-1:-1:-1;;;38337:28:0;;;;;;;;;;;38279:86;38378:23;38404:24;;;:15;:24;;;;;;-1:-1:-1;;;;;38404:24:0;;;;38378:23;38467:27;;47189:10;38467:27;;:87;;-1:-1:-1;38511:43:0;38528:4;47189:10;31456:164;:::i;38511:43::-;38467:142;;;-1:-1:-1;;;;;;38571:38:0;;47189:10;38571:38;38467:142;38441:169;;38628:17;38623:66;;38654:35;;-1:-1:-1;;;38654:35:0;;;;;;;;;;;38623:66;38722:2;38700:62;;38739:23;;-1:-1:-1;;;38739:23:0;;;;;;;;;;;38700:62;38906:15;38888:39;38884:103;;38951:24;;;;:15;:24;;;;;38944:31;;-1:-1:-1;;;;;;38944:31:0;;;38884:103;-1:-1:-1;;;;;39354:24:0;;;;;;;:18;:24;;;;;;;;39352:26;;-1:-1:-1;;39352:26:0;;;39423:22;;;;;;;;39421:24;;-1:-1:-1;39421:24:0;;;39716:26;;;:17;:26;;;-1:-1:-1;;;39804:15:0;20388:3;39804:41;39762:84;;:128;;39716:174;;;40010:46;;40006:626;;40114:1;40104:11;;40082:19;40237:30;;;:17;:30;;;;;;40233:384;;40375:13;;40360:11;:28;40356:242;;40522:30;;;;:17;:30;;;;;:52;;;40356:242;40063:569;40006:626;40679:7;40675:2;-1:-1:-1;;;;;40660:27:0;40669:4;-1:-1:-1;;;;;40660:27:0;;;;;;;;;;;38198:2550;;;38094:2654;;;:::o;33192:104::-;33261:27;33271:2;33275:8;33261:27;;;;;;;;;;;;:9;:27::i;44571:716::-;44755:88;;-1:-1:-1;;;44755:88:0;;44734:4;;-1:-1:-1;;;;;44755:45:0;;;;;:88;;47189:10;;44822:4;;44828:7;;44837:5;;44755:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44755:88:0;;;;;;;;-1:-1:-1;;44755:88:0;;;;;;;;;;;;:::i;:::-;;;44751:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45038:13:0;;45034:235;;45084:40;;-1:-1:-1;;;45084:40:0;;;;;;;;;;;45034:235;45227:6;45221:13;45212:6;45208:2;45204:15;45197:38;44751:529;-1:-1:-1;;;;;;44914:64:0;-1:-1:-1;;;44914:64:0;;-1:-1:-1;44751:529:0;44571:716;;;;;;:::o;6151:723::-;6207:13;6428:10;6424:53;;-1:-1:-1;;6455:10:0;;;;;;;;;;;;-1:-1:-1;;;6455:10:0;;;;;6151:723::o;6424:53::-;6502:5;6487:12;6543:78;6550:9;;6543:78;;6576:8;;;;:::i;:::-;;-1:-1:-1;6599:10:0;;-1:-1:-1;6607:2:0;6599:10;;:::i;:::-;;;6543:78;;;6631:19;6663:6;6653:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6653:17:0;;6631:39;;6681:154;6688:10;;6681:154;;6715:11;6725:1;6715:11;;:::i;:::-;;-1:-1:-1;6784:10:0;6792:2;6784:5;:10;:::i;:::-;6771:24;;:2;:24;:::i;:::-;6758:39;;6741:6;6748;6741:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6741:56:0;;;;;;;;-1:-1:-1;6812:11:0;6821:2;6812:11;;:::i;:::-;;;6681:154;;33669:2246;33792:20;33815:13;33861:2;33839:58;;33878:19;;-1:-1:-1;;;33878:19:0;;;;;;;;;;;33839:58;33912:13;33908:44;;33934:18;;-1:-1:-1;;;33934:18:0;;;;;;;;;;;33908:44;-1:-1:-1;;;;;34501:22:0;;;;;;:18;:22;;;;19871:2;34501:22;;;:70;;34539:31;34527:44;;34501:70;;;34814:31;;;:17;:31;;;;;34907:15;20388:3;34907:41;34865:84;;-1:-1:-1;34985:13:0;;20647:3;34970:56;34865:162;34814:213;;:31;;35108:23;;;;35152:14;:19;35148:635;;35192:313;35223:38;;35248:12;;-1:-1:-1;;;;;35223:38:0;;;35240:1;;35223:38;;35240:1;;35223:38;35289:69;35328:1;35332:2;35336:14;;;;;;35352:5;35289:30;:69::i;:::-;35284:174;;35394:40;;-1:-1:-1;;;35394:40:0;;;;;;;;;;;35284:174;35500:3;35485:12;:18;35192:313;;35586:12;35569:13;;:29;35565:43;;35600:8;;;35565:43;35148:635;;;35649:119;35680:40;;35705:14;;;;;-1:-1:-1;;;;;35680:40:0;;;35697:1;;35680:40;;35697:1;;35680:40;35763:3;35748:12;:18;35649:119;;35148:635;-1:-1:-1;35797:13:0;:28;;;35847:60;;35880:2;35884:12;35898:8;35847:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6850:127::-;6911:10;6906:3;6902:20;6899:1;6892:31;6942:4;6939:1;6932:15;6966:4;6963:1;6956:15;6982:128;7022:3;7053:1;7049:6;7046:1;7043:13;7040:39;;;7059:18;;:::i;:::-;-1:-1:-1;7095:9:1;;6982:128::o;7833:184::-;7903:6;7956:2;7944:9;7935:7;7931:23;7927:32;7924:52;;;7972:1;7969;7962:12;7924:52;-1:-1:-1;7995:16:1;;7833:184;-1:-1:-1;7833:184:1:o;8022:168::-;8062:7;8128:1;8124;8120:6;8116:14;8113:1;8110:21;8105:1;8098:9;8091:17;8087:45;8084:71;;;8135:18;;:::i;:::-;-1:-1:-1;8175:9:1;;8022:168::o;9575:637::-;9855:3;9893:6;9887:13;9909:53;9955:6;9950:3;9943:4;9935:6;9931:17;9909:53;:::i;:::-;10025:13;;9984:16;;;;10047:57;10025:13;9984:16;10081:4;10069:17;;10047:57;:::i;:::-;-1:-1:-1;;;10126:20:1;;10155:22;;;10204:1;10193:13;;9575:637;-1:-1:-1;;;;9575:637:1:o;10217:489::-;-1:-1:-1;;;;;10486:15:1;;;10468:34;;10538:15;;10533:2;10518:18;;10511:43;10585:2;10570:18;;10563:34;;;10633:3;10628:2;10613:18;;10606:31;;;10411:4;;10654:46;;10680:19;;10672:6;10654:46;:::i;:::-;10646:54;10217:489;-1:-1:-1;;;;;;10217:489:1:o;10711:249::-;10780:6;10833:2;10821:9;10812:7;10808:23;10804:32;10801:52;;;10849:1;10846;10839:12;10801:52;10881:9;10875:16;10900:30;10924:5;10900:30;:::i;10965:135::-;11004:3;-1:-1:-1;;11025:17:1;;11022:43;;;11045:18;;:::i;:::-;-1:-1:-1;11092:1:1;11081:13;;10965:135::o;11105:127::-;11166:10;11161:3;11157:20;11154:1;11147:31;11197:4;11194:1;11187:15;11221:4;11218:1;11211:15;11237:120;11277:1;11303;11293:35;;11308:18;;:::i;:::-;-1:-1:-1;11342:9:1;;11237:120::o;11362:125::-;11402:4;11430:1;11427;11424:8;11421:34;;;11435:18;;:::i;:::-;-1:-1:-1;11472:9:1;;11362:125::o;11492:112::-;11524:1;11550;11540:35;;11555:18;;:::i;:::-;-1:-1:-1;11589:9:1;;11492:112::o;11609:127::-;11670:10;11665:3;11661:20;11658:1;11651:31;11701:4;11698:1;11691:15;11725:4;11722:1;11715:15

Swarm Source

ipfs://c6fc02a95589b5641fa6135ad76651f2d9eed5ae4a0420252a27f3a8d8445f43
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.