ETH Price: $2,528.95 (-1.98%)

Token

Pretty Pink Punks (PPPNFT)
 

Overview

Max Total Supply

141 PPPNFT

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PPPNFT
0xFB2B1Ff4A80aF6d4F2798E34426E7766626d8F88
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:
PrettyPinkPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-27
*/

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/PrettyPinkPunks.sol


pragma solidity ^0.8.4;



contract PrettyPinkPunks is ERC721A, Ownable {
    uint256 public maxPerTx = 10;
    uint256 public maxPerWallet = 10;
    uint256 public maxFreePerWallet = 1;
    uint256 public teamSupply = 111;
    uint256 public freeMints = 0;
    bool public saleStarted = false;
    uint256 public maxSupply = 2222;
    uint256 public maxFreeSupply = 1111;
    uint256 public price = 0.002 ether;
    string public uriSuffix = ".json";
    string public baseURI = "ipfs://bafybeih7kwovtik4kveay6ydachlzuqigpud7vyrhkx6hsdav3x56wsvzm/";

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {}

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function updatePrice(uint256 __price) public onlyOwner {
        price = __price;
    }

    function publicSale(uint256 amount) external payable {
        require(saleStarted, "Sale is not active.");
        require(amount <= maxPerTx, "Amount should not exceed max mint number!");
        require(totalSupply() + amount <= maxSupply, "Amount should not exceed max supply.");
        require(numberMinted(msg.sender) + amount <= maxPerWallet, "Amount should not exceed max per wallet.");

        uint256 freeMintCount = 0;
        bool isFreeMint = false;
        if (freeMints < maxFreeSupply) {
            freeMintCount = maxFreePerWallet;
        }

        uint256 count = amount;
        if (numberMinted(msg.sender) < freeMintCount) {
            if (numberMinted(msg.sender) + amount <= freeMintCount) {
                count = 0;
            }                
            else {
                count = numberMinted(msg.sender) + amount - freeMintCount;
            }
            isFreeMint = true;
        }

        require(msg.value >= count * price, "Eth value is not enough");
        
        if(isFreeMint) freeMints += 1;

        _safeMint(msg.sender, amount);
    }

    function mintForTeam(uint256 amount) external onlyOwner {
        require(teamSupply > 0,"Amount should not exceed mint limit");
        require(amount <= teamSupply,"Amount should not exceed mint limit");
        require(totalSupply() + amount <= maxSupply, "Amount should not exceed max supply.");
        teamSupply -= amount;
        _safeMint(msg.sender, amount);
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)) : '';
    }

    function toggleSale() external onlyOwner {
        saleStarted = !saleStarted;
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function setMaxSupply(uint256 amount) external onlyOwner {
        maxSupply = amount;
    }

    function setMaxFreeSupply(uint256 amount) external onlyOwner {
        maxFreeSupply = amount;
    }

    function setMaxFreePerWallet(uint256 amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSupply","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":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a600981905580556001600b55606f600c556000600d55600e805460ff191690556108ae600f5561045760105566071afd498d000060115560c06040526005608081905264173539b7b760d91b60a09081526200006191601291906200015e565b5060405180608001604052806043815260200162001ea060439139805162000092916013916020909101906200015e565b50348015620000a057600080fd5b5060405162001ee338038062001ee3833981016040819052620000c391620002bb565b815182908290620000dc9060029060208501906200015e565b508051620000f29060039060208401906200015e565b5050600080555062000104336200010c565b505062000378565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016c9062000325565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b600082601f8301126200021657600080fd5b81516001600160401b038082111562000233576200023362000362565b604051601f8301601f19908116603f011681019082821181831017156200025e576200025e62000362565b816040528381526020925086838588010111156200027b57600080fd5b600091505b838210156200029f578582018301518183018401529082019062000280565b83821115620002b15760008385830101525b9695505050505050565b60008060408385031215620002cf57600080fd5b82516001600160401b0380821115620002e757600080fd5b620002f58683870162000204565b935060208501519150808211156200030c57600080fd5b506200031b8582860162000204565b9150509250929050565b600181811c908216806200033a57607f821691505b602082108114156200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b1880620003886000396000f3fe6080604052600436106102255760003560e01c80636f8b44b011610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105b7578063dc33e681146105cd578063e985e9c5146105ed578063f2fde38b14610636578063f968adbe1461065657600080fd5b8063a22cb4651461053b578063a70273571461055b578063b287c8ed14610571578063b88d4fde14610584578063c87b56dd1461059757600080fd5b806380b17335116100f257806380b17335146104bc5780638d6cc56d146104d25780638da5cb5b146104f257806395d89b4114610510578063a035b1fe1461052557600080fd5b80636f8b44b01461045257806370a0823114610472578063715018a6146104925780637d8966e4146104a757600080fd5b8063453c2310116101b15780635b28fd91116101755780635b28fd91146103c35780635c474f9e146103e35780636352211e146103fd5780636c0360eb1461041d5780636d7c4a4b1461043257600080fd5b8063453c23101461034257806347513334146103585780635503a0e81461036e57806355f804b3146103835780635a4d448a146103a357600080fd5b806318160ddd116101f857806318160ddd146102ce57806323b872dd146102f15780632cfac6ec146103045780633ccfd60b1461031a57806342842e0e1461032f57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611756565b61066c565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106be565b6040516102569190611951565b34801561028d57600080fd5b506102a161029c366004611802565b610750565b6040516001600160a01b039091168152602001610256565b6102cc6102c736600461172c565b610794565b005b3480156102da57600080fd5b50600154600054035b604051908152602001610256565b6102cc6102ff3660046115d8565b610834565b34801561031057600080fd5b506102e3600c5481565b34801561032657600080fd5b506102cc6109c5565b6102cc61033d3660046115d8565b610a64565b34801561034e57600080fd5b506102e3600a5481565b34801561036457600080fd5b506102e360105481565b34801561037a57600080fd5b50610274610a84565b34801561038f57600080fd5b506102cc61039e366004611790565b610b12565b3480156103af57600080fd5b506102cc6103be366004611802565b610b26565b3480156103cf57600080fd5b506102cc6103de366004611802565b610bcd565b3480156103ef57600080fd5b50600e5461024a9060ff1681565b34801561040957600080fd5b506102a1610418366004611802565b610bda565b34801561042957600080fd5b50610274610be5565b34801561043e57600080fd5b506102cc61044d366004611802565b610bf2565b34801561045e57600080fd5b506102cc61046d366004611802565b610bff565b34801561047e57600080fd5b506102e361048d36600461158a565b610c0c565b34801561049e57600080fd5b506102cc610c5b565b3480156104b357600080fd5b506102cc610c6f565b3480156104c857600080fd5b506102e3600d5481565b3480156104de57600080fd5b506102cc6104ed366004611802565b610c8b565b3480156104fe57600080fd5b506008546001600160a01b03166102a1565b34801561051c57600080fd5b50610274610c98565b34801561053157600080fd5b506102e360115481565b34801561054757600080fd5b506102cc6105563660046116f0565b610ca7565b34801561056757600080fd5b506102e3600b5481565b6102cc61057f366004611802565b610d13565b6102cc610592366004611614565b610f68565b3480156105a357600080fd5b506102746105b2366004611802565b610fac565b3480156105c357600080fd5b506102e3600f5481565b3480156105d957600080fd5b506102e36105e836600461158a565b611032565b3480156105f957600080fd5b5061024a6106083660046115a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064257600080fd5b506102cc61065136600461158a565b61105d565b34801561066257600080fd5b506102e360095481565b60006301ffc9a760e01b6001600160e01b03198316148061069d57506380ac58cd60e01b6001600160e01b03198316145b806106b85750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106cd90611a65565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990611a65565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075b826110d3565b610778576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079f82610bda565b9050336001600160a01b038216146107d8576107bb8133610608565b6107d8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061083f826110fa565b9050836001600160a01b0316816001600160a01b0316146108725760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108bf576108a28633610608565b6108bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108e657604051633a954ecd60e21b815260040160405180910390fd5b80156108f157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661097c576001840160008181526004602052604090205461097a57600054811461097a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6109cd611162565b604051600090339047908381818185875af1925050503d8060008114610a0f576040519150601f19603f3d011682016040523d82523d6000602084013e610a14565b606091505b5050905080610a615760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b50565b610a7f83838360405180602001604052806000815250610f68565b505050565b60128054610a9190611a65565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd90611a65565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b505050505081565b610b1a611162565b610a7f601383836114d5565b610b2e611162565b6000600c5411610b505760405162461bcd60e51b8152600401610a58906119a8565b600c54811115610b725760405162461bcd60e51b8152600401610a58906119a8565b600f5481610b836001546000540390565b610b8d91906119eb565b1115610bab5760405162461bcd60e51b8152600401610a5890611964565b80600c6000828254610bbd9190611a22565b90915550610a61905033826111bc565b610bd5611162565b601055565b60006106b8826110fa565b60138054610a9190611a65565b610bfa611162565b600b55565b610c07611162565b600f55565b60006001600160a01b038216610c35576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c63611162565b610c6d60006111da565b565b610c77611162565b600e805460ff19811660ff90911615179055565b610c93611162565b601155565b6060600380546106cd90611a65565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e5460ff16610d5b5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b6044820152606401610a58565b600954811115610dbf5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e60448201526874206e756d6265722160b81b6064820152608401610a58565b600f5481610dd06001546000540390565b610dda91906119eb565b1115610df85760405162461bcd60e51b8152600401610a5890611964565b600a5481610e0533611032565b610e0f91906119eb565b1115610e6e5760405162461bcd60e51b815260206004820152602860248201527f416d6f756e742073686f756c64206e6f7420657863656564206d617820706572604482015267103bb0b63632ba1760c11b6064820152608401610a58565b600080601054600d541015610e8357600b5491505b8282610e8e33611032565b1015610edd578284610e9f33611032565b610ea991906119eb565b11610eb657506000610ed8565b8284610ec133611032565b610ecb91906119eb565b610ed59190611a22565b90505b600191505b601154610eea9082611a03565b341015610f395760405162461bcd60e51b815260206004820152601760248201527f4574682076616c7565206973206e6f7420656e6f7567680000000000000000006044820152606401610a58565b8115610f58576001600d6000828254610f5291906119eb565b90915550505b610f6233856111bc565b50505050565b610f73848484610834565b6001600160a01b0383163b15610f6257610f8f8484848461122c565b610f62576040516368d2bf6b60e11b815260040160405180910390fd5b6060610fb7826110d3565b610fd457604051630a14c4b560e41b815260040160405180910390fd5b60138054610fe190611a65565b15159050610ffe57604051806020016040528060008152506106b8565b601361100983611323565b601260405160200161101d939291906118e1565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106b8565b611065611162565b6001600160a01b0381166110ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a58565b610a61816111da565b60008054821080156106b8575050600090815260046020526040902054600160e01b161590565b60008160005481101561114957600081815260046020526040902054600160e01b8116611147575b80611140575060001901600081815260046020526040902054611122565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610c6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a58565b6111d6828260405180602001604052806000815250611371565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611261903390899088908890600401611914565b602060405180830381600087803b15801561127b57600080fd5b505af19250505080156112ab575060408051601f3d908101601f191682019092526112a891810190611773565b60015b611306573d8080156112d9576040519150601f19603f3d011682016040523d82523d6000602084013e6112de565b606091505b5080516112fe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061135a5761135f565b61133d565b50819003601f19909101908152919050565b61137b83836113de565b6001600160a01b0383163b15610a7f576000548281035b6113a5600086838060010194508661122c565b6113c2576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113925781600054146113d757600080fd5b5050505050565b600054816113ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611476565b50816114cc57604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546114e190611a65565b90600052602060002090601f0160209004810192826115035760008555611549565b82601f1061151c5782800160ff19823516178555611549565b82800160010185558215611549579182015b8281111561154957823582559160200191906001019061152e565b50611555929150611559565b5090565b5b80821115611555576000815560010161155a565b80356001600160a01b038116811461158557600080fd5b919050565b60006020828403121561159c57600080fd5b6111408261156e565b600080604083850312156115b857600080fd5b6115c18361156e565b91506115cf6020840161156e565b90509250929050565b6000806000606084860312156115ed57600080fd5b6115f68461156e565b92506116046020850161156e565b9150604084013590509250925092565b6000806000806080858703121561162a57600080fd5b6116338561156e565b93506116416020860161156e565b925060408501359150606085013567ffffffffffffffff8082111561166557600080fd5b818701915087601f83011261167957600080fd5b81358181111561168b5761168b611ab6565b604051601f8201601f19908116603f011681019083821181831017156116b3576116b3611ab6565b816040528281528a60208487010111156116cc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561170357600080fd5b61170c8361156e565b91506020830135801515811461172157600080fd5b809150509250929050565b6000806040838503121561173f57600080fd5b6117488361156e565b946020939093013593505050565b60006020828403121561176857600080fd5b813561114081611acc565b60006020828403121561178557600080fd5b815161114081611acc565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208285010111156117f057600080fd5b60209290920196919550909350505050565b60006020828403121561181457600080fd5b5035919050565b60008151808452611833816020860160208601611a39565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061186157607f831692505b602080841082141561188357634e487b7160e01b600052602260045260246000fd5b81801561189757600181146118a8576118d5565b60ff198616895284890196506118d5565b60008881526020902060005b868110156118cd5781548b8201529085019083016118b4565b505084890196505b50505050505092915050565b60006118ed8286611847565b84516118fd818360208901611a39565b61190981830186611847565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119479083018461181b565b9695505050505050565b602081526000611140602083018461181b565b60208082526024908201527f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060408201526338363c9760e11b606082015260800190565b60208082526023908201527f416d6f756e742073686f756c64206e6f7420657863656564206d696e74206c696040820152621b5a5d60ea1b606082015260800190565b600082198211156119fe576119fe611aa0565b500190565b6000816000190483118215151615611a1d57611a1d611aa0565b500290565b600082821015611a3457611a34611aa0565b500390565b60005b83811015611a54578181015183820152602001611a3c565b83811115610f625750506000910152565b600181811c90821680611a7957607f821691505b60208210811415611a9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6157600080fdfea26469706673582212204b4fdefe88ad03e510d4ac0387a082ce58fc41ebabe83ac4e41ad170ca46b86a64736f6c63430008070033697066733a2f2f6261667962656968376b776f7674696b346b766561793679646163686c7a7571696770756437767972686b78366873646176337835367773767a6d2f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000115072657474792050696e6b2050756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065050504e46540000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636f8b44b011610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105b7578063dc33e681146105cd578063e985e9c5146105ed578063f2fde38b14610636578063f968adbe1461065657600080fd5b8063a22cb4651461053b578063a70273571461055b578063b287c8ed14610571578063b88d4fde14610584578063c87b56dd1461059757600080fd5b806380b17335116100f257806380b17335146104bc5780638d6cc56d146104d25780638da5cb5b146104f257806395d89b4114610510578063a035b1fe1461052557600080fd5b80636f8b44b01461045257806370a0823114610472578063715018a6146104925780637d8966e4146104a757600080fd5b8063453c2310116101b15780635b28fd91116101755780635b28fd91146103c35780635c474f9e146103e35780636352211e146103fd5780636c0360eb1461041d5780636d7c4a4b1461043257600080fd5b8063453c23101461034257806347513334146103585780635503a0e81461036e57806355f804b3146103835780635a4d448a146103a357600080fd5b806318160ddd116101f857806318160ddd146102ce57806323b872dd146102f15780632cfac6ec146103045780633ccfd60b1461031a57806342842e0e1461032f57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611756565b61066c565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106be565b6040516102569190611951565b34801561028d57600080fd5b506102a161029c366004611802565b610750565b6040516001600160a01b039091168152602001610256565b6102cc6102c736600461172c565b610794565b005b3480156102da57600080fd5b50600154600054035b604051908152602001610256565b6102cc6102ff3660046115d8565b610834565b34801561031057600080fd5b506102e3600c5481565b34801561032657600080fd5b506102cc6109c5565b6102cc61033d3660046115d8565b610a64565b34801561034e57600080fd5b506102e3600a5481565b34801561036457600080fd5b506102e360105481565b34801561037a57600080fd5b50610274610a84565b34801561038f57600080fd5b506102cc61039e366004611790565b610b12565b3480156103af57600080fd5b506102cc6103be366004611802565b610b26565b3480156103cf57600080fd5b506102cc6103de366004611802565b610bcd565b3480156103ef57600080fd5b50600e5461024a9060ff1681565b34801561040957600080fd5b506102a1610418366004611802565b610bda565b34801561042957600080fd5b50610274610be5565b34801561043e57600080fd5b506102cc61044d366004611802565b610bf2565b34801561045e57600080fd5b506102cc61046d366004611802565b610bff565b34801561047e57600080fd5b506102e361048d36600461158a565b610c0c565b34801561049e57600080fd5b506102cc610c5b565b3480156104b357600080fd5b506102cc610c6f565b3480156104c857600080fd5b506102e3600d5481565b3480156104de57600080fd5b506102cc6104ed366004611802565b610c8b565b3480156104fe57600080fd5b506008546001600160a01b03166102a1565b34801561051c57600080fd5b50610274610c98565b34801561053157600080fd5b506102e360115481565b34801561054757600080fd5b506102cc6105563660046116f0565b610ca7565b34801561056757600080fd5b506102e3600b5481565b6102cc61057f366004611802565b610d13565b6102cc610592366004611614565b610f68565b3480156105a357600080fd5b506102746105b2366004611802565b610fac565b3480156105c357600080fd5b506102e3600f5481565b3480156105d957600080fd5b506102e36105e836600461158a565b611032565b3480156105f957600080fd5b5061024a6106083660046115a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561064257600080fd5b506102cc61065136600461158a565b61105d565b34801561066257600080fd5b506102e360095481565b60006301ffc9a760e01b6001600160e01b03198316148061069d57506380ac58cd60e01b6001600160e01b03198316145b806106b85750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106cd90611a65565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990611a65565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075b826110d3565b610778576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079f82610bda565b9050336001600160a01b038216146107d8576107bb8133610608565b6107d8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061083f826110fa565b9050836001600160a01b0316816001600160a01b0316146108725760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108bf576108a28633610608565b6108bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108e657604051633a954ecd60e21b815260040160405180910390fd5b80156108f157600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661097c576001840160008181526004602052604090205461097a57600054811461097a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6109cd611162565b604051600090339047908381818185875af1925050503d8060008114610a0f576040519150601f19603f3d011682016040523d82523d6000602084013e610a14565b606091505b5050905080610a615760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b50565b610a7f83838360405180602001604052806000815250610f68565b505050565b60128054610a9190611a65565b80601f0160208091040260200160405190810160405280929190818152602001828054610abd90611a65565b8015610b0a5780601f10610adf57610100808354040283529160200191610b0a565b820191906000526020600020905b815481529060010190602001808311610aed57829003601f168201915b505050505081565b610b1a611162565b610a7f601383836114d5565b610b2e611162565b6000600c5411610b505760405162461bcd60e51b8152600401610a58906119a8565b600c54811115610b725760405162461bcd60e51b8152600401610a58906119a8565b600f5481610b836001546000540390565b610b8d91906119eb565b1115610bab5760405162461bcd60e51b8152600401610a5890611964565b80600c6000828254610bbd9190611a22565b90915550610a61905033826111bc565b610bd5611162565b601055565b60006106b8826110fa565b60138054610a9190611a65565b610bfa611162565b600b55565b610c07611162565b600f55565b60006001600160a01b038216610c35576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c63611162565b610c6d60006111da565b565b610c77611162565b600e805460ff19811660ff90911615179055565b610c93611162565b601155565b6060600380546106cd90611a65565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e5460ff16610d5b5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b6044820152606401610a58565b600954811115610dbf5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e742073686f756c64206e6f7420657863656564206d6178206d696e60448201526874206e756d6265722160b81b6064820152608401610a58565b600f5481610dd06001546000540390565b610dda91906119eb565b1115610df85760405162461bcd60e51b8152600401610a5890611964565b600a5481610e0533611032565b610e0f91906119eb565b1115610e6e5760405162461bcd60e51b815260206004820152602860248201527f416d6f756e742073686f756c64206e6f7420657863656564206d617820706572604482015267103bb0b63632ba1760c11b6064820152608401610a58565b600080601054600d541015610e8357600b5491505b8282610e8e33611032565b1015610edd578284610e9f33611032565b610ea991906119eb565b11610eb657506000610ed8565b8284610ec133611032565b610ecb91906119eb565b610ed59190611a22565b90505b600191505b601154610eea9082611a03565b341015610f395760405162461bcd60e51b815260206004820152601760248201527f4574682076616c7565206973206e6f7420656e6f7567680000000000000000006044820152606401610a58565b8115610f58576001600d6000828254610f5291906119eb565b90915550505b610f6233856111bc565b50505050565b610f73848484610834565b6001600160a01b0383163b15610f6257610f8f8484848461122c565b610f62576040516368d2bf6b60e11b815260040160405180910390fd5b6060610fb7826110d3565b610fd457604051630a14c4b560e41b815260040160405180910390fd5b60138054610fe190611a65565b15159050610ffe57604051806020016040528060008152506106b8565b601361100983611323565b601260405160200161101d939291906118e1565b60405160208183030381529060405292915050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106b8565b611065611162565b6001600160a01b0381166110ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a58565b610a61816111da565b60008054821080156106b8575050600090815260046020526040902054600160e01b161590565b60008160005481101561114957600081815260046020526040902054600160e01b8116611147575b80611140575060001901600081815260046020526040902054611122565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610c6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a58565b6111d6828260405180602001604052806000815250611371565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611261903390899088908890600401611914565b602060405180830381600087803b15801561127b57600080fd5b505af19250505080156112ab575060408051601f3d908101601f191682019092526112a891810190611773565b60015b611306573d8080156112d9576040519150601f19603f3d011682016040523d82523d6000602084013e6112de565b606091505b5080516112fe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061135a5761135f565b61133d565b50819003601f19909101908152919050565b61137b83836113de565b6001600160a01b0383163b15610a7f576000548281035b6113a5600086838060010194508661122c565b6113c2576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113925781600054146113d757600080fd5b5050505050565b600054816113ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611476565b50816114cc57604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546114e190611a65565b90600052602060002090601f0160209004810192826115035760008555611549565b82601f1061151c5782800160ff19823516178555611549565b82800160010185558215611549579182015b8281111561154957823582559160200191906001019061152e565b50611555929150611559565b5090565b5b80821115611555576000815560010161155a565b80356001600160a01b038116811461158557600080fd5b919050565b60006020828403121561159c57600080fd5b6111408261156e565b600080604083850312156115b857600080fd5b6115c18361156e565b91506115cf6020840161156e565b90509250929050565b6000806000606084860312156115ed57600080fd5b6115f68461156e565b92506116046020850161156e565b9150604084013590509250925092565b6000806000806080858703121561162a57600080fd5b6116338561156e565b93506116416020860161156e565b925060408501359150606085013567ffffffffffffffff8082111561166557600080fd5b818701915087601f83011261167957600080fd5b81358181111561168b5761168b611ab6565b604051601f8201601f19908116603f011681019083821181831017156116b3576116b3611ab6565b816040528281528a60208487010111156116cc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561170357600080fd5b61170c8361156e565b91506020830135801515811461172157600080fd5b809150509250929050565b6000806040838503121561173f57600080fd5b6117488361156e565b946020939093013593505050565b60006020828403121561176857600080fd5b813561114081611acc565b60006020828403121561178557600080fd5b815161114081611acc565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208285010111156117f057600080fd5b60209290920196919550909350505050565b60006020828403121561181457600080fd5b5035919050565b60008151808452611833816020860160208601611a39565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061186157607f831692505b602080841082141561188357634e487b7160e01b600052602260045260246000fd5b81801561189757600181146118a8576118d5565b60ff198616895284890196506118d5565b60008881526020902060005b868110156118cd5781548b8201529085019083016118b4565b505084890196505b50505050505092915050565b60006118ed8286611847565b84516118fd818360208901611a39565b61190981830186611847565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119479083018461181b565b9695505050505050565b602081526000611140602083018461181b565b60208082526024908201527f416d6f756e742073686f756c64206e6f7420657863656564206d61782073757060408201526338363c9760e11b606082015260800190565b60208082526023908201527f416d6f756e742073686f756c64206e6f7420657863656564206d696e74206c696040820152621b5a5d60ea1b606082015260800190565b600082198211156119fe576119fe611aa0565b500190565b6000816000190483118215151615611a1d57611a1d611aa0565b500290565b600082821015611a3457611a34611aa0565b500390565b60005b83811015611a54578181015183820152602001611a3c565b83811115610f625750506000910152565b600181811c90821680611a7957607f821691505b60208210811415611a9a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6157600080fdfea26469706673582212204b4fdefe88ad03e510d4ac0387a082ce58fc41ebabe83ac4e41ad170ca46b86a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000115072657474792050696e6b2050756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065050504e46540000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Pretty Pink Punks
Arg [1] : _symbol (string): PPPNFT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 5072657474792050696e6b2050756e6b73000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 5050504e46540000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55103:3491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:639;;;;;;;;;;-1:-1:-1;21997:639:0;;;;;:::i;:::-;;:::i;:::-;;;6798:14:1;;6791:22;6773:41;;6761:2;6746:18;21997:639:0;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29390:218::-;;;;;;;;;;-1:-1:-1;29390:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6096:32:1;;;6078:51;;6066:2;6051:18;29390:218:0;5932:203:1;28823:408:0;;;;;;:::i;:::-;;:::i;:::-;;18650:323;;;;;;;;;;-1:-1:-1;18924:12:0;;18711:7;18908:13;:28;18650:323;;;10640:25:1;;;10628:2;10613:18;18650:323:0;10494:177:1;33029:2825:0;;;;;;:::i;:::-;;:::i;55271:31::-;;;;;;;;;;;;;;;;58414:177;;;;;;;;;;;;;:::i;35950:193::-;;;;;;:::i;:::-;;:::i;55190:32::-;;;;;;;;;;;;;;;;55420:35;;;;;;;;;;;;;;;;55503:33;;;;;;;;;;;;;:::i;57972:106::-;;;;;;;;;;-1:-1:-1;57972:106:0;;;;;:::i;:::-;;:::i;57082:380::-;;;;;;;;;;-1:-1:-1;57082:380:0;;;;;:::i;:::-;;:::i;58188:102::-;;;;;;;;;;-1:-1:-1;58188:102:0;;;;;:::i;:::-;;:::i;55344:31::-;;;;;;;;;;-1:-1:-1;55344:31:0;;;;;;;;24292:152;;;;;;;;;;-1:-1:-1;24292:152:0;;;;;:::i;:::-;;:::i;55543:93::-;;;;;;;;;;;;;:::i;58298:108::-;;;;;;;;;;-1:-1:-1;58298:108:0;;;;;:::i;:::-;;:::i;58086:94::-;;;;;;;;;;-1:-1:-1;58086:94:0;;;;;:::i;:::-;;:::i;19834:233::-;;;;;;;;;;-1:-1:-1;19834:233:0;;;;;:::i;:::-;;:::i;2776:103::-;;;;;;;;;;;;;:::i;57878:86::-;;;;;;;;;;;;;:::i;55309:28::-;;;;;;;;;;;;;;;;55856:89;;;;;;;;;;-1:-1:-1;55856:89:0;;;;;:::i;:::-;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;23075:104;;;;;;;;;;;;;:::i;55462:34::-;;;;;;;;;;;;;;;;29948:234;;;;;;;;;;-1:-1:-1;29948:234:0;;;;;:::i;:::-;;:::i;55229:35::-;;;;;;;;;;;;;;;;55953:1121;;;;;;:::i;:::-;;:::i;36741:407::-;;;;;;:::i;:::-;;:::i;57578:292::-;;;;;;;;;;-1:-1:-1;57578:292:0;;;;;:::i;:::-;;:::i;55382:31::-;;;;;;;;;;;;;;;;55735:113;;;;;;;;;;-1:-1:-1;55735:113:0;;;;;:::i;:::-;;:::i;30339:164::-;;;;;;;;;;-1:-1:-1;30339:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30460:25:0;;;30436:4;30460:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30339:164;3034:201;;;;;;;;;;-1:-1:-1;3034:201:0;;;;;:::i;:::-;;:::i;55155:28::-;;;;;;;;;;;;;;;;21997:639;22082:4;-1:-1:-1;;;;;;;;;22406:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22483:25:0;;;22406:102;:179;;;-1:-1:-1;;;;;;;;;;22560:25:0;;;22406:179;22386:199;21997:639;-1:-1:-1;;21997:639:0:o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;-1:-1:-1;;;29516:34:0;;;;;;;;;;;29486:64;-1:-1:-1;29570:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29570:30:0;;29390:218::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;-1:-1:-1;53156:10:0;-1:-1:-1;;;;;28961:28:0;;;28957:175;;29009:44;29026:5;53156:10;30339:164;:::i;29009:44::-;29004:128;;29081:35;;-1:-1:-1;;;29081:35:0;;;;;;;;;;;29004:128;29144:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29144:35:0;-1:-1:-1;;;;;29144:35:0;;;;;;;;;29195:28;;29144:24;;29195:28;;;;;;;28901:330;28823:408;;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;-1:-1:-1;;;;;33245:45:0;33261:19;-1:-1:-1;;;;;33245:45:0;;33241:86;;33299:28;;-1:-1:-1;;;33299:28:0;;;;;;;;;;;33241:86;33341:27;32137:24;;;:15;:24;;;;;32365:26;;53156:10;31762:30;;;-1:-1:-1;;;;;31455:28:0;;31740:20;;;31737:56;33527:180;;33620:43;33637:4;53156:10;30339:164;:::i;33620:43::-;33615:92;;33672:35;;-1:-1:-1;;;33672:35:0;;;;;;;;;;;33615:92;-1:-1:-1;;;;;33724:16:0;;33720:52;;33749:23;;-1:-1:-1;;;33749:23:0;;;;;;;;;;;33720:52;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;-1:-1:-1;;;;;34458:24:0;;;;;;;:18;:24;;;;;;34456:26;;-1:-1:-1;;34456:26:0;;;34527:22;;;;;;;;;34525:24;;-1:-1:-1;34525:24:0;;;27681:11;27656:23;27652:41;27639:63;-1:-1:-1;;;27639:63:0;34820:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;35115:47:0;;35111:627;;35220:1;35210:11;;35188:19;35343:30;;;:17;:30;;;;;;35339:384;;35481:13;;35466:11;:28;35462:242;;35628:30;;;;:17;:30;;;;;:52;;;35462:242;35169:569;35111:627;35785:7;35781:2;-1:-1:-1;;;;;35766:27:0;35775:4;-1:-1:-1;;;;;35766:27:0;;;;;;;;;;;33160:2694;;;33029:2825;;;:::o;58414:177::-;2014:13;:11;:13::i;:::-;58483:49:::1;::::0;58465:12:::1;::::0;58483:10:::1;::::0;58506:21:::1;::::0;58465:12;58483:49;58465:12;58483:49;58506:21;58483:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58464:68;;;58551:7;58543:40;;;::::0;-1:-1:-1;;;58543:40:0;;8067:2:1;58543:40:0::1;::::0;::::1;8049:21:1::0;8106:2;8086:18;;;8079:30;-1:-1:-1;;;8125:18:1;;;8118:50;8185:18;;58543:40:0::1;;;;;;;;;58453:138;58414:177::o:0;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;55503:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57972:106::-;2014:13;:11;:13::i;:::-;58050:20:::1;:7;58060:10:::0;;58050:20:::1;:::i;57082:380::-:0;2014:13;:11;:13::i;:::-;57170:1:::1;57157:10;;:14;57149:61;;;;-1:-1:-1::0;;;57149:61:0::1;;;;;;;:::i;:::-;57239:10;;57229:6;:20;;57221:67;;;;-1:-1:-1::0;;;57221:67:0::1;;;;;;;:::i;:::-;57333:9;;57323:6;57307:13;18924:12:::0;;18711:7;18908:13;:28;;18650:323;57307:13:::1;:22;;;;:::i;:::-;:35;;57299:84;;;;-1:-1:-1::0;;;57299:84:0::1;;;;;;;:::i;:::-;57408:6;57394:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;57425:29:0::1;::::0;-1:-1:-1;57435:10:0::1;57447:6:::0;57425:9:::1;:29::i;58188:102::-:0;2014:13;:11;:13::i;:::-;58260::::1;:22:::0;58188:102::o;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;55543:93::-;;;;;;;:::i;58298:108::-;2014:13;:11;:13::i;:::-;58373:16:::1;:25:::0;58298:108::o;58086:94::-;2014:13;:11;:13::i;:::-;58154:9:::1;:18:::0;58086:94::o;19834:233::-;19906:7;-1:-1:-1;;;;;19930:19:0;;19926:60;;19958:28;;-1:-1:-1;;;19958:28:0;;;;;;;;;;;19926:60;-1:-1:-1;;;;;;20004:25:0;;;;;:18;:25;;;;;;13993:13;20004:55;;19834:233::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;57878:86::-;2014:13;:11;:13::i;:::-;57945:11:::1;::::0;;-1:-1:-1;;57930:26:0;::::1;57945:11;::::0;;::::1;57944:12;57930:26;::::0;;57878:86::o;55856:89::-;2014:13;:11;:13::i;:::-;55922:5:::1;:15:::0;55856:89::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;29948:234::-;53156:10;30043:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30043:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30043:60:0;;;;;;;;;;30119:55;;6773:41:1;;;30043:49:0;;53156:10;30119:55;;6746:18:1;30119:55:0;;;;;;;29948:234;;:::o;55953:1121::-;56025:11;;;;56017:43;;;;-1:-1:-1;;;56017:43:0;;9182:2:1;56017:43:0;;;9164:21:1;9221:2;9201:18;;;9194:30;-1:-1:-1;;;9240:18:1;;;9233:49;9299:18;;56017:43:0;8980:343:1;56017:43:0;56089:8;;56079:6;:18;;56071:72;;;;-1:-1:-1;;;56071:72:0;;9882:2:1;56071:72:0;;;9864:21:1;9921:2;9901:18;;;9894:30;9960:34;9940:18;;;9933:62;-1:-1:-1;;;10011:18:1;;;10004:39;10060:19;;56071:72:0;9680:405:1;56071:72:0;56188:9;;56178:6;56162:13;18924:12;;18711:7;18908:13;:28;;18650:323;56162:13;:22;;;;:::i;:::-;:35;;56154:84;;;;-1:-1:-1;;;56154:84:0;;;;;;;:::i;:::-;56294:12;;56284:6;56257:24;56270:10;56257:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;56249:102;;;;-1:-1:-1;;;56249:102:0;;7658:2:1;56249:102:0;;;7640:21:1;7697:2;7677:18;;;7670:30;7736:34;7716:18;;;7709:62;-1:-1:-1;;;7787:18:1;;;7780:38;7835:19;;56249:102:0;7456:404:1;56249:102:0;56364:21;56400:15;56450:13;;56438:9;;:25;56434:90;;;56496:16;;56480:32;;56434:90;56552:6;56600:13;56573:24;56586:10;56573:12;:24::i;:::-;:40;56569:331;;;56671:13;56661:6;56634:24;56647:10;56634:12;:24::i;:::-;:33;;;;:::i;:::-;:50;56630:227;;-1:-1:-1;56713:1:0;56630:227;;;56828:13;56819:6;56792:24;56805:10;56792:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;;;:::i;:::-;56784:57;;56630:227;56884:4;56871:17;;56569:331;56941:5;;56933:13;;:5;:13;:::i;:::-;56920:9;:26;;56912:62;;;;-1:-1:-1;;;56912:62:0;;9530:2:1;56912:62:0;;;9512:21:1;9569:2;9549:18;;;9542:30;9608:25;9588:18;;;9581:53;9651:18;;56912:62:0;9328:347:1;56912:62:0;56998:10;56995:29;;;57023:1;57010:9;;:14;;;;;;;:::i;:::-;;;;-1:-1:-1;;56995:29:0;57037;57047:10;57059:6;57037:9;:29::i;:::-;56006:1068;;;55953:1121;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;-1:-1:-1;;;;;36962:14:0;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;-1:-1:-1;;;37085:40:0;;;;;;;;;;;57578:292;57651:13;57682:16;57690:7;57682;:16::i;:::-;57677:59;;57707:29;;-1:-1:-1;;;57707:29:0;;;;;;;;;;;57677:59;57770:7;57764:21;;;;;:::i;:::-;:26;;;-1:-1:-1;57764:98:0;;;;;;;;;;;;;;;;;57817:7;57826:18;57836:7;57826:9;:18::i;:::-;57846:9;57800:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57757:105;57578:292;-1:-1:-1;;57578:292:0:o;55735:113::-;-1:-1:-1;;;;;20238:25:0;;55793:7;20238:25;;;:18;:25;;14131:2;20238:25;;;;13993:13;20238:50;;20237:82;55820:20;20149:178;3034:201;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;7251:2:1;3115:73:0::1;::::0;::::1;7233:21:1::0;7290:2;7270:18;;;7263:30;7329:34;7309:18;;;7302:62;-1:-1:-1;;;7380:18:1;;;7373:36;7426:19;;3115:73:0::1;7049:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;30761:282::-:0;30826:4;30916:13;;30906:7;:23;30863:153;;;;-1:-1:-1;;30967:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30967:44:0;:49;;30761:282::o;25447:1275::-;25514:7;25549;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:23;;;:17;:23;;;;;;-1:-1:-1;;;25795:24:0;;25791:845;;26460:113;26467:11;26460:113;;-1:-1:-1;;;26538:6:0;26520:25;;;;:17;:25;;;;;;26460:113;;;26606:6;25447:1275;-1:-1:-1;;;25447:1275:0:o;25791:845::-;25666:989;25640:1015;26683:31;;-1:-1:-1;;;26683:31:0;;;;;;;;;;;2293:132;2201:6;;-1:-1:-1;;;;;2201:6:0;53156:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;8821:2:1;2349:68:0;;;8803:21:1;;;8840:18;;;8833:30;8899:34;8879:18;;;8872:62;8951:18;;2349:68:0;8619:356:1;46901:112:0;46978:27;46988:2;46992:8;46978:27;;;;;;;;;;;;:9;:27::i;:::-;46901:112;;:::o;3395:191::-;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;39232:716::-;39416:88;;-1:-1:-1;;;39416:88:0;;39395:4;;-1:-1:-1;;;;;39416:45:0;;;;;:88;;53156:10;;39483:4;;39489:7;;39498:5;;39416:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39416:88:0;;;;;;;;-1:-1:-1;;39416:88:0;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39699:13:0;;39695:235;;39745:40;;-1:-1:-1;;;39745:40:0;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;-1:-1:-1;;;;;;39575:64:0;-1:-1:-1;;;39575:64:0;;-1:-1:-1;39232:716:0;;;;;;:::o;53276:1745::-;53341:17;53775:4;53768;53762:11;53758:22;53867:1;53861:4;53854:15;53942:4;53939:1;53935:12;53928:19;;;54024:1;54019:3;54012:14;54128:3;54367:5;54349:428;54415:1;54410:3;54406:11;54399:18;;54586:2;54580:4;54576:13;54572:2;54568:22;54563:3;54555:36;54680:2;54670:13;;;54737:25;;54755:5;;54737:25;54349:428;;;-1:-1:-1;54807:13:0;;;-1:-1:-1;;54922:14:0;;;54984:19;;;54922:14;53276:1745;-1:-1:-1;53276:1745:0:o;46128:689::-;46259:19;46265:2;46269:8;46259:5;:19::i;:::-;-1:-1:-1;;;;;46320:14:0;;;:19;46316:483;;46360:11;46374:13;46422:14;;;46455:233;46486:62;46525:1;46529:2;46533:7;;;;;;46542:5;46486:30;:62::i;:::-;46481:167;;46584:40;;-1:-1:-1;;;46584:40:0;;;;;;;;;;;46481:167;46683:3;46675:5;:11;46455:233;;46770:3;46753:13;;:20;46749:34;;46775:8;;;46749:34;46341:458;;46128:689;;;:::o;40410:2966::-;40483:20;40506:13;40534;40530:44;;40556:18;;-1:-1:-1;;;40556:18:0;;;;;;;;;;;40530:44;-1:-1:-1;;;;;41062:22:0;;;;;;:18;:22;;;;14131:2;41062:22;;;:71;;41100:32;41088:45;;41062:71;;;41376:31;;;:17;:31;;;;;-1:-1:-1;28112:15:0;;28086:24;28082:46;27681:11;27656:23;27652:41;27649:52;27639:63;;41376:173;;41611:23;;;;41376:31;;41062:22;;42376:25;41062:22;;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42971:15;42830:346;;;-1:-1:-1;43209:13:0;43205:45;;43231:19;;-1:-1:-1;;;43231:19:0;;;;;;;;;;;43205:45;43267:13;:19;-1:-1:-1;35950:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:973::-;4368:12;;4333:3;;4423:1;4443:18;;;;4496;;;;4523:61;;4577:4;4569:6;4565:17;4555:27;;4523:61;4603:2;4651;4643:6;4640:14;4620:18;4617:38;4614:161;;;4697:10;4692:3;4688:20;4685:1;4678:31;4732:4;4729:1;4722:15;4760:4;4757:1;4750:15;4614:161;4791:18;4818:104;;;;4936:1;4931:319;;;;4784:466;;4818:104;-1:-1:-1;;4851:24:1;;4839:37;;4896:16;;;;-1:-1:-1;4818:104:1;;4931:319;10749:1;10742:14;;;10786:4;10773:18;;5025:1;5039:165;5053:6;5050:1;5047:13;5039:165;;;5131:14;;5118:11;;;5111:35;5174:16;;;;5068:10;;5039:165;;;5043:3;;5233:6;5228:3;5224:16;5217:23;;4784:466;;;;;;;4283:973;;;;:::o;5261:456::-;5482:3;5510:38;5544:3;5536:6;5510:38;:::i;:::-;5577:6;5571:13;5593:52;5638:6;5634:2;5627:4;5619:6;5615:17;5593:52;:::i;:::-;5661:50;5703:6;5699:2;5695:15;5687:6;5661:50;:::i;:::-;5654:57;5261:456;-1:-1:-1;;;;;;;5261:456:1:o;6140:488::-;-1:-1:-1;;;;;6409:15:1;;;6391:34;;6461:15;;6456:2;6441:18;;6434:43;6508:2;6493:18;;6486:34;;;6556:3;6551:2;6536:18;;6529:31;;;6334:4;;6577:45;;6602:19;;6594:6;6577:45;:::i;:::-;6569:53;6140:488;-1:-1:-1;;;;;;6140:488:1:o;6825:219::-;6974:2;6963:9;6956:21;6937:4;6994:44;7034:2;7023:9;7019:18;7011:6;6994:44;:::i;8214:400::-;8416:2;8398:21;;;8455:2;8435:18;;;8428:30;8494:34;8489:2;8474:18;;8467:62;-1:-1:-1;;;8560:2:1;8545:18;;8538:34;8604:3;8589:19;;8214:400::o;10090:399::-;10292:2;10274:21;;;10331:2;10311:18;;;10304:30;10370:34;10365:2;10350:18;;10343:62;-1:-1:-1;;;10436:2:1;10421:18;;10414:33;10479:3;10464:19;;10090:399::o;10802:128::-;10842:3;10873:1;10869:6;10866:1;10863:13;10860:39;;;10879:18;;:::i;:::-;-1:-1:-1;10915:9:1;;10802:128::o;10935:168::-;10975:7;11041:1;11037;11033:6;11029:14;11026:1;11023:21;11018:1;11011:9;11004:17;11000:45;10997:71;;;11048:18;;:::i;:::-;-1:-1:-1;11088:9:1;;10935:168::o;11108:125::-;11148:4;11176:1;11173;11170:8;11167:34;;;11181:18;;:::i;:::-;-1:-1:-1;11218:9:1;;11108:125::o;11238:258::-;11310:1;11320:113;11334:6;11331:1;11328:13;11320:113;;;11410:11;;;11404:18;11391:11;;;11384:39;11356:2;11349:10;11320:113;;;11451:6;11448:1;11445:13;11442:48;;;-1:-1:-1;;11486:1:1;11468:16;;11461:27;11238:258::o;11501:380::-;11580:1;11576:12;;;;11623;;;11644:61;;11698:4;11690:6;11686:17;11676:27;;11644:61;11751:2;11743:6;11740:14;11720:18;11717:38;11714:161;;;11797:10;11792:3;11788:20;11785:1;11778:31;11832:4;11829:1;11822:15;11860:4;11857:1;11850:15;11714:161;;11501:380;;;:::o;11886:127::-;11947:10;11942:3;11938:20;11935:1;11928:31;11978:4;11975:1;11968:15;12002:4;11999:1;11992:15;12018:127;12079:10;12074:3;12070:20;12067:1;12060:31;12110:4;12107:1;12100:15;12134:4;12131:1;12124:15;12150:131;-1:-1:-1;;;;;;12224:32:1;;12214:43;;12204:71;;12271:1;12268;12261:12

Swarm Source

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