ETH Price: $2,536.11 (-0.06%)

Token

Big PP Condoms (PPC)
 

Overview

Max Total Supply

1,554 PPC

Holders

359

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PPC
0xc7c67d9ed12361ead04d7a3fcfa1da5a0c3b3050
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:
PPCondom

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-17
*/

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


// File @openzeppelin/contracts/utils/[email protected]



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/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/access/[email protected]



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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File NftSale2.sol

pragma solidity ^0.8.6;
//




contract PPCondom is ERC721, ERC721Enumerable, Ownable {
    string private _baseTokenURI;
    uint256 public tokenSalePrice;
    uint256 public maxTokens;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        uint256 tokenSalePrice_,
        uint256 maxTokens_
    ) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;
        tokenSalePrice = tokenSalePrice_;
        maxTokens = maxTokens_;
    }

    bool uriFrozen = false;
    bool saleActive = false;
    uint256 maxPerTx = 10;

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

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

    function freezeUri() public onlyOwner {
        //permanently freezes uri
        require(uriFrozen == false, "freezeUri: URI already frozen");
        uriFrozen = true;
    }

    function setBaseURI(string memory newURI) public onlyOwner {
        require(uriFrozen == false, "setTokenURI: URI has been frozen");
        _baseTokenURI = newURI;
    }

    function getBaseURI() external view returns (string memory) {
        return _baseTokenURI;
    }

    function saleStatus() public view returns (bool) {
        return saleActive;
    }

    function toggleSale() public onlyOwner {
        //Toggles sale status
        saleActive = !saleActive;
    }

    function buyCondom(uint256 count) public payable {
        require(saleActive == true, "buyCondom: Sale not started");
        require(
            totalSupply() + count <= maxTokens,
            "buyCondom: Max amount minted"
        );
        require(count > 0 && count <= maxPerTx, "buyCondom: Max 10 per tx");
        require(
            msg.value == tokenSalePrice * count,
            "buyCondom: invalid amount"
        );
        for (uint256 i = 0; i < count; i++) {
            //+1 used to avoid id 0
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function withdrawEth() external onlyOwner {
        require(address(this).balance > 0, "Insufficient balance");
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(IERC20 tokenAddress) external onlyOwner {
        tokenAddress.transfer(
            msg.sender,
            tokenAddress.balanceOf(address(this))
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"tokenSalePrice_","type":"uint256"},{"internalType":"uint256","name":"maxTokens_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"buyCondom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freezeUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e805461ffff19169055600a600f553480156200002157600080fd5b50604051620029923803806200299283398101604081905262000044916200026c565b8451859085906200005d9060009060208501906200010f565b508051620000739060019060208401906200010f565b505050620000906200008a620000b960201b60201c565b620000bd565b8251620000a590600b9060208601906200010f565b50600c91909155600d555062000363915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011d9062000310565b90600052602060002090601f0160209004810192826200014157600085556200018c565b82601f106200015c57805160ff19168380011785556200018c565b828001600101855582156200018c579182015b828111156200018c5782518255916020019190600101906200016f565b506200019a9291506200019e565b5090565b5b808211156200019a57600081556001016200019f565b600082601f830112620001c757600080fd5b81516001600160401b0380821115620001e457620001e46200034d565b604051601f8301601f19908116603f011681019082821181831017156200020f576200020f6200034d565b816040528381526020925086838588010111156200022c57600080fd5b600091505b8382101562000250578582018301518183018401529082019062000231565b83821115620002625760008385830101525b9695505050505050565b600080600080600060a086880312156200028557600080fd5b85516001600160401b03808211156200029d57600080fd5b620002ab89838a01620001b5565b96506020880151915080821115620002c257600080fd5b620002d089838a01620001b5565b95506040880151915080821115620002e757600080fd5b50620002f688828901620001b5565b606088015160809098015196999598509695949350505050565b600181811c908216806200032557607f821691505b602082108114156200034757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61261f80620003736000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e86790eb11610064578063e86790eb146104bc578063e985e9c5146104d2578063f2fde38b1461051b578063f9020e331461053b57600080fd5b8063b88d4fde14610453578063c87b56dd14610473578063dc5714db14610493578063e8315742146104a657600080fd5b80638da5cb5b116100d15780638da5cb5b146103eb57806395d89b4114610409578063a0ef91df1461041e578063a22cb4651461043357600080fd5b8063715018a6146103a15780637d8966e4146103b657806389476069146103cb57600080fd5b80632f745c591161016457806355f804b31161013e57806355f804b31461032c5780636352211e1461034c57806370a082311461036c578063714c53981461038c57600080fd5b80632f745c59146102cc57806342842e0e146102ec5780634f6ccce71461030c57600080fd5b8063086cb785116101a0578063086cb78514610256578063095ea7b31461026d57806318160ddd1461028d57806323b872dd146102ac57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046122eb565b610558565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610569565b6040516101f39190612437565b34801561022a57600080fd5b5061023e61023936600461236e565b6105fb565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061026b610695565b005b34801561027957600080fd5b5061026b6102883660046122a2565b610751565b34801561029957600080fd5b506008545b6040519081526020016101f3565b3480156102b857600080fd5b5061026b6102c73660046121b3565b610883565b3480156102d857600080fd5b5061029e6102e73660046122a2565b61090a565b3480156102f857600080fd5b5061026b6103073660046121b3565b6109b2565b34801561031857600080fd5b5061029e61032736600461236e565b6109cd565b34801561033857600080fd5b5061026b610347366004612325565b610a71565b34801561035857600080fd5b5061023e61036736600461236e565b610b35565b34801561037857600080fd5b5061029e61038736600461215d565b610bc0565b34801561039857600080fd5b50610211610c5a565b3480156103ad57600080fd5b5061026b610c69565b3480156103c257600080fd5b5061026b610ccf565b3480156103d757600080fd5b5061026b6103e636600461215d565b610d46565b3480156103f757600080fd5b50600a546001600160a01b031661023e565b34801561041557600080fd5b50610211610eb8565b34801561042a57600080fd5b5061026b610ec7565b34801561043f57600080fd5b5061026b61044e366004612274565b610fa0565b34801561045f57600080fd5b5061026b61046e3660046121f4565b611065565b34801561047f57600080fd5b5061021161048e36600461236e565b6110f3565b61026b6104a136600461236e565b6111dc565b3480156104b257600080fd5b5061029e600d5481565b3480156104c857600080fd5b5061029e600c5481565b3480156104de57600080fd5b506101e76104ed36600461217a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052757600080fd5b5061026b61053636600461215d565b611392565b34801561054757600080fd5b50600e54610100900460ff166101e7565b600061056382611471565b92915050565b606060008054610578906124d8565b80601f01602080910402602001604051908101604052809291908181526020018280546105a4906124d8565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146106ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b600e5460ff16156107425760405162461bcd60e51b815260206004820152601d60248201527f667265657a655572693a2055524920616c72656164792066726f7a656e0000006044820152606401610670565b600e805460ff19166001179055565b600061075c82610b35565b9050806001600160a01b0316836001600160a01b031614156107e65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610670565b336001600160a01b0382161480610802575061080281336104ed565b6108745760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610670565b61087e83836114af565b505050565b61088d338261152a565b6108ff5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610670565b61087e838383611621565b600061091583610bc0565b82106109895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610670565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61087e83838360405180602001604052806000815250611065565b60006109d860085490565b8210610a4c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610670565b60088281548110610a5f57610a5f612584565b90600052602060002001549050919050565b600a546001600160a01b03163314610acb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b600e5460ff1615610b1e5760405162461bcd60e51b815260206004820181905260248201527f736574546f6b656e5552493a2055524920686173206265656e2066726f7a656e6044820152606401610670565b8051610b3190600b90602084019061204e565b5050565b6000818152600260205260408120546001600160a01b0316806105635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610670565b60006001600160a01b038216610c3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610670565b506001600160a01b031660009081526003602052604090205490565b6060600b8054610578906124d8565b600a546001600160a01b03163314610cc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b610ccd6000611806565b565b600a546001600160a01b03163314610d295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b600e805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610da05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015610e0257600080fd5b505afa158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190612387565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610e8057600080fd5b505af1158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3191906122ce565b606060018054610578906124d8565b600a546001600160a01b03163314610f215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b60004711610f715760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e742062616c616e63650000000000000000000000006044820152606401610670565b60405133904780156108fc02916000818181858888f19350505050158015610f9d573d6000803e3d6000fd5b50565b6001600160a01b038216331415610ff95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610670565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106f338361152a565b6110e15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610670565b6110ed84848484611865565b50505050565b6000818152600260205260409020546060906001600160a01b03166111805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610670565b600061118a610c5a565b905060008151116111aa57604051806020016040528060008152506111d5565b806111b4846118e3565b6040516020016111c59291906123cc565b6040516020818303038152906040525b9392505050565b600e5460ff6101009091041615156001146112395760405162461bcd60e51b815260206004820152601b60248201527f627579436f6e646f6d3a2053616c65206e6f74207374617274656400000000006044820152606401610670565b600d548161124660085490565b611250919061244a565b111561129e5760405162461bcd60e51b815260206004820152601c60248201527f627579436f6e646f6d3a204d617820616d6f756e74206d696e746564000000006044820152606401610670565b6000811180156112b05750600f548111155b6112fc5760405162461bcd60e51b815260206004820152601860248201527f627579436f6e646f6d3a204d61782031302070657220747800000000000000006044820152606401610670565b80600c5461130a9190612476565b34146113585760405162461bcd60e51b815260206004820152601960248201527f627579436f6e646f6d3a20696e76616c696420616d6f756e74000000000000006044820152606401610670565b60005b81811015610b31576113803361137060085490565b61137b90600161244a565b611a15565b8061138a81612513565b91505061135b565b600a546001600160a01b031633146113ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b6001600160a01b0381166114685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610670565b610f9d81611806565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610563575061056382611a2f565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906114f182610b35565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610670565b60006115ae83610b35565b9050806001600160a01b0316846001600160a01b031614806115e95750836001600160a01b03166115de846105fb565b6001600160a01b0316145b8061161957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163482610b35565b6001600160a01b0316146116b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610670565b6001600160a01b03821661172b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610670565b611736838383611aca565b6117416000826114af565b6001600160a01b038316600090815260036020526040812080546001929061176a908490612495565b90915550506001600160a01b038216600090815260036020526040812080546001929061179890849061244a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611870848484611621565b61187c84848484611ad5565b6110ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610670565b60608161192357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561194d578061193781612513565b91506119469050600a83612462565b9150611927565b60008167ffffffffffffffff8111156119685761196861259a565b6040519080825280601f01601f191660200182016040528015611992576020820181803683370190505b5090505b8415611619576119a7600183612495565b91506119b4600a8661252e565b6119bf90603061244a565b60f81b8183815181106119d4576119d4612584565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a0e600a86612462565b9450611996565b610b31828260405180602001604052806000815250611c2d565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611a9257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610563565b61087e838383611cab565b60006001600160a01b0384163b15611c2257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b199033908990889088906004016123fb565b602060405180830381600087803b158015611b3357600080fd5b505af1925050508015611b63575060408051601f3d908101601f19168201909252611b6091810190612308565b60015b611c08573d808015611b91576040519150601f19603f3d011682016040523d82523d6000602084013e611b96565b606091505b508051611c005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610670565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611619565b506001949350505050565b611c378383611d63565b611c446000848484611ad5565b61087e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610670565b6001600160a01b038316611d0657611d0181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d29565b816001600160a01b0316836001600160a01b031614611d2957611d298382611ebe565b6001600160a01b038216611d405761087e81611f5b565b826001600160a01b0316826001600160a01b03161461087e5761087e828261200a565b6001600160a01b038216611db95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610670565b6000818152600260205260409020546001600160a01b031615611e1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610670565b611e2a60008383611aca565b6001600160a01b0382166000908152600360205260408120805460019290611e5390849061244a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ecb84610bc0565b611ed59190612495565b600083815260076020526040902054909150808214611f28576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f6d90600190612495565b60008381526009602052604081205460088054939450909284908110611f9557611f95612584565b906000526020600020015490508060088381548110611fb657611fb6612584565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fee57611fee61256e565b6001900381819060005260206000200160009055905550505050565b600061201583610bc0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461205a906124d8565b90600052602060002090601f01602090048101928261207c57600085556120c2565b82601f1061209557805160ff19168380011785556120c2565b828001600101855582156120c2579182015b828111156120c25782518255916020019190600101906120a7565b506120ce9291506120d2565b5090565b5b808211156120ce57600081556001016120d3565b600067ffffffffffffffff808411156121025761210261259a565b604051601f8501601f19908116603f0116810190828211818310171561212a5761212a61259a565b8160405280935085815286868601111561214357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561216f57600080fd5b81356111d5816125b0565b6000806040838503121561218d57600080fd5b8235612198816125b0565b915060208301356121a8816125b0565b809150509250929050565b6000806000606084860312156121c857600080fd5b83356121d3816125b0565b925060208401356121e3816125b0565b929592945050506040919091013590565b6000806000806080858703121561220a57600080fd5b8435612215816125b0565b93506020850135612225816125b0565b925060408501359150606085013567ffffffffffffffff81111561224857600080fd5b8501601f8101871361225957600080fd5b612268878235602084016120e7565b91505092959194509250565b6000806040838503121561228757600080fd5b8235612292816125b0565b915060208301356121a8816125c5565b600080604083850312156122b557600080fd5b82356122c0816125b0565b946020939093013593505050565b6000602082840312156122e057600080fd5b81516111d5816125c5565b6000602082840312156122fd57600080fd5b81356111d5816125d3565b60006020828403121561231a57600080fd5b81516111d5816125d3565b60006020828403121561233757600080fd5b813567ffffffffffffffff81111561234e57600080fd5b8201601f8101841361235f57600080fd5b611619848235602084016120e7565b60006020828403121561238057600080fd5b5035919050565b60006020828403121561239957600080fd5b5051919050565b600081518084526123b88160208601602086016124ac565b601f01601f19169290920160200192915050565b600083516123de8184602088016124ac565b8351908301906123f28183602088016124ac565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261242d60808301846123a0565b9695505050505050565b6020815260006111d560208301846123a0565b6000821982111561245d5761245d612542565b500190565b60008261247157612471612558565b500490565b600081600019048311821515161561249057612490612542565b500290565b6000828210156124a7576124a7612542565b500390565b60005b838110156124c75781810151838201526020016124af565b838111156110ed5750506000910152565b600181811c908216806124ec57607f821691505b6020821081141561250d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561252757612527612542565b5060010190565b60008261253d5761253d612558565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f9d57600080fd5b8015158114610f9d57600080fd5b6001600160e01b031981168114610f9d57600080fdfea2646970667358221220d05a626f49a3b1f0c809b4c929eb1aeff80f826e2f7fa4d235ff539b4ea7ff4f64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000006a94d74f4300000000000000000000000000000000000000000000000000000000000000001b39000000000000000000000000000000000000000000000000000000000000000e42696720505020436f6e646f6d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350504300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d536b526541797875413463747832716d41754134446a333552775231683453474d56785a706843324c4447582f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e86790eb11610064578063e86790eb146104bc578063e985e9c5146104d2578063f2fde38b1461051b578063f9020e331461053b57600080fd5b8063b88d4fde14610453578063c87b56dd14610473578063dc5714db14610493578063e8315742146104a657600080fd5b80638da5cb5b116100d15780638da5cb5b146103eb57806395d89b4114610409578063a0ef91df1461041e578063a22cb4651461043357600080fd5b8063715018a6146103a15780637d8966e4146103b657806389476069146103cb57600080fd5b80632f745c591161016457806355f804b31161013e57806355f804b31461032c5780636352211e1461034c57806370a082311461036c578063714c53981461038c57600080fd5b80632f745c59146102cc57806342842e0e146102ec5780634f6ccce71461030c57600080fd5b8063086cb785116101a0578063086cb78514610256578063095ea7b31461026d57806318160ddd1461028d57806323b872dd146102ac57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046122eb565b610558565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610569565b6040516101f39190612437565b34801561022a57600080fd5b5061023e61023936600461236e565b6105fb565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061026b610695565b005b34801561027957600080fd5b5061026b6102883660046122a2565b610751565b34801561029957600080fd5b506008545b6040519081526020016101f3565b3480156102b857600080fd5b5061026b6102c73660046121b3565b610883565b3480156102d857600080fd5b5061029e6102e73660046122a2565b61090a565b3480156102f857600080fd5b5061026b6103073660046121b3565b6109b2565b34801561031857600080fd5b5061029e61032736600461236e565b6109cd565b34801561033857600080fd5b5061026b610347366004612325565b610a71565b34801561035857600080fd5b5061023e61036736600461236e565b610b35565b34801561037857600080fd5b5061029e61038736600461215d565b610bc0565b34801561039857600080fd5b50610211610c5a565b3480156103ad57600080fd5b5061026b610c69565b3480156103c257600080fd5b5061026b610ccf565b3480156103d757600080fd5b5061026b6103e636600461215d565b610d46565b3480156103f757600080fd5b50600a546001600160a01b031661023e565b34801561041557600080fd5b50610211610eb8565b34801561042a57600080fd5b5061026b610ec7565b34801561043f57600080fd5b5061026b61044e366004612274565b610fa0565b34801561045f57600080fd5b5061026b61046e3660046121f4565b611065565b34801561047f57600080fd5b5061021161048e36600461236e565b6110f3565b61026b6104a136600461236e565b6111dc565b3480156104b257600080fd5b5061029e600d5481565b3480156104c857600080fd5b5061029e600c5481565b3480156104de57600080fd5b506101e76104ed36600461217a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052757600080fd5b5061026b61053636600461215d565b611392565b34801561054757600080fd5b50600e54610100900460ff166101e7565b600061056382611471565b92915050565b606060008054610578906124d8565b80601f01602080910402602001604051908101604052809291908181526020018280546105a4906124d8565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146106ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b600e5460ff16156107425760405162461bcd60e51b815260206004820152601d60248201527f667265657a655572693a2055524920616c72656164792066726f7a656e0000006044820152606401610670565b600e805460ff19166001179055565b600061075c82610b35565b9050806001600160a01b0316836001600160a01b031614156107e65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610670565b336001600160a01b0382161480610802575061080281336104ed565b6108745760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610670565b61087e83836114af565b505050565b61088d338261152a565b6108ff5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610670565b61087e838383611621565b600061091583610bc0565b82106109895760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610670565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61087e83838360405180602001604052806000815250611065565b60006109d860085490565b8210610a4c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610670565b60088281548110610a5f57610a5f612584565b90600052602060002001549050919050565b600a546001600160a01b03163314610acb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b600e5460ff1615610b1e5760405162461bcd60e51b815260206004820181905260248201527f736574546f6b656e5552493a2055524920686173206265656e2066726f7a656e6044820152606401610670565b8051610b3190600b90602084019061204e565b5050565b6000818152600260205260408120546001600160a01b0316806105635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610670565b60006001600160a01b038216610c3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610670565b506001600160a01b031660009081526003602052604090205490565b6060600b8054610578906124d8565b600a546001600160a01b03163314610cc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b610ccd6000611806565b565b600a546001600160a01b03163314610d295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b600e805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610da05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015610e0257600080fd5b505afa158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190612387565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610e8057600080fd5b505af1158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3191906122ce565b606060018054610578906124d8565b600a546001600160a01b03163314610f215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b60004711610f715760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e742062616c616e63650000000000000000000000006044820152606401610670565b60405133904780156108fc02916000818181858888f19350505050158015610f9d573d6000803e3d6000fd5b50565b6001600160a01b038216331415610ff95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610670565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106f338361152a565b6110e15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610670565b6110ed84848484611865565b50505050565b6000818152600260205260409020546060906001600160a01b03166111805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610670565b600061118a610c5a565b905060008151116111aa57604051806020016040528060008152506111d5565b806111b4846118e3565b6040516020016111c59291906123cc565b6040516020818303038152906040525b9392505050565b600e5460ff6101009091041615156001146112395760405162461bcd60e51b815260206004820152601b60248201527f627579436f6e646f6d3a2053616c65206e6f74207374617274656400000000006044820152606401610670565b600d548161124660085490565b611250919061244a565b111561129e5760405162461bcd60e51b815260206004820152601c60248201527f627579436f6e646f6d3a204d617820616d6f756e74206d696e746564000000006044820152606401610670565b6000811180156112b05750600f548111155b6112fc5760405162461bcd60e51b815260206004820152601860248201527f627579436f6e646f6d3a204d61782031302070657220747800000000000000006044820152606401610670565b80600c5461130a9190612476565b34146113585760405162461bcd60e51b815260206004820152601960248201527f627579436f6e646f6d3a20696e76616c696420616d6f756e74000000000000006044820152606401610670565b60005b81811015610b31576113803361137060085490565b61137b90600161244a565b611a15565b8061138a81612513565b91505061135b565b600a546001600160a01b031633146113ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610670565b6001600160a01b0381166114685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610670565b610f9d81611806565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610563575061056382611a2f565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906114f182610b35565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610670565b60006115ae83610b35565b9050806001600160a01b0316846001600160a01b031614806115e95750836001600160a01b03166115de846105fb565b6001600160a01b0316145b8061161957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163482610b35565b6001600160a01b0316146116b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610670565b6001600160a01b03821661172b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610670565b611736838383611aca565b6117416000826114af565b6001600160a01b038316600090815260036020526040812080546001929061176a908490612495565b90915550506001600160a01b038216600090815260036020526040812080546001929061179890849061244a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611870848484611621565b61187c84848484611ad5565b6110ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610670565b60608161192357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561194d578061193781612513565b91506119469050600a83612462565b9150611927565b60008167ffffffffffffffff8111156119685761196861259a565b6040519080825280601f01601f191660200182016040528015611992576020820181803683370190505b5090505b8415611619576119a7600183612495565b91506119b4600a8661252e565b6119bf90603061244a565b60f81b8183815181106119d4576119d4612584565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a0e600a86612462565b9450611996565b610b31828260405180602001604052806000815250611c2d565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611a9257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610563565b61087e838383611cab565b60006001600160a01b0384163b15611c2257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b199033908990889088906004016123fb565b602060405180830381600087803b158015611b3357600080fd5b505af1925050508015611b63575060408051601f3d908101601f19168201909252611b6091810190612308565b60015b611c08573d808015611b91576040519150601f19603f3d011682016040523d82523d6000602084013e611b96565b606091505b508051611c005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610670565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611619565b506001949350505050565b611c378383611d63565b611c446000848484611ad5565b61087e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610670565b6001600160a01b038316611d0657611d0181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d29565b816001600160a01b0316836001600160a01b031614611d2957611d298382611ebe565b6001600160a01b038216611d405761087e81611f5b565b826001600160a01b0316826001600160a01b03161461087e5761087e828261200a565b6001600160a01b038216611db95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610670565b6000818152600260205260409020546001600160a01b031615611e1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610670565b611e2a60008383611aca565b6001600160a01b0382166000908152600360205260408120805460019290611e5390849061244a565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ecb84610bc0565b611ed59190612495565b600083815260076020526040902054909150808214611f28576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f6d90600190612495565b60008381526009602052604081205460088054939450909284908110611f9557611f95612584565b906000526020600020015490508060088381548110611fb657611fb6612584565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611fee57611fee61256e565b6001900381819060005260206000200160009055905550505050565b600061201583610bc0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461205a906124d8565b90600052602060002090601f01602090048101928261207c57600085556120c2565b82601f1061209557805160ff19168380011785556120c2565b828001600101855582156120c2579182015b828111156120c25782518255916020019190600101906120a7565b506120ce9291506120d2565b5090565b5b808211156120ce57600081556001016120d3565b600067ffffffffffffffff808411156121025761210261259a565b604051601f8501601f19908116603f0116810190828211818310171561212a5761212a61259a565b8160405280935085815286868601111561214357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561216f57600080fd5b81356111d5816125b0565b6000806040838503121561218d57600080fd5b8235612198816125b0565b915060208301356121a8816125b0565b809150509250929050565b6000806000606084860312156121c857600080fd5b83356121d3816125b0565b925060208401356121e3816125b0565b929592945050506040919091013590565b6000806000806080858703121561220a57600080fd5b8435612215816125b0565b93506020850135612225816125b0565b925060408501359150606085013567ffffffffffffffff81111561224857600080fd5b8501601f8101871361225957600080fd5b612268878235602084016120e7565b91505092959194509250565b6000806040838503121561228757600080fd5b8235612292816125b0565b915060208301356121a8816125c5565b600080604083850312156122b557600080fd5b82356122c0816125b0565b946020939093013593505050565b6000602082840312156122e057600080fd5b81516111d5816125c5565b6000602082840312156122fd57600080fd5b81356111d5816125d3565b60006020828403121561231a57600080fd5b81516111d5816125d3565b60006020828403121561233757600080fd5b813567ffffffffffffffff81111561234e57600080fd5b8201601f8101841361235f57600080fd5b611619848235602084016120e7565b60006020828403121561238057600080fd5b5035919050565b60006020828403121561239957600080fd5b5051919050565b600081518084526123b88160208601602086016124ac565b601f01601f19169290920160200192915050565b600083516123de8184602088016124ac565b8351908301906123f28183602088016124ac565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261242d60808301846123a0565b9695505050505050565b6020815260006111d560208301846123a0565b6000821982111561245d5761245d612542565b500190565b60008261247157612471612558565b500490565b600081600019048311821515161561249057612490612542565b500290565b6000828210156124a7576124a7612542565b500390565b60005b838110156124c75781810151838201526020016124af565b838111156110ed5750506000910152565b600181811c908216806124ec57607f821691505b6020821081141561250d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561252757612527612542565b5060010190565b60008261253d5761253d612558565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f9d57600080fd5b8015158114610f9d57600080fd5b6001600160e01b031981168114610f9d57600080fdfea2646970667358221220d05a626f49a3b1f0c809b4c929eb1aeff80f826e2f7fa4d235ff539b4ea7ff4f64736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000006a94d74f4300000000000000000000000000000000000000000000000000000000000000001b39000000000000000000000000000000000000000000000000000000000000000e42696720505020436f6e646f6d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350504300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d536b526541797875413463747832716d41754134446a333552775231683453474d56785a706843324c4447582f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Big PP Condoms
Arg [1] : symbol (string): PPC
Arg [2] : baseTokenURI (string): ipfs://QmSkReAyxuA4ctx2qmAuA4Dj35RwR1h4SGMVxZphC2LDGX/
Arg [3] : tokenSalePrice_ (uint256): 30000000000000000
Arg [4] : maxTokens_ (uint256): 6969

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001b39
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 42696720505020436f6e646f6d73000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5050430000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d536b526541797875413463747832716d41754134446a33
Arg [11] : 3552775231683453474d56785a706843324c4447582f00000000000000000000


Deployed Bytecode Sourcemap

45986:2830:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46795:212;;;;;;;;;;-1:-1:-1;46795:212:0;;;;;:::i;:::-;;:::i;:::-;;;7063:14:1;;7056:22;7038:41;;7026:2;7011:18;46795:212:0;;;;;;;;21531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23090:221::-;;;;;;;;;;-1:-1:-1;23090:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6013:55:1;;;5995:74;;5983:2;5968:18;23090:221:0;5950:125:1;47137:179:0;;;;;;;;;;;;;:::i;:::-;;22613:411;;;;;;;;;;-1:-1:-1;22613:411:0;;;;;:::i;:::-;;:::i;35286:113::-;;;;;;;;;;-1:-1:-1;35374:10:0;:17;35286:113;;;17155:25:1;;;17143:2;17128:18;35286:113:0;17110:76:1;23980:339:0;;;;;;;;;;-1:-1:-1;23980:339:0;;;;;:::i;:::-;;:::i;34954:256::-;;;;;;;;;;-1:-1:-1;34954:256:0;;;;;:::i;:::-;;:::i;24390:185::-;;;;;;;;;;-1:-1:-1;24390:185:0;;;;;:::i;:::-;;:::i;35476:233::-;;;;;;;;;;-1:-1:-1;35476:233:0;;;;;:::i;:::-;;:::i;47324:174::-;;;;;;;;;;-1:-1:-1;47324:174:0;;;;;:::i;:::-;;:::i;21225:239::-;;;;;;;;;;-1:-1:-1;21225:239:0;;;;;:::i;:::-;;:::i;20955:208::-;;;;;;;;;;-1:-1:-1;20955:208:0;;;;;:::i;:::-;;:::i;47506:99::-;;;;;;;;;;;;;:::i;42449:94::-;;;;;;;;;;;;;:::i;47706:113::-;;;;;;;;;;;;;:::i;48622:191::-;;;;;;;;;;-1:-1:-1;48622:191:0;;;;;:::i;:::-;;:::i;41798:87::-;;;;;;;;;;-1:-1:-1;41871:6:0;;-1:-1:-1;;;;;41871:6:0;41798:87;;21700:104;;;;;;;;;;;;;:::i;48433:181::-;;;;;;;;;;;;;:::i;23383:295::-;;;;;;;;;;-1:-1:-1;23383:295:0;;;;;:::i;:::-;;:::i;24646:328::-;;;;;;;;;;-1:-1:-1;24646:328:0;;;;;:::i;:::-;;:::i;21875:334::-;;;;;;;;;;-1:-1:-1;21875:334:0;;;;;:::i;:::-;;:::i;47827:598::-;;;;;;:::i;:::-;;:::i;46119:24::-;;;;;;;;;;;;;;;;46083:29;;;;;;;;;;;;;;;;23749:164;;;;;;;;;;-1:-1:-1;23749:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23870:25:0;;;23846:4;23870:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23749:164;42698:192;;;;;;;;;;-1:-1:-1;42698:192:0;;;;;:::i;:::-;;:::i;47613:85::-;;;;;;;;;;-1:-1:-1;47680:10:0;;;;;;;47613:85;;46795:212;46934:4;46963:36;46987:11;46963:23;:36::i;:::-;46956:43;46795:212;-1:-1:-1;;46795:212:0:o;21531:100::-;21585:13;21618:5;21611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21531:100;:::o;23090:221::-;23166:7;26573:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26573:16:0;23186:73;;;;-1:-1:-1;;;23186:73:0;;13306:2:1;23186:73:0;;;13288:21:1;13345:2;13325:18;;;13318:30;13384:34;13364:18;;;13357:62;-1:-1:-1;;;13435:18:1;;;13428:42;13487:19;;23186:73:0;;;;;;;;;-1:-1:-1;23279:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23279:24:0;;23090:221::o;47137:179::-;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;47229:9:::1;::::0;::::1;;:18;47221:60;;;::::0;-1:-1:-1;;;47221:60:0;;12587:2:1;47221:60:0::1;::::0;::::1;12569:21:1::0;12626:2;12606:18;;;12599:30;12665:31;12645:18;;;12638:59;12714:18;;47221:60:0::1;12559:179:1::0;47221:60:0::1;47292:9;:16:::0;;-1:-1:-1;;47292:16:0::1;47304:4;47292:16;::::0;;47137:179::o;22613:411::-;22694:13;22710:23;22725:7;22710:14;:23::i;:::-;22694:39;;22758:5;-1:-1:-1;;;;;22752:11:0;:2;-1:-1:-1;;;;;22752:11:0;;;22744:57;;;;-1:-1:-1;;;22744:57:0;;14906:2:1;22744:57:0;;;14888:21:1;14945:2;14925:18;;;14918:30;14984:34;14964:18;;;14957:62;15055:3;15035:18;;;15028:31;15076:19;;22744:57:0;14878:223:1;22744:57:0;16068:10;-1:-1:-1;;;;;22836:21:0;;;;:62;;-1:-1:-1;22861:37:0;22878:5;16068:10;23749:164;:::i;22861:37::-;22814:168;;;;-1:-1:-1;;;22814:168:0;;10988:2:1;22814:168:0;;;10970:21:1;11027:2;11007:18;;;11000:30;11066:34;11046:18;;;11039:62;11137:26;11117:18;;;11110:54;11181:19;;22814:168:0;10960:246:1;22814:168:0;22995:21;23004:2;23008:7;22995:8;:21::i;:::-;22683:341;22613:411;;:::o;23980:339::-;24175:41;16068:10;24208:7;24175:18;:41::i;:::-;24167:103;;;;-1:-1:-1;;;24167:103:0;;16019:2:1;24167:103:0;;;16001:21:1;16058:2;16038:18;;;16031:30;16097:34;16077:18;;;16070:62;16168:19;16148:18;;;16141:47;16205:19;;24167:103:0;15991:239:1;24167:103:0;24283:28;24293:4;24299:2;24303:7;24283:9;:28::i;34954:256::-;35051:7;35087:23;35104:5;35087:16;:23::i;:::-;35079:5;:31;35071:87;;;;-1:-1:-1;;;35071:87:0;;7516:2:1;35071:87:0;;;7498:21:1;7555:2;7535:18;;;7528:30;7594:34;7574:18;;;7567:62;7665:13;7645:18;;;7638:41;7696:19;;35071:87:0;7488:233:1;35071:87:0;-1:-1:-1;;;;;;35176:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34954:256::o;24390:185::-;24528:39;24545:4;24551:2;24555:7;24528:39;;;;;;;;;;;;:16;:39::i;35476:233::-;35551:7;35587:30;35374:10;:17;;35286:113;35587:30;35579:5;:38;35571:95;;;;-1:-1:-1;;;35571:95:0;;16437:2:1;35571:95:0;;;16419:21:1;16476:2;16456:18;;;16449:30;16515:34;16495:18;;;16488:62;16586:14;16566:18;;;16559:42;16618:19;;35571:95:0;16409:234:1;35571:95:0;35684:10;35695:5;35684:17;;;;;;;;:::i;:::-;;;;;;;;;35677:24;;35476:233;;;:::o;47324:174::-;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;47402:9:::1;::::0;::::1;;:18;47394:63;;;::::0;-1:-1:-1;;;47394:63:0;;16850:2:1;47394:63:0::1;::::0;::::1;16832:21:1::0;;;16869:18;;;16862:30;16928:34;16908:18;;;16901:62;16980:18;;47394:63:0::1;16822:182:1::0;47394:63:0::1;47468:22:::0;;::::1;::::0;:13:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47324:174:::0;:::o;21225:239::-;21297:7;21333:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21333:16:0;21368:19;21360:73;;;;-1:-1:-1;;;21360:73:0;;11824:2:1;21360:73:0;;;11806:21:1;11863:2;11843:18;;;11836:30;11902:34;11882:18;;;11875:62;11973:11;11953:18;;;11946:39;12002:19;;21360:73:0;11796:231:1;20955:208:0;21027:7;-1:-1:-1;;;;;21055:19:0;;21047:74;;;;-1:-1:-1;;;21047:74:0;;11413:2:1;21047:74:0;;;11395:21:1;11452:2;11432:18;;;11425:30;11491:34;11471:18;;;11464:62;11562:12;11542:18;;;11535:40;11592:19;;21047:74:0;11385:232:1;21047:74:0;-1:-1:-1;;;;;;21139:16:0;;;;;:9;:16;;;;;;;20955:208::o;47506:99::-;47551:13;47584;47577:20;;;;;:::i;42449:94::-;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;42514:21:::1;42532:1;42514:9;:21::i;:::-;42449:94::o:0;47706:113::-;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;47801:10:::1;::::0;;-1:-1:-1;;47787:24:0;::::1;47801:10;::::0;;;::::1;;;47800:11;47787:24:::0;;::::1;;::::0;;47706:113::o;48622:191::-;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;48757:37:::1;::::0;;;;48788:4:::1;48757:37;::::0;::::1;5995:74:1::0;-1:-1:-1;;;;;48696:21:0;::::1;::::0;::::1;::::0;48732:10:::1;::::0;48696:21;;48757:22:::1;::::0;5968:18:1;;48757:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48696:109;::::0;-1:-1:-1;;;;;;48696:109:0::1;::::0;;;;;;-1:-1:-1;;;;;6788:55:1;;;48696:109:0::1;::::0;::::1;6770:74:1::0;6860:18;;;6853:34;6743:18;;48696:109:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21700:104::-:0;21756:13;21789:7;21782:14;;;;;:::i;48433:181::-;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;48518:1:::1;48494:21;:25;48486:58;;;::::0;-1:-1:-1;;;48486:58:0;;10226:2:1;48486:58:0::1;::::0;::::1;10208:21:1::0;10265:2;10245:18;;;10238:30;10304:22;10284:18;;;10277:50;10344:18;;48486:58:0::1;10198:170:1::0;48486:58:0::1;48555:51;::::0;48563:10:::1;::::0;48584:21:::1;48555:51:::0;::::1;;;::::0;::::1;::::0;;;48584:21;48563:10;48555:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48433:181::o:0;23383:295::-;-1:-1:-1;;;;;23486:24:0;;16068:10;23486:24;;23478:62;;;;-1:-1:-1;;;23478:62:0;;9872:2:1;23478:62:0;;;9854:21:1;9911:2;9891:18;;;9884:30;9950:27;9930:18;;;9923:55;9995:18;;23478:62:0;9844:175:1;23478:62:0;16068:10;23553:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23553:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23553:53:0;;;;;;;;;;23622:48;;7038:41:1;;;23553:42:0;;16068:10;23622:48;;7011:18:1;23622:48:0;;;;;;;23383:295;;:::o;24646:328::-;24821:41;16068:10;24854:7;24821:18;:41::i;:::-;24813:103;;;;-1:-1:-1;;;24813:103:0;;16019:2:1;24813:103:0;;;16001:21:1;16058:2;16038:18;;;16031:30;16097:34;16077:18;;;16070:62;16168:19;16148:18;;;16141:47;16205:19;;24813:103:0;15991:239:1;24813:103:0;24927:39;24941:4;24947:2;24951:7;24960:5;24927:13;:39::i;:::-;24646:328;;;;:::o;21875:334::-;26549:4;26573:16;;;:7;:16;;;;;;21948:13;;-1:-1:-1;;;;;26573:16:0;21974:76;;;;-1:-1:-1;;;21974:76:0;;14490:2:1;21974:76:0;;;14472:21:1;14529:2;14509:18;;;14502:30;14568:34;14548:18;;;14541:62;14639:17;14619:18;;;14612:45;14674:19;;21974:76:0;14462:237:1;21974:76:0;22063:21;22087:10;:8;:10::i;:::-;22063:34;;22139:1;22121:7;22115:21;:25;:86;;;;;;;;;;;;;;;;;22167:7;22176:18;:7;:16;:18::i;:::-;22150:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22115:86;22108:93;21875:334;-1:-1:-1;;;21875:334:0:o;47827:598::-;47895:10;;;;;;;;:18;;:10;:18;47887:58;;;;-1:-1:-1;;;47887:58:0;;8347:2:1;47887:58:0;;;8329:21:1;8386:2;8366:18;;;8359:30;8425:29;8405:18;;;8398:57;8472:18;;47887:58:0;8319:177:1;47887:58:0;48003:9;;47994:5;47978:13;35374:10;:17;;35286:113;47978:13;:21;;;;:::i;:::-;:34;;47956:112;;;;-1:-1:-1;;;47956:112:0;;15308:2:1;47956:112:0;;;15290:21:1;15347:2;15327:18;;;15320:30;15386;15366:18;;;15359:58;15434:18;;47956:112:0;15280:178:1;47956:112:0;48095:1;48087:5;:9;:30;;;;;48109:8;;48100:5;:17;;48087:30;48079:67;;;;-1:-1:-1;;;48079:67:0;;12234:2:1;48079:67:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:26;12292:18;;;12285:54;12356:18;;48079:67:0;12206:174:1;48079:67:0;48209:5;48192:14;;:22;;;;:::i;:::-;48179:9;:35;48157:110;;;;-1:-1:-1;;;48157:110:0;;15665:2:1;48157:110:0;;;15647:21:1;15704:2;15684:18;;;15677:30;15743:27;15723:18;;;15716:55;15788:18;;48157:110:0;15637:175:1;48157:110:0;48283:9;48278:140;48302:5;48298:1;:9;48278:140;;;48366:40;48376:10;48388:13;35374:10;:17;;35286:113;48388:13;:17;;48404:1;48388:17;:::i;:::-;48366:9;:40::i;:::-;48309:3;;;;:::i;:::-;;;;48278:140;;42698:192;41871:6;;-1:-1:-1;;;;;41871:6:0;16068:10;42018:23;42010:68;;;;-1:-1:-1;;;42010:68:0;;13719:2:1;42010:68:0;;;13701:21:1;;;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;13849:18;;42010:68:0;13691:182:1;42010:68:0;-1:-1:-1;;;;;42787:22:0;::::1;42779:73;;;::::0;-1:-1:-1;;;42779:73:0;;8703:2:1;42779:73:0::1;::::0;::::1;8685:21:1::0;8742:2;8722:18;;;8715:30;8781:34;8761:18;;;8754:62;8852:8;8832:18;;;8825:36;8878:19;;42779:73:0::1;8675:228:1::0;42779:73:0::1;42863:19;42873:8;42863:9;:19::i;34646:224::-:0;34748:4;-1:-1:-1;;;;;;34772:50:0;;34787:35;34772:50;;:90;;;34826:36;34850:11;34826:23;:36::i;30466:174::-;30541:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;30541:29:0;-1:-1:-1;;;;;30541:29:0;;;;;;;;:24;;30595:23;30541:24;30595:14;:23::i;:::-;-1:-1:-1;;;;;30586:46:0;;;;;;;;;;;30466:174;;:::o;26778:348::-;26871:4;26573:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26573:16:0;26888:73;;;;-1:-1:-1;;;26888:73:0;;10575:2:1;26888:73:0;;;10557:21:1;10614:2;10594:18;;;10587:30;10653:34;10633:18;;;10626:62;-1:-1:-1;;;10704:18:1;;;10697:42;10756:19;;26888:73:0;10547:234:1;26888:73:0;26972:13;26988:23;27003:7;26988:14;:23::i;:::-;26972:39;;27041:5;-1:-1:-1;;;;;27030:16:0;:7;-1:-1:-1;;;;;27030:16:0;;:51;;;;27074:7;-1:-1:-1;;;;;27050:31:0;:20;27062:7;27050:11;:20::i;:::-;-1:-1:-1;;;;;27050:31:0;;27030:51;:87;;;-1:-1:-1;;;;;;23870:25:0;;;23846:4;23870:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27085:32;27022:96;26778:348;-1:-1:-1;;;;26778:348:0:o;29770:578::-;29929:4;-1:-1:-1;;;;;29902:31:0;:23;29917:7;29902:14;:23::i;:::-;-1:-1:-1;;;;;29902:31:0;;29894:85;;;;-1:-1:-1;;;29894:85:0;;14080:2:1;29894:85:0;;;14062:21:1;14119:2;14099:18;;;14092:30;14158:34;14138:18;;;14131:62;14229:11;14209:18;;;14202:39;14258:19;;29894:85:0;14052:231:1;29894:85:0;-1:-1:-1;;;;;29998:16:0;;29990:65;;;;-1:-1:-1;;;29990:65:0;;9467:2:1;29990:65:0;;;9449:21:1;9506:2;9486:18;;;9479:30;9545:34;9525:18;;;9518:62;9616:6;9596:18;;;9589:34;9640:19;;29990:65:0;9439:226:1;29990:65:0;30068:39;30089:4;30095:2;30099:7;30068:20;:39::i;:::-;30172:29;30189:1;30193:7;30172:8;:29::i;:::-;-1:-1:-1;;;;;30214:15:0;;;;;;:9;:15;;;;;:20;;30233:1;;30214:15;:20;;30233:1;;30214:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30245:13:0;;;;;;:9;:13;;;;;:18;;30262:1;;30245:13;:18;;30262:1;;30245:18;:::i;:::-;;;;-1:-1:-1;;30274:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;30274:21:0;-1:-1:-1;;;;;30274:21:0;;;;;;;;;30313:27;;30274:16;;30313:27;;;;;;;29770:578;;;:::o;42898:173::-;42973:6;;;-1:-1:-1;;;;;42990:17:0;;;-1:-1:-1;;42990:17:0;;;;;;;43023:40;;42973:6;;;42990:17;42973:6;;43023:40;;42954:16;;43023:40;42943:128;42898:173;:::o;25856:315::-;26013:28;26023:4;26029:2;26033:7;26013:9;:28::i;:::-;26060:48;26083:4;26089:2;26093:7;26102:5;26060:22;:48::i;:::-;26052:111;;;;-1:-1:-1;;;26052:111:0;;7928:2:1;26052:111:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:34;7986:18;;;7979:62;-1:-1:-1;;;8057:18:1;;;8050:48;8115:19;;26052:111:0;7900:240:1;16521:723:0;16577:13;16798:10;16794:53;;-1:-1:-1;;16825:10:0;;;;;;;;;;;;;;;;;;16521:723::o;16794:53::-;16872:5;16857:12;16913:78;16920:9;;16913:78;;16946:8;;;;:::i;:::-;;-1:-1:-1;16969:10:0;;-1:-1:-1;16977:2:0;16969:10;;:::i;:::-;;;16913:78;;;17001:19;17033:6;17023:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17023:17:0;;17001:39;;17051:154;17058:10;;17051:154;;17085:11;17095:1;17085:11;;:::i;:::-;;-1:-1:-1;17154:10:0;17162:2;17154:5;:10;:::i;:::-;17141:24;;:2;:24;:::i;:::-;17128:39;;17111:6;17118;17111:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;17182:11:0;17191:2;17182:11;;:::i;:::-;;;17051:154;;27468:110;27544:26;27554:2;27558:7;27544:26;;;;;;;;;;;;:9;:26::i;20586:305::-;20688:4;-1:-1:-1;;;;;;20725:40:0;;20740:25;20725:40;;:105;;-1:-1:-1;;;;;;;20782:48:0;;20797:33;20782:48;20725:105;:158;;;-1:-1:-1;19208:25:0;-1:-1:-1;;;;;;19193:40:0;;;20847:36;19084:157;46572:215;46734:45;46761:4;46767:2;46771:7;46734:26;:45::i;31205:803::-;31360:4;-1:-1:-1;;;;;31381:13:0;;8565:20;8613:8;31377:624;;31417:72;;-1:-1:-1;;;31417:72:0;;-1:-1:-1;;;;;31417:36:0;;;;;:72;;16068:10;;31468:4;;31474:7;;31483:5;;31417:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31417:72:0;;;;;;;;-1:-1:-1;;31417:72:0;;;;;;;;;;;;:::i;:::-;;;31413:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31663:13:0;;31659:272;;31706:60;;-1:-1:-1;;;31706:60:0;;7928:2:1;31706:60:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:34;7986:18;;;7979:62;-1:-1:-1;;;8057:18:1;;;8050:48;8115:19;;31706:60:0;7900:240:1;31659:272:0;31881:6;31875:13;31866:6;31862:2;31858:15;31851:38;31413:533;-1:-1:-1;;;;;;31540:55:0;-1:-1:-1;;;31540:55:0;;-1:-1:-1;31533:62:0;;31377:624;-1:-1:-1;31985:4:0;31205:803;;;;;;:::o;27805:321::-;27935:18;27941:2;27945:7;27935:5;:18::i;:::-;27986:54;28017:1;28021:2;28025:7;28034:5;27986:22;:54::i;:::-;27964:154;;;;-1:-1:-1;;;27964:154:0;;7928:2:1;27964:154:0;;;7910:21:1;7967:2;7947:18;;;7940:30;8006:34;7986:18;;;7979:62;-1:-1:-1;;;8057:18:1;;;8050:48;8115:19;;27964:154:0;7900:240:1;36322:589:0;-1:-1:-1;;;;;36528:18:0;;36524:187;;36563:40;36595:7;37738:10;:17;;37711:24;;;;:15;:24;;;;;:44;;;37766:24;;;;;;;;;;;;37634:164;36563:40;36524:187;;;36633:2;-1:-1:-1;;;;;36625:10:0;:4;-1:-1:-1;;;;;36625:10:0;;36621:90;;36652:47;36685:4;36691:7;36652:32;:47::i;:::-;-1:-1:-1;;;;;36725:16:0;;36721:183;;36758:45;36795:7;36758:36;:45::i;36721:183::-;36831:4;-1:-1:-1;;;;;36825:10:0;:2;-1:-1:-1;;;;;36825:10:0;;36821:83;;36852:40;36880:2;36884:7;36852:27;:40::i;28462:382::-;-1:-1:-1;;;;;28542:16:0;;28534:61;;;;-1:-1:-1;;;28534:61:0;;12945:2:1;28534:61:0;;;12927:21:1;;;12964:18;;;12957:30;13023:34;13003:18;;;12996:62;13075:18;;28534:61:0;12917:182:1;28534:61:0;26549:4;26573:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26573:16:0;:30;28606:58;;;;-1:-1:-1;;;28606:58:0;;9110:2:1;28606:58:0;;;9092:21:1;9149:2;9129:18;;;9122:30;9188;9168:18;;;9161:58;9236:18;;28606:58:0;9082:178:1;28606:58:0;28677:45;28706:1;28710:2;28714:7;28677:20;:45::i;:::-;-1:-1:-1;;;;;28735:13:0;;;;;;:9;:13;;;;;:18;;28752:1;;28735:13;:18;;28752:1;;28735:18;:::i;:::-;;;;-1:-1:-1;;28764:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;28764:21:0;-1:-1:-1;;;;;28764:21:0;;;;;;;;28803:33;;28764:16;;;28803:33;;28764:16;;28803:33;28462:382;;:::o;38425:988::-;38691:22;38741:1;38716:22;38733:4;38716:16;:22::i;:::-;:26;;;;:::i;:::-;38753:18;38774:26;;;:17;:26;;;;;;38691:51;;-1:-1:-1;38907:28:0;;;38903:328;;-1:-1:-1;;;;;38974:18:0;;38952:19;38974:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39025:30;;;;;;:44;;;39142:30;;:17;:30;;;;;:43;;;38903:328;-1:-1:-1;39327:26:0;;;;:17;:26;;;;;;;;39320:33;;;-1:-1:-1;;;;;39371:18:0;;;;;:12;:18;;;;;:34;;;;;;;39364:41;38425:988::o;39708:1079::-;39986:10;:17;39961:22;;39986:21;;40006:1;;39986:21;:::i;:::-;40018:18;40039:24;;;:15;:24;;;;;;40412:10;:26;;39961:46;;-1:-1:-1;40039:24:0;;39961:46;;40412:26;;;;;;:::i;:::-;;;;;;;;;40390:48;;40476:11;40451:10;40462;40451:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40556:28;;;:15;:28;;;;;;;:41;;;40728:24;;;;;40721:31;40763:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39779:1008;;;39708:1079;:::o;37212:221::-;37297:14;37314:20;37331:2;37314:16;:20::i;:::-;-1:-1:-1;;;;;37345:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37390:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37212:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;778:1;775;768:12;730:2;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:2;;;1047:1;1044;1037:12;999:2;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;989:301;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1457:1;1454;1447:12;1409:2;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1399:352;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1399:352::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:2;;;1945:1;1942;1935:12;1896:2;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:2;;;2343:1;2340;2333:12;2297:2;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:2:1;;2448:1;2445;2438:12;2397:2;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1886:664;;;;;;;:::o;2555:382::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:2;;;2697:1;2694;2687:12;2649:2;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2875:30;2834:32;2875:30;:::i;2942:315::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:2;;;3087:1;3084;3077:12;3039:2;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;:::-;3195:5;3247:2;3232:18;;;;3219:32;;-1:-1:-1;;;3029:228:1:o;3262:245::-;3329:6;3382:2;3370:9;3361:7;3357:23;3353:32;3350:2;;;3398:1;3395;3388:12;3350:2;3430:9;3424:16;3449:28;3471:5;3449:28;:::i;3512:245::-;3570:6;3623:2;3611:9;3602:7;3598:23;3594:32;3591:2;;;3639:1;3636;3629:12;3591:2;3678:9;3665:23;3697:30;3721:5;3697:30;:::i;3762:249::-;3831:6;3884:2;3872:9;3863:7;3859:23;3855:32;3852:2;;;3900:1;3897;3890:12;3852:2;3932:9;3926:16;3951:30;3975:5;3951:30;:::i;4283:450::-;4352:6;4405:2;4393:9;4384:7;4380:23;4376:32;4373:2;;;4421:1;4418;4411:12;4373:2;4461:9;4448:23;4494:18;4486:6;4483:30;4480:2;;;4526:1;4523;4516:12;4480:2;4549:22;;4602:4;4594:13;;4590:27;-1:-1:-1;4580:2:1;;4631:1;4628;4621:12;4580:2;4654:73;4719:7;4714:2;4701:16;4696:2;4692;4688:11;4654:73;:::i;4738:180::-;4797:6;4850:2;4838:9;4829:7;4825:23;4821:32;4818:2;;;4866:1;4863;4856:12;4818:2;-1:-1:-1;4889:23:1;;4808:110;-1:-1:-1;4808:110:1:o;4923:184::-;4993:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:2;;;5062:1;5059;5052:12;5014:2;-1:-1:-1;5085:16:1;;5004:103;-1:-1:-1;5004:103:1:o;5112:257::-;5153:3;5191:5;5185:12;5218:6;5213:3;5206:19;5234:63;5290:6;5283:4;5278:3;5274:14;5267:4;5260:5;5256:16;5234:63;:::i;:::-;5351:2;5330:15;-1:-1:-1;;5326:29:1;5317:39;;;;5358:4;5313:50;;5161:208;-1:-1:-1;;5161:208:1:o;5374:470::-;5553:3;5591:6;5585:13;5607:53;5653:6;5648:3;5641:4;5633:6;5629:17;5607:53;:::i;:::-;5723:13;;5682:16;;;;5745:57;5723:13;5682:16;5779:4;5767:17;;5745:57;:::i;:::-;5818:20;;5561:283;-1:-1:-1;;;;5561:283:1:o;6080:511::-;6274:4;-1:-1:-1;;;;;6384:2:1;6376:6;6372:15;6361:9;6354:34;6436:2;6428:6;6424:15;6419:2;6408:9;6404:18;6397:43;;6476:6;6471:2;6460:9;6456:18;6449:34;6519:3;6514:2;6503:9;6499:18;6492:31;6540:45;6580:3;6569:9;6565:19;6557:6;6540:45;:::i;:::-;6532:53;6283:308;-1:-1:-1;;;;;;6283:308:1:o;7090:219::-;7239:2;7228:9;7221:21;7202:4;7259:44;7299:2;7288:9;7284:18;7276:6;7259:44;:::i;17191:128::-;17231:3;17262:1;17258:6;17255:1;17252:13;17249:2;;;17268:18;;:::i;:::-;-1:-1:-1;17304:9:1;;17239:80::o;17324:120::-;17364:1;17390;17380:2;;17395:18;;:::i;:::-;-1:-1:-1;17429:9:1;;17370:74::o;17449:168::-;17489:7;17555:1;17551;17547:6;17543:14;17540:1;17537:21;17532:1;17525:9;17518:17;17514:45;17511:2;;;17562:18;;:::i;:::-;-1:-1:-1;17602:9:1;;17501:116::o;17622:125::-;17662:4;17690:1;17687;17684:8;17681:2;;;17695:18;;:::i;:::-;-1:-1:-1;17732:9:1;;17671:76::o;17752:258::-;17824:1;17834:113;17848:6;17845:1;17842:13;17834:113;;;17924:11;;;17918:18;17905:11;;;17898:39;17870:2;17863:10;17834:113;;;17965:6;17962:1;17959:13;17956:2;;;-1:-1:-1;;18000:1:1;17982:16;;17975:27;17805:205::o;18015:437::-;18094:1;18090:12;;;;18137;;;18158:2;;18212:4;18204:6;18200:17;18190:27;;18158:2;18265;18257:6;18254:14;18234:18;18231:38;18228:2;;;-1:-1:-1;;;18299:1:1;18292:88;18403:4;18400:1;18393:15;18431:4;18428:1;18421:15;18228:2;;18070:382;;;:::o;18457:135::-;18496:3;-1:-1:-1;;18517:17:1;;18514:2;;;18537:18;;:::i;:::-;-1:-1:-1;18584:1:1;18573:13;;18504:88::o;18597:112::-;18629:1;18655;18645:2;;18660:18;;:::i;:::-;-1:-1:-1;18694:9:1;;18635:74::o;18714:184::-;-1:-1:-1;;;18763:1:1;18756:88;18863:4;18860:1;18853:15;18887:4;18884:1;18877:15;18903:184;-1:-1:-1;;;18952:1:1;18945:88;19052:4;19049:1;19042:15;19076:4;19073:1;19066:15;19092:184;-1:-1:-1;;;19141:1:1;19134:88;19241:4;19238:1;19231:15;19265:4;19262:1;19255:15;19281:184;-1:-1:-1;;;19330:1:1;19323:88;19430:4;19427:1;19420:15;19454:4;19451:1;19444:15;19470:184;-1:-1:-1;;;19519:1:1;19512:88;19619:4;19616:1;19609:15;19643:4;19640:1;19633:15;19659:154;-1:-1:-1;;;;;19738:5:1;19734:54;19727:5;19724:65;19714:2;;19803:1;19800;19793:12;19818:118;19904:5;19897:13;19890:21;19883:5;19880:32;19870:2;;19926:1;19923;19916:12;19941:177;-1:-1:-1;;;;;;20019:5:1;20015:78;20008:5;20005:89;19995:2;;20108:1;20105;20098:12

Swarm Source

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