ETH Price: $3,158.55 (+1.26%)
Gas: 2 Gwei

Token

Pongers (PONG)
 

Overview

Max Total Supply

2,000 PONG

Holders

511

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PONG
0xfc022b4075bbc3d1eda9ceed82e81476c21d7914
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:
Pongers

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 669 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-16
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
Where am i?.......                                   
                                                                           
*/

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

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/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}


    pragma solidity ^0.8.13;
    
    contract Pongers  is ERC721A, Ownable, ReentrancyGuard, OperatorFilterer {
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeicqsjettczo345xgd776g6vqekbtc6m7g7p766adpv2avglyqxkau/";
  string private uriSuffix = ".json";
  string private hiddenURL;

  
  

  uint256 public cost = 0.002 ether;
 
  

  uint16 public maxSupply = 2000;
  uint8 public maxMintAmountPerTx = 10;
   uint8 public maxMintAmountPerWallet = 20;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 2000;
     bool public operatorFilteringEnabled;
                                                             
 
  bool public paused = true;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function MintPONG(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

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

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintPONG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002dde60a039600a90620000239082620002a6565b50604080518082019091526005815264173539b7b760d91b6020820152600b906200004f9082620002a6565b5066071afd498d0000600d55600e805464ffffffffff19166401140a07d01790556000600f556107d06010556011805462ffff001916620101001790553480156200009957600080fd5b5060405162002e2138038062002e21833981016040819052620000bc9162000421565b81816002620000cc8382620002a6565b506003620000db8282620002a6565b5050600160005550620000ee3362000112565b6001600955620000fd62000164565b50506011805460ff191660011790556200048b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000185733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000187565b565b6001600160a01b0390911690637d3e3dbe81620001b75782620001b05750634420e486620001b7565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001f7578060005160e01c03620001f757600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022c57607f821691505b6020821081036200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a157600081815260208120601f850160051c810160208610156200027c5750805b601f850160051c820191505b818110156200029d5782815560010162000288565b5050505b505050565b81516001600160401b03811115620002c257620002c262000201565b620002da81620002d3845462000217565b8462000253565b602080601f831160018114620003125760008415620002f95750858301515b600019600386901b1c1916600185901b1785556200029d565b600085815260208120601f198616915b82811015620003435788860151825594840194600190910190840162000322565b5085821015620003625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200038457600080fd5b81516001600160401b0380821115620003a157620003a162000201565b604051601f8301601f19908116603f01168101908282118183101715620003cc57620003cc62000201565b81604052838152602092508683858801011115620003e957600080fd5b600091505b838210156200040d5785820183015181830184015290820190620003ee565b600093810190920192909252949350505050565b600080604083850312156200043557600080fd5b82516001600160401b03808211156200044d57600080fd5b6200045b8683870162000372565b935060208501519150808211156200047257600080fd5b50620004818582860162000372565b9150509250929050565b612943806200049b6000396000f3fe6080604052600436106102d15760003560e01c806370a0823111610179578063b2a91c08116100d6578063cffb6e201161008a578063f2fde38b11610064578063f2fde38b146107d7578063f8bf5172146107f7578063fb796e6c1461081957600080fd5b8063cffb6e2014610740578063d5abeb0114610760578063e985e9c51461078e57600080fd5b8063b88d4fde116100bb578063b88d4fde146106df578063bc951b91146106ff578063c87b56dd1461072057600080fd5b8063b2a91c08146106ac578063b7c0b8e8146106bf57600080fd5b806395d89b411161012d578063a22cb46511610112578063a22cb4651461064c578063a475b5dd1461066c578063aa0622901461068c57600080fd5b806395d89b4114610621578063982d669e1461063657600080fd5b80637ec4a6591161015e5780637ec4a659146105b15780638da5cb5b146105d157806394354fd0146105ef57600080fd5b806370a082311461057c578063715018a61461059c57600080fd5b806323b872dd116102325780633ccfd60b116101e65780634d9c1848116101c05780634d9c18481461051d5780635c975abb1461053d5780636352211e1461055c57600080fd5b80633ccfd60b146104c857806342842e0e146104dd57806344a0d68a146104fd57600080fd5b8063305ae77511610217578063305ae7751461047e57806337a66d851461049e5780633bd64968146104b357600080fd5b806323b872dd1461043e5780632f6f98e11461045e57600080fd5b80630a00ae831161028957806313faede61161026e57806313faede6146103e757806318160ddd1461040b578063193ad7b41461042857600080fd5b80630a00ae83146103a75780631067fcc7146103c757600080fd5b806306fdde03116102ba57806306fdde031461032d578063081812fc1461034f578063095ea7b31461038757600080fd5b806301ffc9a7146102d657806306421c2f1461030b575b600080fd5b3480156102e257600080fd5b506102f66102f13660046121c8565b610833565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b5061032b6103263660046121fc565b610885565b005b34801561033957600080fd5b506103426108ea565b6040516103029190612267565b34801561035b57600080fd5b5061036f61036a36600461227a565b61097c565b6040516001600160a01b039091168152602001610302565b34801561039357600080fd5b5061032b6103a23660046122aa565b6109c0565b3480156103b357600080fd5b5061032b6103c236600461227a565b610a6a565b3480156103d357600080fd5b5061032b6103e2366004612360565b610ab7565b3480156103f357600080fd5b506103fd600d5481565b604051908152602001610302565b34801561041757600080fd5b5060015460005403600019016103fd565b34801561043457600080fd5b506103fd600f5481565b34801561044a57600080fd5b5061032b6104593660046123a9565b610b0f565b34801561046a57600080fd5b5061032b6104793660046123e5565b610b45565b34801561048a57600080fd5b5061032b610499366004612360565b610c16565b3480156104aa57600080fd5b5061032b610c6a565b3480156104bf57600080fd5b5061032b610ccf565b3480156104d457600080fd5b5061032b610d36565b3480156104e957600080fd5b5061032b6104f83660046123a9565b610e4e565b34801561050957600080fd5b5061032b61051836600461227a565b610e7e565b34801561052957600080fd5b5061032b610538366004612429565b610ecb565b34801561054957600080fd5b506011546102f690610100900460ff1681565b34801561056857600080fd5b5061036f61057736600461227a565b610f35565b34801561058857600080fd5b506103fd610597366004612444565b610f47565b3480156105a857600080fd5b5061032b610f96565b3480156105bd57600080fd5b5061032b6105cc366004612360565b610fea565b3480156105dd57600080fd5b506008546001600160a01b031661036f565b3480156105fb57600080fd5b50600e5461060f9062010000900460ff1681565b60405160ff9091168152602001610302565b34801561062d57600080fd5b5061034261103e565b34801561064257600080fd5b506103fd60105481565b34801561065857600080fd5b5061032b61066736600461246f565b61104d565b34801561067857600080fd5b506011546102f69062010000900460ff1681565b34801561069857600080fd5b5061032b6106a7366004612429565b6110e2565b61032b6106ba36600461227a565b611148565b3480156106cb57600080fd5b5061032b6106da366004612499565b6114ba565b3480156106eb57600080fd5b5061032b6106fa3660046124b4565b611515565b34801561070b57600080fd5b50600e5461060f906301000000900460ff1681565b34801561072c57600080fd5b5061034261073b36600461227a565b61154d565b34801561074c57600080fd5b5061032b61075b366004612530565b6116d0565b34801561076c57600080fd5b50600e5461077b9061ffff1681565b60405161ffff9091168152602001610302565b34801561079a57600080fd5b506102f66107a93660046125b6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107e357600080fd5b5061032b6107f2366004612444565b6117fe565b34801561080357600080fd5b50600e5461060f90640100000000900460ff1681565b34801561082557600080fd5b506011546102f69060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061086457506001600160e01b03198216635b5e139f60e01b145b8061087f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108d25760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064015b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b6060600280546108f9906125d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610925906125d2565b80156109725780601f1061094757610100808354040283529160200191610972565b820191906000526020600020905b81548152906001019060200180831161095557829003601f168201915b5050505050905090565b6000610987826118b4565b6109a4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109cb82610f35565b9050806001600160a01b0316836001600160a01b0316036109ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a3c57506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b15610a5a576040516367d9dca160e11b815260040160405180910390fd5b610a658383836118ed565b505050565b6008546001600160a01b03163314610ab25760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b601055565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600c610b0b8282612652565b5050565b826001600160a01b0381163314610b345760115460ff1615610b3457610b3433611956565b610b3f84848461199a565b50505050565b6008546001600160a01b03163314610b8d5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6000610ba26001546000546000199190030190565b600e5490915061ffff16610bb68483612728565b61ffff161115610c085760405162461bcd60e51b815260206004820152601360248201527f45786365646573206d617820737570706c792e0000000000000000000000000060448201526064016108c9565b610a65828461ffff166119a5565b6008546001600160a01b03163314610c5e5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600b610b0b8282612652565b6008546001600160a01b03163314610cb25760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610d175760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610d7e5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600260095403610dd05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c9565b60026009556000610de96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e33576040519150601f19603f3d011682016040523d82523d6000602084013e610e38565b606091505b5050905080610e4657600080fd5b506001600955565b826001600160a01b0381163314610e735760115460ff1615610e7357610e7333611956565b610b3f8484846119bf565b6008546001600160a01b03163314610ec65760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600d55565b6008546001600160a01b03163314610f135760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610f40826119da565b5192915050565b60006001600160a01b038216610f70576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b610fe86000611b03565b565b6008546001600160a01b031633146110325760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600a610b0b8282612652565b6060600380546108f9906125d2565b336001600160a01b038316036110765760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461112a5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600e805460ff909216620100000262ff000019909216919091179055565b3233146111975760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108c9565b601154610100900460ff16156111ef5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108c9565b600e546112019061ffff166001612728565b61ffff16816112196001546000546000199190030190565b611223919061274a565b1061125a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108c9565b600e546301000000900460ff168161127133610f47565b61127b919061274a565b11156112c95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108c9565b60105481600f546112da919061274a565b1115611342573481600d546112ef919061275d565b111561133d5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016108c9565b6114ad565b600e54640100000000900460ff168161135a33610f47565b611364919061274a565b111561142d573481600d54611379919061275d565b11156113c75760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016108c9565b600e5462010000900460ff1681111561133d5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016108c9565b600e54640100000000900460ff168111156114955760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016108c9565b80600f60008282546114a7919061274a565b90915550505b6114b733826119a5565b50565b6008546001600160a01b031633146115025760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6011805460ff1916911515919091179055565b836001600160a01b038116331461153a5760115460ff161561153a5761153a33611956565b61154685858585611b62565b5050505050565b6060611558826118b4565b6115ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108c9565b60115462010000900460ff16151560000361167157600c80546115ec906125d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611618906125d2565b80156116655780601f1061163a57610100808354040283529160200191611665565b820191906000526020600020905b81548152906001019060200180831161164857829003601f168201915b50505050509050919050565b600061167b611bad565b9050600081511161169b57604051806020016040528060008152506116c9565b806116a584611bbc565b600b6040516020016116b993929190612774565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117185760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600061172d6001546000546000199190030190565b9050600061173e8360ff871661275d565b600e5490915061ffff90811690611758908390851661274a565b11156117a65760405162461bcd60e51b815260206004820152601360248201527f45786365646573206d617820737570706c792e0000000000000000000000000060448201526064016108c9565b60005b838110156117f6576117e48585838181106117c6576117c6612814565b90506020020160208101906117db9190612444565b8760ff166119a5565b806117ee8161282a565b9150506117a9565b505050505050565b6008546001600160a01b031633146118465760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6001600160a01b0381166118ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c9565b6114b781611b03565b6000816001111580156118c8575060005482105b801561087f575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611992573d6000803e3d6000fd5b6000603a5250565b610a65838383611cdd565b610b0b828260405180602001604052806000815250611ee8565b610a6583838360405180602001604052806000815250611515565b60408051606081018252600080825260208201819052918101919091528180600111158015611a0a575060005481105b15611aea57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ae85780516001600160a01b031615611a7e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611ae3579392505050565b611a7e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b6d848484611cdd565b6001600160a01b0383163b15158015611b8f5750611b8d84848484611ef5565b155b15610b3f576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546108f9906125d2565b606081600003611be35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0d5780611bf78161282a565b9150611c069050600a83612859565b9150611be7565b60008167ffffffffffffffff811115611c2857611c286122d4565b6040519080825280601f01601f191660200182016040528015611c52576020820181803683370190505b5090505b8415611cd557611c6760018361286d565b9150611c74600a86612880565b611c7f90603061274a565b60f81b818381518110611c9457611c94612814565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611cce600a86612859565b9450611c56565b949350505050565b6000611ce8826119da565b9050836001600160a01b031681600001516001600160a01b031614611d1f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611d5b57506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b80611d76575033611d6b8461097c565b6001600160a01b0316145b905080611d9657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611dbd57604051633a954ecd60e21b815260040160405180910390fd5b611dc9600084876118ed565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e9f576000548214611e9f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611546565b610a658383836001611fe0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f2a903390899088908890600401612894565b6020604051808303816000875af1925050508015611f65575060408051601f3d908101601f19168201909252611f62918101906128d0565b60015b611fc3573d808015611f93576040519150601f19603f3d011682016040523d82523d6000602084013e611f98565b606091505b508051600003611fbb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661200957604051622e076360e81b815260040160405180910390fd5b8360000361202a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120dc57506001600160a01b0387163b15155b15612164575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212d6000888480600101955088611ef5565b61214a576040516368d2bf6b60e11b815260040160405180910390fd5b8082036120e257826000541461215f57600080fd5b6121a9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612165575b50600055611546565b6001600160e01b0319811681146114b757600080fd5b6000602082840312156121da57600080fd5b81356116c9816121b2565b803561ffff811681146121f757600080fd5b919050565b60006020828403121561220e57600080fd5b6116c9826121e5565b60005b8381101561223257818101518382015260200161221a565b50506000910152565b60008151808452612253816020860160208601612217565b601f01601f19169290920160200192915050565b6020815260006116c9602083018461223b565b60006020828403121561228c57600080fd5b5035919050565b80356001600160a01b03811681146121f757600080fd5b600080604083850312156122bd57600080fd5b6122c683612293565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612305576123056122d4565b604051601f8501601f19908116603f0116810190828211818310171561232d5761232d6122d4565b8160405280935085815286868601111561234657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561237257600080fd5b813567ffffffffffffffff81111561238957600080fd5b8201601f8101841361239a57600080fd5b611cd5848235602084016122ea565b6000806000606084860312156123be57600080fd5b6123c784612293565b92506123d560208501612293565b9150604084013590509250925092565b600080604083850312156123f857600080fd5b612401836121e5565b915061240f60208401612293565b90509250929050565b803560ff811681146121f757600080fd5b60006020828403121561243b57600080fd5b6116c982612418565b60006020828403121561245657600080fd5b6116c982612293565b803580151581146121f757600080fd5b6000806040838503121561248257600080fd5b61248b83612293565b915061240f6020840161245f565b6000602082840312156124ab57600080fd5b6116c98261245f565b600080600080608085870312156124ca57600080fd5b6124d385612293565b93506124e160208601612293565b925060408501359150606085013567ffffffffffffffff81111561250457600080fd5b8501601f8101871361251557600080fd5b612524878235602084016122ea565b91505092959194509250565b60008060006040848603121561254557600080fd5b61254e84612418565b9250602084013567ffffffffffffffff8082111561256b57600080fd5b818601915086601f83011261257f57600080fd5b81358181111561258e57600080fd5b8760208260051b85010111156125a357600080fd5b6020830194508093505050509250925092565b600080604083850312156125c957600080fd5b61240183612293565b600181811c908216806125e657607f821691505b60208210810361260657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a6557600081815260208120601f850160051c810160208610156126335750805b601f850160051c820191505b818110156117f65782815560010161263f565b815167ffffffffffffffff81111561266c5761266c6122d4565b6126808161267a84546125d2565b8461260c565b602080601f8311600181146126b5576000841561269d5750858301515b600019600386901b1c1916600185901b1785556117f6565b600085815260208120601f198616915b828110156126e4578886015182559484019460019091019084016126c5565b50858210156127025787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561274357612743612712565b5092915050565b8082018082111561087f5761087f612712565b808202811582820484141761087f5761087f612712565b6000845160206127878285838a01612217565b85519184019161279a8184848a01612217565b85549201916000906127ab816125d2565b600182811680156127c357600181146127d857612804565b60ff1984168752821515830287019450612804565b896000528560002060005b848110156127fc578154898201529083019087016127e3565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161283c5761283c612712565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261286857612868612843565b500490565b8181038181111561087f5761087f612712565b60008261288f5761288f612843565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128c6608083018461223b565b9695505050505050565b6000602082840312156128e257600080fd5b81516116c9816121b256fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220714d5d1d67bf2675870a260786340ea95775e7d753fdd8c27084b7155bed911f64736f6c63430008110033697066733a2f2f626166796265696371736a657474637a6f33343578676437373667367671656b627463366d3767377037363661647076326176676c7971786b61752f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007506f6e67657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504f4e4700000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102d15760003560e01c806370a0823111610179578063b2a91c08116100d6578063cffb6e201161008a578063f2fde38b11610064578063f2fde38b146107d7578063f8bf5172146107f7578063fb796e6c1461081957600080fd5b8063cffb6e2014610740578063d5abeb0114610760578063e985e9c51461078e57600080fd5b8063b88d4fde116100bb578063b88d4fde146106df578063bc951b91146106ff578063c87b56dd1461072057600080fd5b8063b2a91c08146106ac578063b7c0b8e8146106bf57600080fd5b806395d89b411161012d578063a22cb46511610112578063a22cb4651461064c578063a475b5dd1461066c578063aa0622901461068c57600080fd5b806395d89b4114610621578063982d669e1461063657600080fd5b80637ec4a6591161015e5780637ec4a659146105b15780638da5cb5b146105d157806394354fd0146105ef57600080fd5b806370a082311461057c578063715018a61461059c57600080fd5b806323b872dd116102325780633ccfd60b116101e65780634d9c1848116101c05780634d9c18481461051d5780635c975abb1461053d5780636352211e1461055c57600080fd5b80633ccfd60b146104c857806342842e0e146104dd57806344a0d68a146104fd57600080fd5b8063305ae77511610217578063305ae7751461047e57806337a66d851461049e5780633bd64968146104b357600080fd5b806323b872dd1461043e5780632f6f98e11461045e57600080fd5b80630a00ae831161028957806313faede61161026e57806313faede6146103e757806318160ddd1461040b578063193ad7b41461042857600080fd5b80630a00ae83146103a75780631067fcc7146103c757600080fd5b806306fdde03116102ba57806306fdde031461032d578063081812fc1461034f578063095ea7b31461038757600080fd5b806301ffc9a7146102d657806306421c2f1461030b575b600080fd5b3480156102e257600080fd5b506102f66102f13660046121c8565b610833565b60405190151581526020015b60405180910390f35b34801561031757600080fd5b5061032b6103263660046121fc565b610885565b005b34801561033957600080fd5b506103426108ea565b6040516103029190612267565b34801561035b57600080fd5b5061036f61036a36600461227a565b61097c565b6040516001600160a01b039091168152602001610302565b34801561039357600080fd5b5061032b6103a23660046122aa565b6109c0565b3480156103b357600080fd5b5061032b6103c236600461227a565b610a6a565b3480156103d357600080fd5b5061032b6103e2366004612360565b610ab7565b3480156103f357600080fd5b506103fd600d5481565b604051908152602001610302565b34801561041757600080fd5b5060015460005403600019016103fd565b34801561043457600080fd5b506103fd600f5481565b34801561044a57600080fd5b5061032b6104593660046123a9565b610b0f565b34801561046a57600080fd5b5061032b6104793660046123e5565b610b45565b34801561048a57600080fd5b5061032b610499366004612360565b610c16565b3480156104aa57600080fd5b5061032b610c6a565b3480156104bf57600080fd5b5061032b610ccf565b3480156104d457600080fd5b5061032b610d36565b3480156104e957600080fd5b5061032b6104f83660046123a9565b610e4e565b34801561050957600080fd5b5061032b61051836600461227a565b610e7e565b34801561052957600080fd5b5061032b610538366004612429565b610ecb565b34801561054957600080fd5b506011546102f690610100900460ff1681565b34801561056857600080fd5b5061036f61057736600461227a565b610f35565b34801561058857600080fd5b506103fd610597366004612444565b610f47565b3480156105a857600080fd5b5061032b610f96565b3480156105bd57600080fd5b5061032b6105cc366004612360565b610fea565b3480156105dd57600080fd5b506008546001600160a01b031661036f565b3480156105fb57600080fd5b50600e5461060f9062010000900460ff1681565b60405160ff9091168152602001610302565b34801561062d57600080fd5b5061034261103e565b34801561064257600080fd5b506103fd60105481565b34801561065857600080fd5b5061032b61066736600461246f565b61104d565b34801561067857600080fd5b506011546102f69062010000900460ff1681565b34801561069857600080fd5b5061032b6106a7366004612429565b6110e2565b61032b6106ba36600461227a565b611148565b3480156106cb57600080fd5b5061032b6106da366004612499565b6114ba565b3480156106eb57600080fd5b5061032b6106fa3660046124b4565b611515565b34801561070b57600080fd5b50600e5461060f906301000000900460ff1681565b34801561072c57600080fd5b5061034261073b36600461227a565b61154d565b34801561074c57600080fd5b5061032b61075b366004612530565b6116d0565b34801561076c57600080fd5b50600e5461077b9061ffff1681565b60405161ffff9091168152602001610302565b34801561079a57600080fd5b506102f66107a93660046125b6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107e357600080fd5b5061032b6107f2366004612444565b6117fe565b34801561080357600080fd5b50600e5461060f90640100000000900460ff1681565b34801561082557600080fd5b506011546102f69060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061086457506001600160e01b03198216635b5e139f60e01b145b8061087f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108d25760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064015b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b6060600280546108f9906125d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610925906125d2565b80156109725780601f1061094757610100808354040283529160200191610972565b820191906000526020600020905b81548152906001019060200180831161095557829003601f168201915b5050505050905090565b6000610987826118b4565b6109a4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109cb82610f35565b9050806001600160a01b0316836001600160a01b0316036109ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a3c57506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b15610a5a576040516367d9dca160e11b815260040160405180910390fd5b610a658383836118ed565b505050565b6008546001600160a01b03163314610ab25760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b601055565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600c610b0b8282612652565b5050565b826001600160a01b0381163314610b345760115460ff1615610b3457610b3433611956565b610b3f84848461199a565b50505050565b6008546001600160a01b03163314610b8d5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6000610ba26001546000546000199190030190565b600e5490915061ffff16610bb68483612728565b61ffff161115610c085760405162461bcd60e51b815260206004820152601360248201527f45786365646573206d617820737570706c792e0000000000000000000000000060448201526064016108c9565b610a65828461ffff166119a5565b6008546001600160a01b03163314610c5e5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600b610b0b8282612652565b6008546001600160a01b03163314610cb25760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610d175760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610d7e5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600260095403610dd05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108c9565b60026009556000610de96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e33576040519150601f19603f3d011682016040523d82523d6000602084013e610e38565b606091505b5050905080610e4657600080fd5b506001600955565b826001600160a01b0381163314610e735760115460ff1615610e7357610e7333611956565b610b3f8484846119bf565b6008546001600160a01b03163314610ec65760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600d55565b6008546001600160a01b03163314610f135760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610f40826119da565b5192915050565b60006001600160a01b038216610f70576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b610fe86000611b03565b565b6008546001600160a01b031633146110325760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600a610b0b8282612652565b6060600380546108f9906125d2565b336001600160a01b038316036110765760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461112a5760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600e805460ff909216620100000262ff000019909216919091179055565b3233146111975760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108c9565b601154610100900460ff16156111ef5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108c9565b600e546112019061ffff166001612728565b61ffff16816112196001546000546000199190030190565b611223919061274a565b1061125a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108c9565b600e546301000000900460ff168161127133610f47565b61127b919061274a565b11156112c95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108c9565b60105481600f546112da919061274a565b1115611342573481600d546112ef919061275d565b111561133d5760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016108c9565b6114ad565b600e54640100000000900460ff168161135a33610f47565b611364919061274a565b111561142d573481600d54611379919061275d565b11156113c75760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016108c9565b600e5462010000900460ff1681111561133d5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016108c9565b600e54640100000000900460ff168111156114955760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016108c9565b80600f60008282546114a7919061274a565b90915550505b6114b733826119a5565b50565b6008546001600160a01b031633146115025760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6011805460ff1916911515919091179055565b836001600160a01b038116331461153a5760115460ff161561153a5761153a33611956565b61154685858585611b62565b5050505050565b6060611558826118b4565b6115ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108c9565b60115462010000900460ff16151560000361167157600c80546115ec906125d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611618906125d2565b80156116655780601f1061163a57610100808354040283529160200191611665565b820191906000526020600020905b81548152906001019060200180831161164857829003601f168201915b50505050509050919050565b600061167b611bad565b9050600081511161169b57604051806020016040528060008152506116c9565b806116a584611bbc565b600b6040516020016116b993929190612774565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117185760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b600061172d6001546000546000199190030190565b9050600061173e8360ff871661275d565b600e5490915061ffff90811690611758908390851661274a565b11156117a65760405162461bcd60e51b815260206004820152601360248201527f45786365646573206d617820737570706c792e0000000000000000000000000060448201526064016108c9565b60005b838110156117f6576117e48585838181106117c6576117c6612814565b90506020020160208101906117db9190612444565b8760ff166119a5565b806117ee8161282a565b9150506117a9565b505050505050565b6008546001600160a01b031633146118465760405162461bcd60e51b815260206004820181905260248201526000805160206128ee83398151915260448201526064016108c9565b6001600160a01b0381166118ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c9565b6114b781611b03565b6000816001111580156118c8575060005482105b801561087f575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611992573d6000803e3d6000fd5b6000603a5250565b610a65838383611cdd565b610b0b828260405180602001604052806000815250611ee8565b610a6583838360405180602001604052806000815250611515565b60408051606081018252600080825260208201819052918101919091528180600111158015611a0a575060005481105b15611aea57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ae85780516001600160a01b031615611a7e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611ae3579392505050565b611a7e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b6d848484611cdd565b6001600160a01b0383163b15158015611b8f5750611b8d84848484611ef5565b155b15610b3f576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546108f9906125d2565b606081600003611be35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0d5780611bf78161282a565b9150611c069050600a83612859565b9150611be7565b60008167ffffffffffffffff811115611c2857611c286122d4565b6040519080825280601f01601f191660200182016040528015611c52576020820181803683370190505b5090505b8415611cd557611c6760018361286d565b9150611c74600a86612880565b611c7f90603061274a565b60f81b818381518110611c9457611c94612814565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611cce600a86612859565b9450611c56565b949350505050565b6000611ce8826119da565b9050836001600160a01b031681600001516001600160a01b031614611d1f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611d5b57506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b80611d76575033611d6b8461097c565b6001600160a01b0316145b905080611d9657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611dbd57604051633a954ecd60e21b815260040160405180910390fd5b611dc9600084876118ed565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e9f576000548214611e9f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611546565b610a658383836001611fe0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f2a903390899088908890600401612894565b6020604051808303816000875af1925050508015611f65575060408051601f3d908101601f19168201909252611f62918101906128d0565b60015b611fc3573d808015611f93576040519150601f19603f3d011682016040523d82523d6000602084013e611f98565b606091505b508051600003611fbb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661200957604051622e076360e81b815260040160405180910390fd5b8360000361202a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120dc57506001600160a01b0387163b15155b15612164575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212d6000888480600101955088611ef5565b61214a576040516368d2bf6b60e11b815260040160405180910390fd5b8082036120e257826000541461215f57600080fd5b6121a9565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612165575b50600055611546565b6001600160e01b0319811681146114b757600080fd5b6000602082840312156121da57600080fd5b81356116c9816121b2565b803561ffff811681146121f757600080fd5b919050565b60006020828403121561220e57600080fd5b6116c9826121e5565b60005b8381101561223257818101518382015260200161221a565b50506000910152565b60008151808452612253816020860160208601612217565b601f01601f19169290920160200192915050565b6020815260006116c9602083018461223b565b60006020828403121561228c57600080fd5b5035919050565b80356001600160a01b03811681146121f757600080fd5b600080604083850312156122bd57600080fd5b6122c683612293565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612305576123056122d4565b604051601f8501601f19908116603f0116810190828211818310171561232d5761232d6122d4565b8160405280935085815286868601111561234657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561237257600080fd5b813567ffffffffffffffff81111561238957600080fd5b8201601f8101841361239a57600080fd5b611cd5848235602084016122ea565b6000806000606084860312156123be57600080fd5b6123c784612293565b92506123d560208501612293565b9150604084013590509250925092565b600080604083850312156123f857600080fd5b612401836121e5565b915061240f60208401612293565b90509250929050565b803560ff811681146121f757600080fd5b60006020828403121561243b57600080fd5b6116c982612418565b60006020828403121561245657600080fd5b6116c982612293565b803580151581146121f757600080fd5b6000806040838503121561248257600080fd5b61248b83612293565b915061240f6020840161245f565b6000602082840312156124ab57600080fd5b6116c98261245f565b600080600080608085870312156124ca57600080fd5b6124d385612293565b93506124e160208601612293565b925060408501359150606085013567ffffffffffffffff81111561250457600080fd5b8501601f8101871361251557600080fd5b612524878235602084016122ea565b91505092959194509250565b60008060006040848603121561254557600080fd5b61254e84612418565b9250602084013567ffffffffffffffff8082111561256b57600080fd5b818601915086601f83011261257f57600080fd5b81358181111561258e57600080fd5b8760208260051b85010111156125a357600080fd5b6020830194508093505050509250925092565b600080604083850312156125c957600080fd5b61240183612293565b600181811c908216806125e657607f821691505b60208210810361260657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a6557600081815260208120601f850160051c810160208610156126335750805b601f850160051c820191505b818110156117f65782815560010161263f565b815167ffffffffffffffff81111561266c5761266c6122d4565b6126808161267a84546125d2565b8461260c565b602080601f8311600181146126b5576000841561269d5750858301515b600019600386901b1c1916600185901b1785556117f6565b600085815260208120601f198616915b828110156126e4578886015182559484019460019091019084016126c5565b50858210156127025787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561274357612743612712565b5092915050565b8082018082111561087f5761087f612712565b808202811582820484141761087f5761087f612712565b6000845160206127878285838a01612217565b85519184019161279a8184848a01612217565b85549201916000906127ab816125d2565b600182811680156127c357600181146127d857612804565b60ff1984168752821515830287019450612804565b896000528560002060005b848110156127fc578154898201529083019087016127e3565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161283c5761283c612712565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261286857612868612843565b500490565b8181038181111561087f5761087f612712565b60008261288f5761288f612843565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128c6608083018461223b565b9695505050505050565b6000602082840312156128e257600080fd5b81516116c9816121b256fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220714d5d1d67bf2675870a260786340ea95775e7d753fdd8c27084b7155bed911f64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007506f6e67657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504f4e4700000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Pongers
Arg [1] : _tokenSymbol (string): PONG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 506f6e6765727300000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 504f4e4700000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52776:6063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:305;;;;;;;;;;-1:-1:-1;27339:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27339:305:0;;;;;;;;55881:97;;;;;;;;;;-1:-1:-1;55881:97:0;;;;;:::i;:::-;;:::i;:::-;;30452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31955:204::-;;;;;;;;;;-1:-1:-1;31955:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:55:1;;;2032:74;;2020:2;2005:18;31955:204:0;1886:226:1;31518:371:0;;;;;;;;;;-1:-1:-1;31518:371:0;;;;;:::i;:::-;;:::i;56958:129::-;;;;;;;;;;-1:-1:-1;56958:129:0;;;;;:::i;:::-;;:::i;56854:102::-;;;;;;;;;;-1:-1:-1;56854:102:0;;;;;:::i;:::-;;:::i;53071:33::-;;;;;;;;;;;;;;;;;;;3948:25:1;;;3936:2;3921:18;53071:33:0;3802:177:1;26588:303:0;;;;;;;;;;-1:-1:-1;26445:1:0;26842:12;26632:7;26826:13;:28;-1:-1:-1;;26826:46:0;26588:303;;53292:39;;;;;;;;;;;;;;;;58031:159;;;;;;;;;;-1:-1:-1;58031:159:0;;;;;:::i;:::-;;:::i;55066:326::-;;;;;;;;;;-1:-1:-1;55066:326:0;;;;;:::i;:::-;;:::i;56637:102::-;;;;;;;;;;-1:-1:-1;56637:102:0;;;;;:::i;:::-;;:::i;57093:71::-;;;;;;;;;;;;;:::i;57251:70::-;;;;;;;;;;;;;:::i;57445:475::-;;;;;;;;;;;;;:::i;58196:167::-;;;;;;;;;;-1:-1:-1;58196:167:0;;;;;:::i;:::-;;:::i;57170:76::-;;;;;;;;;;-1:-1:-1;57170:76:0;;;;;:::i;:::-;;:::i;56490:134::-;;;;;;;;;;-1:-1:-1;56490:134:0;;;;;:::i;:::-;;:::i;53491:25::-;;;;;;;;;;-1:-1:-1;53491:25:0;;;;;;;;;;;30260:125;;;;;;;;;;-1:-1:-1;30260:125:0;;;;;:::i;:::-;;:::i;27708:206::-;;;;;;;;;;-1:-1:-1;27708:206:0;;;;;:::i;:::-;;:::i;46161:103::-;;;;;;;;;;;;;:::i;56747:102::-;;;;;;;;;;-1:-1:-1;56747:102:0;;;;;:::i;:::-;;:::i;45509:87::-;;;;;;;;;;-1:-1:-1;45582:6:0;;-1:-1:-1;;;;;45582:6:0;45509:87;;53153:36;;;;;;;;;;-1:-1:-1;53153:36:0;;;;;;;;;;;;;;5291:4:1;5279:17;;;5261:36;;5249:2;5234:18;53153:36:0;5119:184:1;30621:104:0;;;;;;;;;;;;;:::i;53339:37::-;;;;;;;;;;;;;;;;32231:287;;;;;;;;;;-1:-1:-1;32231:287:0;;;;;:::i;:::-;;:::i;53521:25::-;;;;;;;;;;-1:-1:-1;53521:25:0;;;;;;;;;;;57327:107;;;;;;;;;;-1:-1:-1;57327:107:0;;;;;:::i;:::-;;:::i;53916:1144::-;;;;;;:::i;:::-;;:::i;58586:117::-;;;;;;;;;;-1:-1:-1;58586:117:0;;;;;:::i;:::-;;:::i;58369:210::-;;;;;;;;;;-1:-1:-1;58369:210:0;;;;;:::i;:::-;;:::i;53195:40::-;;;;;;;;;;-1:-1:-1;53195:40:0;;;;;;;;;;;55993:490;;;;;;;;;;-1:-1:-1;55993:490:0;;;;;:::i;:::-;;:::i;55398:472::-;;;;;;;;;;-1:-1:-1;55398:472:0;;;;;:::i;:::-;;:::i;53118:30::-;;;;;;;;;;-1:-1:-1;53118:30:0;;;;;;;;;;;7453:6:1;7441:19;;;7423:38;;7411:2;7396:18;53118:30:0;7279:188:1;32589:164:0;;;;;;;;;;-1:-1:-1;32589:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32710:25:0;;;32686:4;32710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32589:164;46419:201;;;;;;;;;;-1:-1:-1;46419:201:0;;;;;:::i;:::-;;:::i;53242:43::-;;;;;;;;;;-1:-1:-1;53242:43:0;;;;;;;;;;;53384:36;;;;;;;;;;-1:-1:-1;53384:36:0;;;;;;;;27339:305;27441:4;-1:-1:-1;;;;;;27478:40:0;;-1:-1:-1;;;27478:40:0;;:105;;-1:-1:-1;;;;;;;27535:48:0;;-1:-1:-1;;;27535:48:0;27478:105;:158;;;-1:-1:-1;;;;;;;;;;17373:40:0;;;27600:36;27458:178;27339:305;-1:-1:-1;;27339:305:0:o;55881:97::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;;;;;;;;;55950:9:::1;:22:::0;;-1:-1:-1;;55950:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;55881:97::o;30452:100::-;30506:13;30539:5;30532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30452:100;:::o;31955:204::-;32023:7;32048:16;32056:7;32048;:16::i;:::-;32043:64;;32073:34;;-1:-1:-1;;;32073:34:0;;;;;;;;;;;32043:64;-1:-1:-1;32127:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32127:24:0;;31955:204::o;31518:371::-;31591:13;31607:24;31623:7;31607:15;:24::i;:::-;31591:40;;31652:5;-1:-1:-1;;;;;31646:11:0;:2;-1:-1:-1;;;;;31646:11:0;;31642:48;;31666:24;;-1:-1:-1;;;31666:24:0;;;;;;;;;;;31642:48;5814:10;-1:-1:-1;;;;;31707:21:0;;;;;;:63;;-1:-1:-1;;;;;;32710:25:0;;32686:4;32710:25;;;:18;:25;;;;;;;;5814:10;32710:35;;;;;;;;;;31732:38;31707:63;31703:138;;;31794:35;;-1:-1:-1;;;31794:35:0;;;;;;;;;;;31703:138;31853:28;31862:2;31866:7;31875:5;31853:8;:28::i;:::-;31580:309;31518:371;;:::o;56958:129::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;57051:14:::1;:30:::0;56958:129::o;56854:102::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;56928:9:::1;:22;56940:10:::0;56928:9;:22:::1;:::i;:::-;;56854:102:::0;:::o;58031:159::-;58132:4;-1:-1:-1;;;;;50207:18:0;;50215:10;50207:18;50203:184;;58804:24;;;;50299:61;;;50332:28;50349:10;50332:16;:28::i;:::-;58145:39:::1;58166:4;58172:2;58176:7;58145:20;:39::i;:::-;58031:159:::0;;;;:::o;55066:326::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;55149:18:::1;55177:13;26445:1:::0;26842:12;26632:7;26826:13;-1:-1:-1;;26826:28:0;;;:46;;26588:303;55177:13:::1;55235:9;::::0;55149:42;;-1:-1:-1;55235:9:0::1;;55206:25;55220:11:::0;55149:42;55206:25:::1;:::i;:::-;:38;;;;55198:70;;;::::0;-1:-1:-1;;;55198:70:0;;11194:2:1;55198:70:0::1;::::0;::::1;11176:21:1::0;11233:2;11213:18;;;11206:30;11272:21;11252:18;;;11245:49;11311:18;;55198:70:0::1;10992:343:1::0;55198:70:0::1;55276:34;55286:9;55298:11;55276:34;;:9;:34::i;56637:102::-:0;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;56711:9:::1;:22;56723:10:::0;56711:9;:22:::1;:::i;57093:71::-:0;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;57150:6:::1;::::0;;-1:-1:-1;;57140:16:0;::::1;57150:6;::::0;;;::::1;;;57149:7;57140:16:::0;;::::1;;::::0;;57093:71::o;57251:70::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;57310:6:::1;::::0;;-1:-1:-1;;57300:16:0;::::1;57310:6:::0;;;;::::1;;;57309:7;57300:16:::0;;::::1;;::::0;;57251:70::o;57445:475::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;1986:1:::1;2584:7;;:19:::0;2576:63:::1;;;::::0;-1:-1:-1;;;2576:63:0;;11542:2:1;2576:63:0::1;::::0;::::1;11524:21:1::0;11581:2;11561:18;;;11554:30;11620:33;11600:18;;;11593:61;11671:18;;2576:63:0::1;11340:355:1::0;2576:63:0::1;1986:1;2717:7;:18:::0;57742:7:::2;57763;45582:6:::0;;-1:-1:-1;;;;;45582:6:0;;45509:87;57763:7:::2;-1:-1:-1::0;;;;;57755:21:0::2;57784;57755:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57741:69;;;57825:2;57817:11;;;::::0;::::2;;-1:-1:-1::0;1942:1:0::1;2896:7;:22:::0;57445:475::o;58196:167::-;58301:4;-1:-1:-1;;;;;50207:18:0;;50215:10;50207:18;50203:184;;58804:24;;;;50299:61;;;50332:28;50349:10;50332:16;:28::i;:::-;58314:43:::1;58339:4;58345:2;58349:7;58314:24;:43::i;57170:76::-:0;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;57226:4:::1;:12:::0;57170:76::o;56490:134::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;56564:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;56564:35:0;;::::1;::::0;;;::::1;::::0;;56490:134::o;30260:125::-;30324:7;30351:21;30364:7;30351:12;:21::i;:::-;:26;;30260:125;-1:-1:-1;;30260:125:0:o;27708:206::-;27772:7;-1:-1:-1;;;;;27796:19:0;;27792:60;;27824:28;;-1:-1:-1;;;27824:28:0;;;;;;;;;;;27792:60;-1:-1:-1;;;;;;27878:19:0;;;;;:12;:19;;;;;:27;;;;27708:206::o;46161:103::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;46226:30:::1;46253:1;46226:18;:30::i;:::-;46161:103::o:0;56747:102::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;56821:9:::1;:22;56833:10:::0;56821:9;:22:::1;:::i;30621:104::-:0;30677:13;30710:7;30703:14;;;;;:::i;32231:287::-;5814:10;-1:-1:-1;;;;;32330:24:0;;;32326:54;;32363:17;;-1:-1:-1;;;32363:17:0;;;;;;;;;;;32326:54;5814:10;32393:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32393:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32393:53:0;;;;;;;;;;32462:48;;540:41:1;;;32393:42:0;;5814:10;32462:48;;513:18:1;32462:48:0;;;;;;;32231:287;;:::o;57327:107::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;57399:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;57399:27:0;;::::1;::::0;;;::::1;::::0;;57327:107::o;53916:1144::-;53830:9;53843:10;53830:23;53822:66;;;;-1:-1:-1;;;53822:66:0;;12112:2:1;53822:66:0;;;12094:21:1;12151:2;12131:18;;;12124:30;12190:32;12170:18;;;12163:60;12240:18;;53822:66:0;11910:354:1;53822:66:0;54025:6:::1;::::0;::::1;::::0;::::1;;;54024:7;54016:43;;;::::0;-1:-1:-1;;;54016:43:0;;12471:2:1;54016:43:0::1;::::0;::::1;12453:21:1::0;12510:2;12490:18;;;12483:30;12549:25;12529:18;;;12522:53;12592:18;;54016:43:0::1;12269:347:1::0;54016:43:0::1;54104:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;54074:43;;54090:11;54074:13;26445:1:::0;26842:12;26632:7;26826:13;-1:-1:-1;;26826:28:0;;;:46;;26588:303;54074:13:::1;:27;;;;:::i;:::-;:43;54066:63;;;::::0;-1:-1:-1;;;54066:63:0;;12953:2:1;54066:63:0::1;::::0;::::1;12935:21:1::0;12992:1;12972:18;;;12965:29;-1:-1:-1;;;13010:18:1;;;13003:37;13057:18;;54066:63:0::1;12751:330:1::0;54066:63:0::1;54185:22;::::0;;;::::1;;;54170:11:::0;54146:21:::1;54156:10;54146:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;54137:103;;;::::0;-1:-1:-1;;;54137:103:0;;13288:2:1;54137:103:0::1;::::0;::::1;13270:21:1::0;13327:2;13307:18;;;13300:30;13366;13346:18;;;13339:58;13414:18;;54137:103:0::1;13086:352:1::0;54137:103:0::1;54295:14;;54281:11;54258:20;;:34;;;;:::i;:::-;:51;54255:759;;;54367:9;54351:11;54344:4;;:18;;;;:::i;:::-;54343:33;;54321:107;;;::::0;-1:-1:-1;;;54321:107:0;;13818:2:1;54321:107:0::1;::::0;::::1;13800:21:1::0;13857:2;13837:18;;;13830:30;13896:26;13876:18;;;13869:54;13940:18;;54321:107:0::1;13616:348:1::0;54321:107:0::1;54255:759;;;54501:26;::::0;;;::::1;;;54487:11:::0;54463:21:::1;54473:10;54463:9;:21::i;:::-;:35;;;;:::i;:::-;:64;54459:548;;;54586:9;54570:11;54563:4;;:18;;;;:::i;:::-;54562:33;;54540:107;;;::::0;-1:-1:-1;;;54540:107:0;;13818:2:1;54540:107:0::1;::::0;::::1;13800:21:1::0;13857:2;13837:18;;;13830:30;13896:26;13876:18;;;13869:54;13940:18;;54540:107:0::1;13616:348:1::0;54540:107:0::1;54695:18;::::0;;;::::1;;;54680:33:::0;::::1;;54658:117;;;::::0;-1:-1:-1;;;54658:117:0;;14171:2:1;54658:117:0::1;::::0;::::1;14153:21:1::0;14210:2;14190:18;;;14183:30;14249:34;14229:18;;;14222:62;-1:-1:-1;;;14300:18:1;;;14293:32;14342:19;;54658:117:0::1;13969:398:1::0;54459:548:0::1;54849:26;::::0;;;::::1;;;54834:41:::0;::::1;;54808:137;;;::::0;-1:-1:-1;;;54808:137:0;;14171:2:1;54808:137:0::1;::::0;::::1;14153:21:1::0;14210:2;14190:18;;;14183:30;14249:34;14229:18;;;14222:62;-1:-1:-1;;;14300:18:1;;;14293:32;14342:19;;54808:137:0::1;13969:398:1::0;54808:137:0::1;54984:11;54960:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;54459:548:0::1;55020:34;55030:10;55042:11;55020:9;:34::i;:::-;53916:1144:::0;:::o;58586:117::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;58663:24:::1;:32:::0;;-1:-1:-1;;58663:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58586:117::o;58369:210::-;58508:4;-1:-1:-1;;;;;50207:18:0;;50215:10;50207:18;50203:184;;58804:24;;;;50299:61;;;50332:28;50349:10;50332:16;:28::i;:::-;58524:49:::1;58549:4;58555:2;58559:7;58568:4;58524:24;:49::i;:::-;58369:210:::0;;;;;:::o;55993:490::-;56092:13;56133:17;56141:8;56133:7;:17::i;:::-;56117:98;;;;-1:-1:-1;;;56117:98:0;;14574:2:1;56117:98:0;;;14556:21:1;14613:2;14593:18;;;14586:30;14652:34;14632:18;;;14625:62;14723:17;14703:18;;;14696:45;14758:19;;56117:98:0;14372:411:1;56117:98:0;56233:6;;;;;;;:15;;56243:5;56233:15;56228:50;;56265:9;56258:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55993:490;;;:::o;56228:50::-;56292:28;56323:10;:8;:10::i;:::-;56292:41;;56378:1;56353:14;56347:28;:32;:130;;;;;;;;;;;;;;;;;56415:14;56431:19;:8;:17;:19::i;:::-;56452:9;56398:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56347:130;56340:137;55993:490;-1:-1:-1;;;55993:490:0:o;55398:472::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;55497:18:::1;55525:13;26445:1:::0;26842:12;26632:7;26826:13;-1:-1:-1;;26826:28:0;;;:46;;26588:303;55525:13:::1;55497:42:::0;-1:-1:-1;55547:16:0::1;55568:36;55588:9:::0;55568:36:::1;::::0;::::1;;:::i;:::-;55648:9;::::0;55547:57;;-1:-1:-1;55648:9:0::1;::::0;;::::1;::::0;55619:25:::1;::::0;55547:57;;55619:25;::::1;;:::i;:::-;:38;;55611:70;;;::::0;-1:-1:-1;;;55611:70:0;;11194:2:1;55611:70:0::1;::::0;::::1;11176:21:1::0;11233:2;11213:18;;;11206:30;11272:21;11252:18;;;11245:49;11311:18;;55611:70:0::1;10992:343:1::0;55611:70:0::1;55694:9;55689:116;55709:20:::0;;::::1;55689:116;;;55751:42;55761:9;;55771:1;55761:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;55775:17;55751:42;;:9;:42::i;:::-;55731:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55689:116;;;-1:-1:-1::0;;;;;;55398:472:0:o;46419:201::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;7939:2:1;45721:69:0;;;7921:21:1;;;7958:18;;;7951:30;-1:-1:-1;;;;;;;;;;;7997:18:1;;;7990:62;8069:18;;45721:69:0;7737:356:1;45721:69:0;-1:-1:-1;;;;;46508:22:0;::::1;46500:73;;;::::0;-1:-1:-1;;;46500:73:0;;16523:2:1;46500:73:0::1;::::0;::::1;16505:21:1::0;16562:2;16542:18;;;16535:30;16601:34;16581:18;;;16574:62;-1:-1:-1;;;16652:18:1;;;16645:36;16698:19;;46500:73:0::1;16321:402:1::0;46500:73:0::1;46584:28;46603:8;46584:18;:28::i;33941:187::-:0;33998:4;34041:7;26445:1;34022:26;;:53;;;;;34062:13;;34052:7;:23;34022:53;:98;;;;-1:-1:-1;;34093:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34093:27:0;;;;34092:28;;33941:187::o;42111:196::-;42226:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;42226:29:0;-1:-1:-1;;;;;42226:29:0;;;;;;;;;42271:28;;42226:24;;42271:28;;;;;;;42111:196;;;:::o;50805:1359::-;51198:22;51192:4;51185:36;51291:9;51285:4;51278:23;51366:8;51360:4;51353:22;51543:4;51537;51531;51525;51498:25;51491:5;51480:68;51470:274;;51664:16;51658:4;51652;51637:44;51712:16;51706:4;51699:30;51470:274;52144:1;52138:4;52131:15;50805:1359;:::o;32820:170::-;32954:28;32964:4;32970:2;32974:7;32954:9;:28::i;34136:104::-;34205:27;34215:2;34219:8;34205:27;;;;;;;;;;;;:9;:27::i;33061:185::-;33199:39;33216:4;33222:2;33226:7;33199:39;;;;;;;;;;;;:16;:39::i;29089:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29200:7:0;;26445:1;29249:23;;:47;;;;;29283:13;;29276:4;:20;29249:47;29245:886;;;29317:31;29351:17;;;:11;:17;;;;;;;;;29317:51;;;;;;;;;-1:-1:-1;;;;;29317:51:0;;;;-1:-1:-1;;;29317:51:0;;;;;;;;;;;-1:-1:-1;;;29317:51:0;;;;;;;;;;;;;;29387:729;;29437:14;;-1:-1:-1;;;;;29437:28:0;;29433:101;;29501:9;29089:1109;-1:-1:-1;;;29089:1109:0:o;29433:101::-;-1:-1:-1;;;29876:6:0;29921:17;;;;:11;:17;;;;;;;;;29909:29;;;;;;;;;-1:-1:-1;;;;;29909:29:0;;;;;-1:-1:-1;;;29909:29:0;;;;;;;;;;;-1:-1:-1;;;29909:29:0;;;;;;;;;;;;;29969:28;29965:109;;30037:9;29089:1109;-1:-1:-1;;;29089:1109:0:o;29965:109::-;29836:261;;;29298:833;29245:886;30159:31;;-1:-1:-1;;;30159:31:0;;;;;;;;;;;46780:191;46873:6;;;-1:-1:-1;;;;;46890:17:0;;;-1:-1:-1;;46890:17:0;;;;;;;46923:40;;46873:6;;;46890:17;46873:6;;46923:40;;46854:16;;46923:40;46843:128;46780:191;:::o;33317:369::-;33484:28;33494:4;33500:2;33504:7;33484:9;:28::i;:::-;-1:-1:-1;;;;;33527:13:0;;7476:19;:23;;33527:76;;;;;33547:56;33578:4;33584:2;33588:7;33597:5;33547:30;:56::i;:::-;33546:57;33527:76;33523:156;;;33627:40;;-1:-1:-1;;;33627:40:0;;;;;;;;;;;57928:97;57981:13;58010:9;58003:16;;;;;:::i;3296:723::-;3352:13;3573:5;3582:1;3573:10;3569:53;;-1:-1:-1;;3600:10:0;;;;;;;;;;;;-1:-1:-1;;;3600:10:0;;;;;3296:723::o;3569:53::-;3647:5;3632:12;3688:78;3695:9;;3688:78;;3721:8;;;;:::i;:::-;;-1:-1:-1;3744:10:0;;-1:-1:-1;3752:2:0;3744:10;;:::i;:::-;;;3688:78;;;3776:19;3808:6;3798:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3798:17:0;;3776:39;;3826:154;3833:10;;3826:154;;3860:11;3870:1;3860:11;;:::i;:::-;;-1:-1:-1;3929:10:0;3937:2;3929:5;:10;:::i;:::-;3916:24;;:2;:24;:::i;:::-;3903:39;;3886:6;3893;3886:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3957:11:0;3966:2;3957:11;;:::i;:::-;;;3826:154;;;4004:6;3296:723;-1:-1:-1;;;;3296:723:0:o;37054:2130::-;37169:35;37207:21;37220:7;37207:12;:21::i;:::-;37169:59;;37267:4;-1:-1:-1;;;;;37245:26:0;:13;:18;;;-1:-1:-1;;;;;37245:26:0;;37241:67;;37280:28;;-1:-1:-1;;;37280:28:0;;;;;;;;;;;37241:67;37321:22;5814:10;-1:-1:-1;;;;;37347:20:0;;;;:73;;-1:-1:-1;;;;;;32710:25:0;;32686:4;32710:25;;;:18;:25;;;;;;;;5814:10;32710:35;;;;;;;;;;37384:36;37347:126;;;-1:-1:-1;5814:10:0;37437:20;37449:7;37437:11;:20::i;:::-;-1:-1:-1;;;;;37437:36:0;;37347:126;37321:153;;37492:17;37487:66;;37518:35;;-1:-1:-1;;;37518:35:0;;;;;;;;;;;37487:66;-1:-1:-1;;;;;37568:16:0;;37564:52;;37593:23;;-1:-1:-1;;;37593:23:0;;;;;;;;;;;37564:52;37737:35;37754:1;37758:7;37767:4;37737:8;:35::i;:::-;-1:-1:-1;;;;;38068:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38068:31:0;;;;;;;-1:-1:-1;;38068:31:0;;;;;;;38114:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38114:29:0;;;;;;;;;;;38194:20;;;:11;:20;;;;;;38229:18;;-1:-1:-1;;;;;;38262:49:0;;;;-1:-1:-1;;;38295:15:0;38262:49;;;;;;;;;;38585:11;;38645:24;;;;;38688:13;;38194:20;;38645:24;;38688:13;38684:384;;38898:13;;38883:11;:28;38879:174;;38936:20;;39005:28;;;;38979:54;;-1:-1:-1;;;38979:54:0;-1:-1:-1;;;;;;38979:54:0;;;-1:-1:-1;;;;;38936:20:0;;38979:54;;;;38879:174;38043:1036;;;39115:7;39111:2;-1:-1:-1;;;;;39096:27:0;39105:4;-1:-1:-1;;;;;39096:27:0;;;;;;;;;;;39134:42;58031:159;34603:163;34726:32;34732:2;34736:8;34746:5;34753:4;34726:5;:32::i;42799:667::-;42983:72;;-1:-1:-1;;;42983:72:0;;42962:4;;-1:-1:-1;;;;;42983:36:0;;;;;:72;;5814:10;;43034:4;;43040:7;;43049:5;;42983:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42983:72:0;;;;;;;;-1:-1:-1;;42983:72:0;;;;;;;;;;;;:::i;:::-;;;42979:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43217:6;:13;43234:1;43217:18;43213:235;;43263:40;;-1:-1:-1;;;43263:40:0;;;;;;;;;;;43213:235;43406:6;43400:13;43391:6;43387:2;43383:15;43376:38;42979:480;-1:-1:-1;;;;;;43102:55:0;-1:-1:-1;;;43102:55:0;;-1:-1:-1;42799:667:0;;;;;;:::o;35025:1775::-;35164:20;35187:13;-1:-1:-1;;;;;35215:16:0;;35211:48;;35240:19;;-1:-1:-1;;;35240:19:0;;;;;;;;;;;35211:48;35274:8;35286:1;35274:13;35270:44;;35296:18;;-1:-1:-1;;;35296:18:0;;;;;;;;;;;35270:44;-1:-1:-1;;;;;35665:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35724:49:0;;35665:44;;;;;;;;35724:49;;;;-1:-1:-1;;35665:44:0;;;;;;35724:49;;;;;;;;;;;;;;;;35790:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35840:66:0;;;;-1:-1:-1;;;35890:15:0;35840:66;;;;;;;;;;35790:25;35987:23;;;36031:4;:23;;;;-1:-1:-1;;;;;;36039:13:0;;7476:19;:23;;36039:15;36027:641;;;36075:314;36106:38;;36131:12;;-1:-1:-1;;;;;36106:38:0;;;36123:1;;36106:38;;36123:1;;36106:38;36172:69;36211:1;36215:2;36219:14;;;;;;36235:5;36172:30;:69::i;:::-;36167:174;;36277:40;;-1:-1:-1;;;36277:40:0;;;;;;;;;;;36167:174;36384:3;36368:12;:19;36075:314;;36470:12;36453:13;;:29;36449:43;;36484:8;;;36449:43;36027:641;;;36533:120;36564:40;;36589:14;;;;;-1:-1:-1;;;;;36564:40:0;;;36581:1;;36564:40;;36581:1;;36564:40;36648:3;36632:12;:19;36533:120;;36027:641;-1:-1:-1;36682:13:0;:28;36732:60;58031:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2117:196::-;2185:20;;-1:-1:-1;;;;;2234:54:1;;2224:65;;2214:93;;2303:1;2300;2293:12;2318:254;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2318:254:1:o;2577:127::-;2638:10;2633:3;2629:20;2626:1;2619:31;2669:4;2666:1;2659:15;2693:4;2690:1;2683:15;2709:632;2774:5;2804:18;2845:2;2837:6;2834:14;2831:40;;;2851:18;;:::i;:::-;2926:2;2920:9;2894:2;2980:15;;-1:-1:-1;;2976:24:1;;;3002:2;2972:33;2968:42;2956:55;;;3026:18;;;3046:22;;;3023:46;3020:72;;;3072:18;;:::i;:::-;3112:10;3108:2;3101:22;3141:6;3132:15;;3171:6;3163;3156:22;3211:3;3202:6;3197:3;3193:16;3190:25;3187:45;;;3228:1;3225;3218:12;3187:45;3278:6;3273:3;3266:4;3258:6;3254:17;3241:44;3333:1;3326:4;3317:6;3309;3305:19;3301:30;3294:41;;;;2709:632;;;;;:::o;3346:451::-;3415:6;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;3524:9;3511:23;3557:18;3549:6;3546:30;3543:50;;;3589:1;3586;3579:12;3543:50;3612:22;;3665:4;3657:13;;3653:27;-1:-1:-1;3643:55:1;;3694:1;3691;3684:12;3643:55;3717:74;3783:7;3778:2;3765:16;3760:2;3756;3752:11;3717:74;:::i;3984:328::-;4061:6;4069;4077;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;4169:29;4188:9;4169:29;:::i;:::-;4159:39;;4217:38;4251:2;4240:9;4236:18;4217:38;:::i;:::-;4207:48;;4302:2;4291:9;4287:18;4274:32;4264:42;;3984:328;;;;;:::o;4317:258::-;4384:6;4392;4445:2;4433:9;4424:7;4420:23;4416:32;4413:52;;;4461:1;4458;4451:12;4413:52;4484:28;4502:9;4484:28;:::i;:::-;4474:38;;4531;4565:2;4554:9;4550:18;4531:38;:::i;:::-;4521:48;;4317:258;;;;;:::o;4580:156::-;4646:20;;4706:4;4695:16;;4685:27;;4675:55;;4726:1;4723;4716:12;4741:182;4798:6;4851:2;4839:9;4830:7;4826:23;4822:32;4819:52;;;4867:1;4864;4857:12;4819:52;4890:27;4907:9;4890:27;:::i;4928:186::-;4987:6;5040:2;5028:9;5019:7;5015:23;5011:32;5008:52;;;5056:1;5053;5046:12;5008:52;5079:29;5098:9;5079:29;:::i;5308:160::-;5373:20;;5429:13;;5422:21;5412:32;;5402:60;;5458:1;5455;5448:12;5473:254;5538:6;5546;5599:2;5587:9;5578:7;5574:23;5570:32;5567:52;;;5615:1;5612;5605:12;5567:52;5638:29;5657:9;5638:29;:::i;:::-;5628:39;;5686:35;5717:2;5706:9;5702:18;5686:35;:::i;5732:180::-;5788:6;5841:2;5829:9;5820:7;5816:23;5812:32;5809:52;;;5857:1;5854;5847:12;5809:52;5880:26;5896:9;5880:26;:::i;5917:667::-;6012:6;6020;6028;6036;6089:3;6077:9;6068:7;6064:23;6060:33;6057:53;;;6106:1;6103;6096:12;6057:53;6129:29;6148:9;6129:29;:::i;:::-;6119:39;;6177:38;6211:2;6200:9;6196:18;6177:38;:::i;:::-;6167:48;;6262:2;6251:9;6247:18;6234:32;6224:42;;6317:2;6306:9;6302:18;6289:32;6344:18;6336:6;6333:30;6330:50;;;6376:1;6373;6366:12;6330:50;6399:22;;6452:4;6444:13;;6440:27;-1:-1:-1;6430:55:1;;6481:1;6478;6471:12;6430:55;6504:74;6570:7;6565:2;6552:16;6547:2;6543;6539:11;6504:74;:::i;:::-;6494:84;;;5917:667;;;;;;;:::o;6589:685::-;6682:6;6690;6698;6751:2;6739:9;6730:7;6726:23;6722:32;6719:52;;;6767:1;6764;6757:12;6719:52;6790:27;6807:9;6790:27;:::i;:::-;6780:37;;6868:2;6857:9;6853:18;6840:32;6891:18;6932:2;6924:6;6921:14;6918:34;;;6948:1;6945;6938:12;6918:34;6986:6;6975:9;6971:22;6961:32;;7031:7;7024:4;7020:2;7016:13;7012:27;7002:55;;7053:1;7050;7043:12;7002:55;7093:2;7080:16;7119:2;7111:6;7108:14;7105:34;;;7135:1;7132;7125:12;7105:34;7188:7;7183:2;7173:6;7170:1;7166:14;7162:2;7158:23;7154:32;7151:45;7148:65;;;7209:1;7206;7199:12;7148:65;7240:2;7236;7232:11;7222:21;;7262:6;7252:16;;;;;6589:685;;;;;:::o;7472:260::-;7540:6;7548;7601:2;7589:9;7580:7;7576:23;7572:32;7569:52;;;7617:1;7614;7607:12;7569:52;7640:29;7659:9;7640:29;:::i;8098:380::-;8177:1;8173:12;;;;8220;;;8241:61;;8295:4;8287:6;8283:17;8273:27;;8241:61;8348:2;8340:6;8337:14;8317:18;8314:38;8311:161;;8394:10;8389:3;8385:20;8382:1;8375:31;8429:4;8426:1;8419:15;8457:4;8454:1;8447:15;8311:161;;8098:380;;;:::o;8609:545::-;8711:2;8706:3;8703:11;8700:448;;;8747:1;8772:5;8768:2;8761:17;8817:4;8813:2;8803:19;8887:2;8875:10;8871:19;8868:1;8864:27;8858:4;8854:38;8923:4;8911:10;8908:20;8905:47;;;-1:-1:-1;8946:4:1;8905:47;9001:2;8996:3;8992:12;8989:1;8985:20;8979:4;8975:31;8965:41;;9056:82;9074:2;9067:5;9064:13;9056:82;;;9119:17;;;9100:1;9089:13;9056:82;;9330:1352;9456:3;9450:10;9483:18;9475:6;9472:30;9469:56;;;9505:18;;:::i;:::-;9534:97;9624:6;9584:38;9616:4;9610:11;9584:38;:::i;:::-;9578:4;9534:97;:::i;:::-;9686:4;;9750:2;9739:14;;9767:1;9762:663;;;;10469:1;10486:6;10483:89;;;-1:-1:-1;10538:19:1;;;10532:26;10483:89;-1:-1:-1;;9287:1:1;9283:11;;;9279:24;9275:29;9265:40;9311:1;9307:11;;;9262:57;10585:81;;9732:944;;9762:663;8556:1;8549:14;;;8593:4;8580:18;;-1:-1:-1;;9798:20:1;;;9916:236;9930:7;9927:1;9924:14;9916:236;;;10019:19;;;10013:26;9998:42;;10111:27;;;;10079:1;10067:14;;;;9946:19;;9916:236;;;9920:3;10180:6;10171:7;10168:19;10165:201;;;10241:19;;;10235:26;-1:-1:-1;;10324:1:1;10320:14;;;10336:3;10316:24;10312:37;10308:42;10293:58;10278:74;;10165:201;-1:-1:-1;;;;;10412:1:1;10396:14;;;10392:22;10379:36;;-1:-1:-1;9330:1352:1:o;10687:127::-;10748:10;10743:3;10739:20;10736:1;10729:31;10779:4;10776:1;10769:15;10803:4;10800:1;10793:15;10819:168;10886:6;10912:10;;;10924;;;10908:27;;10947:11;;;10944:37;;;10961:18;;:::i;:::-;10944:37;10819:168;;;;:::o;12621:125::-;12686:9;;;12707:10;;;12704:36;;;12720:18;;:::i;13443:168::-;13516:9;;;13547;;13564:15;;;13558:22;;13544:37;13534:71;;13585:18;;:::i;14788:1256::-;15012:3;15050:6;15044:13;15076:4;15089:64;15146:6;15141:3;15136:2;15128:6;15124:15;15089:64;:::i;:::-;15216:13;;15175:16;;;;15238:68;15216:13;15175:16;15273:15;;;15238:68;:::i;:::-;15395:13;;15328:20;;;15368:1;;15433:36;15395:13;15433:36;:::i;:::-;15488:1;15505:18;;;15532:141;;;;15687:1;15682:337;;;;15498:521;;15532:141;-1:-1:-1;;15567:24:1;;15553:39;;15644:16;;15637:24;15623:39;;15612:51;;;-1:-1:-1;15532:141:1;;15682:337;15713:6;15710:1;15703:17;15761:2;15758:1;15748:16;15786:1;15800:169;15814:8;15811:1;15808:15;15800:169;;;15896:14;;15881:13;;;15874:37;15939:16;;;;15831:10;;15800:169;;;15804:3;;16000:8;15993:5;15989:20;15982:27;;15498:521;-1:-1:-1;16035:3:1;;14788:1256;-1:-1:-1;;;;;;;;;;14788:1256:1:o;16049:127::-;16110:10;16105:3;16101:20;16098:1;16091:31;16141:4;16138:1;16131:15;16165:4;16162:1;16155:15;16181:135;16220:3;16241:17;;;16238:43;;16261:18;;:::i;:::-;-1:-1:-1;16308:1:1;16297:13;;16181:135::o;16728:127::-;16789:10;16784:3;16780:20;16777:1;16770:31;16820:4;16817:1;16810:15;16844:4;16841:1;16834:15;16860:120;16900:1;16926;16916:35;;16931:18;;:::i;:::-;-1:-1:-1;16965:9:1;;16860:120::o;16985:128::-;17052:9;;;17073:11;;;17070:37;;;17087:18;;:::i;17118:112::-;17150:1;17176;17166:35;;17181:18;;:::i;:::-;-1:-1:-1;17215:9:1;;17118:112::o;17235:512::-;17429:4;-1:-1:-1;;;;;17539:2:1;17531:6;17527:15;17516:9;17509:34;17591:2;17583:6;17579:15;17574:2;17563:9;17559:18;17552:43;;17631:6;17626:2;17615:9;17611:18;17604:34;17674:3;17669:2;17658:9;17654:18;17647:31;17695:46;17736:3;17725:9;17721:19;17713:6;17695:46;:::i;:::-;17687:54;17235:512;-1:-1:-1;;;;;;17235:512:1:o;17752:249::-;17821:6;17874:2;17862:9;17853:7;17849:23;17845:32;17842:52;;;17890:1;17887;17880:12;17842:52;17922:9;17916:16;17941:30;17965:5;17941:30;:::i

Swarm Source

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