ETH Price: $3,490.22 (+2.09%)
Gas: 12 Gwei

Token

The Neon Punkz (PUNKZ)
 

Overview

Max Total Supply

5,555 PUNKZ

Holders

1,013

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
firerus.eth
Balance
4 PUNKZ
0xb6ed0d1b01e577a7e02f9a084e54aafc6ab38d20
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:
Neonpunkz

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

 _ _____ _____ _____ _____ _    
,-.     .--,  .--,  .--,  .--,,-.    
| |  .-'  /.-'  /.-'  /.-'  / | |    
| | /  --`/  --`/  --`/  --`  | |    
| |`--'  `--'  `--'  `--'     | |    
| |                           | |    
| |                           | |    
| |                           | |    
`-'                           `-'    
,-.                              ,-. 
| |         _              _     | | 
| |     .-,| |,-.      .-,| |,-. | | 
| |     _\ ' ' /_      _\ ' ' /_ | | 
| |    (__     __)    (__     __)| | 
| |      / . . \        / . . \  | | 
| |     `-'|_|`-'      `-'|_|`-' | | 
`-'                              `-' 
,-.                       ,-.        
| |                 _     | |        
| |             .-,| |,-. | |        
| |             _\ ' ' /_ | |        
| |            (__     __)| |        
| |              / . . \  | |        
| |             `-'|_|`-' | |        
`-'                       `-'        
,-.                         ,----.   
| |                         |    |   
| |                         `-.  |   
| |                           |  |   
| |                   (`-')   |  |   
| |                <-.(OO ) .-'  |   
| |                ,------.)|    |   
`-'                `------' `----'   
,-.    ,-.                           
| |    | |                           
| |    | |                           
| |    | |                           
| |    | |                           
| |    | |                           
| |    | |                           
`-'    `-'                           
| |   | |   | |   | |   | | |
| |_|___|_|___|_|___|_|___| |
| |                       | |
| |                       | |
|_|                       |_|
 _                   _       
| |   _____    _____| |      
| |  | | | |  | | | | |      
| |  |-   -|  |-   -| |      
| |  |_|_|_|  |_|_|_| |      
|_|                 |_|      
 _              _            
| |       _____| |           
| |      | | | | |           
| |      |-   -| |           
| |      |_|_|_| |           
|_|            |_|           
 _                ___        
| |              |_  |       
| |                | |       
| |                | |       
| |         _____ _| |       
|_|        |_____|___|       
 _    _                      
| |  | |                     
| |  | |                     
| |  | |                     
| |  | |                     
|_|  |_|                     

*/

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


    pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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



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


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

  
  

  uint256 public cost = 0.001 ether;
 
  

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


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function mint(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);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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"}]

610100604052604360808181529062002e2e60a039600a906200002390826200034f565b50604080518082019091526005815264173539b7b760d91b6020820152600b906200004f90826200034f565b5066038d7ea4c68000600d55600e805464ffffffffff19166401141427101790556000600f556127106010556011805461ffff19166101011790553480156200009757600080fd5b5060405162002e7138038062002e71833981016040819052620000ba91620004ca565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600184846002620000e183826200034f565b506003620000f082826200034f565b5050600160005550620001033362000258565b60016009556daaeb6d7670e522a718067333cd4e3b156200024d5780156200019b57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017c57600080fd5b505af115801562000191573d6000803e3d6000fd5b505050506200024d565b6001600160a01b03821615620001ec5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000161565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023357600080fd5b505af115801562000248573d6000803e3d6000fd5b505050505b50505050506200055b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002d557607f821691505b602082108103620002f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034a57600081815260208120601f850160051c81016020861015620003255750805b601f850160051c820191505b81811015620003465782815560010162000331565b5050505b505050565b81516001600160401b038111156200036b576200036b620002aa565b62000383816200037c8454620002c0565b84620002fc565b602080601f831160018114620003bb5760008415620003a25750858301515b600019600386901b1c1916600185901b17855562000346565b600085815260208120601f198616915b82811015620003ec57888601518255948401946001909101908401620003cb565b50858210156200040b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200042d57600080fd5b81516001600160401b03808211156200044a576200044a620002aa565b604051601f8301601f19908116603f01168101908282118183101715620004755762000475620002aa565b816040528381526020925086838588010111156200049257600080fd5b600091505b83821015620004b6578582018301518183018401529082019062000497565b600093810190920192909252949350505050565b600080600060608486031215620004e057600080fd5b83516001600160401b0380821115620004f857600080fd5b62000506878388016200041b565b945060208601519150808211156200051d57600080fd5b6200052b878388016200041b565b935060408601519150808211156200054257600080fd5b5062000551868287016200041b565b9150509250925092565b6128c3806200056b6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a475b5dd116100ab578063cffb6e201161006f578063cffb6e2014610685578063d5abeb01146106a5578063e985e9c5146106d3578063f2fde38b146106f3578063f8bf51721461071357600080fd5b8063a475b5dd146105e5578063aa06229014610604578063b88d4fde14610624578063bc951b9114610644578063c87b56dd1461066557600080fd5b806394354fd0116100f257806394354fd01461055557806395d89b4114610587578063982d669e1461059c578063a0712d68146105b2578063a22cb465146105c557600080fd5b80636352211e146104c257806370a08231146104e2578063715018a6146105025780637ec4a659146105175780638da5cb5b1461053757600080fd5b806323b872dd116101bc5780633ccfd60b116101805780633ccfd60b1461043357806342842e0e1461044857806344a0d68a146104685780634d9c1848146104885780635c975abb146104a857600080fd5b806323b872dd146103a95780632f6f98e1146103c9578063305ae775146103e957806337a66d85146104095780633bd649681461041e57600080fd5b80630a00ae83116102035780630a00ae83146103115780631067fcc71461033157806313faede61461035157806318160ddd14610375578063193ad7b41461039357600080fd5b806301ffc9a71461024057806306421c2f1461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046120e3565b610735565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612117565b610787565b005b3480156102a357600080fd5b506102ac6107d2565b60405161026c9190612182565b3480156102c557600080fd5b506102d96102d4366004612195565b610864565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c3660046121c5565b6108a8565b34801561031d57600080fd5b5061029561032c366004612195565b610935565b34801561033d57600080fd5b5061029561034c36600461227b565b610964565b34801561035d57600080fd5b50610367600d5481565b60405190815260200161026c565b34801561038157600080fd5b50610367600154600054036000190190565b34801561039f57600080fd5b50610367600f5481565b3480156103b557600080fd5b506102956103c43660046122c4565b61099e565b3480156103d557600080fd5b506102956103e4366004612300565b610afa565b3480156103f557600080fd5b5061029561040436600461227b565b610ba1565b34801561041557600080fd5b50610295610bd7565b34801561042a57600080fd5b50610295610c15565b34801561043f57600080fd5b50610295610c5c565b34801561045457600080fd5b506102956104633660046122c4565b610d56565b34801561047457600080fd5b50610295610483366004612195565b610ea7565b34801561049457600080fd5b506102956104a3366004612344565b610ed6565b3480156104b457600080fd5b506011546102609060ff1681565b3480156104ce57600080fd5b506102d96104dd366004612195565b610f22565b3480156104ee57600080fd5b506103676104fd36600461235f565b610f34565b34801561050e57600080fd5b50610295610f83565b34801561052357600080fd5b5061029561053236600461227b565b610fb9565b34801561054357600080fd5b506008546001600160a01b03166102d9565b34801561056157600080fd5b50600e546105759062010000900460ff1681565b60405160ff909116815260200161026c565b34801561059357600080fd5b506102ac610fef565b3480156105a857600080fd5b5061036760105481565b6102956105c0366004612195565b610ffe565b3480156105d157600080fd5b506102956105e0366004612388565b6112e9565b3480156105f157600080fd5b5060115461026090610100900460ff1681565b34801561061057600080fd5b5061029561061f366004612344565b61137e565b34801561063057600080fd5b5061029561063f3660046123bf565b6113c6565b34801561065057600080fd5b50600e54610575906301000000900460ff1681565b34801561067157600080fd5b506102ac610680366004612195565b611525565b34801561069157600080fd5b506102956106a036600461243b565b611699565b3480156106b157600080fd5b50600e546106c09061ffff1681565b60405161ffff909116815260200161026c565b3480156106df57600080fd5b506102606106ee3660046124c1565b61179d565b3480156106ff57600080fd5b5061029561070e36600461235f565b6117cb565b34801561071f57600080fd5b50600e5461057590640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061076657506001600160e01b03198216635b5e139f60e01b145b8061078157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107ba5760405162461bcd60e51b81526004016107b1906124dd565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b6060600280546107e190612512565b80601f016020809104026020016040519081016040528092919081815260200182805461080d90612512565b801561085a5780601f1061082f5761010080835404028352916020019161085a565b820191906000526020600020905b81548152906001019060200180831161083d57829003601f168201915b5050505050905090565b600061086f82611863565b61088c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b382610f22565b9050806001600160a01b0316836001600160a01b0316036108e75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109075750610905813361179d565b155b15610925576040516367d9dca160e11b815260040160405180910390fd5b61093083838361189c565b505050565b6008546001600160a01b0316331461095f5760405162461bcd60e51b81526004016107b1906124dd565b601055565b6008546001600160a01b0316331461098e5760405162461bcd60e51b81526004016107b1906124dd565b600c61099a8282612592565b5050565b826daaeb6d7670e522a718067333cd4e3b15610ae957336001600160a01b038216036109d4576109cf8484846118f8565b610af4565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a479190612652565b8015610aca5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aca9190612652565b610ae957604051633b79c77360e21b81523360048201526024016107b1565b610af48484846118f8565b50505050565b6008546001600160a01b03163314610b245760405162461bcd60e51b81526004016107b1906124dd565b6000610b37600154600054036000190190565b600e5490915061ffff16610b4b8483612685565b61ffff161115610b935760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016107b1565b610930828461ffff16611903565b6008546001600160a01b03163314610bcb5760405162461bcd60e51b81526004016107b1906124dd565b600b61099a8282612592565b6008546001600160a01b03163314610c015760405162461bcd60e51b81526004016107b1906124dd565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b81526004016107b1906124dd565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610c865760405162461bcd60e51b81526004016107b1906124dd565b600260095403610cd85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b1565b60026009556000610cf16008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3b576040519150601f19603f3d011682016040523d82523d6000602084013e610d40565b606091505b5050905080610d4e57600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610e9c57336001600160a01b03821603610d87576109cf84848461191d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfa9190612652565b8015610e7d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7d9190612652565b610e9c57604051633b79c77360e21b81523360048201526024016107b1565b610af484848461191d565b6008546001600160a01b03163314610ed15760405162461bcd60e51b81526004016107b1906124dd565b600d55565b6008546001600160a01b03163314610f005760405162461bcd60e51b81526004016107b1906124dd565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610f2d82611938565b5192915050565b60006001600160a01b038216610f5d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fad5760405162461bcd60e51b81526004016107b1906124dd565b610fb76000611a61565b565b6008546001600160a01b03163314610fe35760405162461bcd60e51b81526004016107b1906124dd565b600a61099a8282612592565b6060600380546107e190612512565b32331461104d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107b1565b60115460ff16156110a05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107b1565b600e546110b29061ffff166001612685565b61ffff16816110c8600154600054036000190190565b6110d291906126a7565b106111095760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107b1565b600e546301000000900460ff168161112033610f34565b61112a91906126a7565b11156111785760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107b1565b60105481600f5461118991906126a7565b11156111ec573481600d5461119e91906126ba565b11156111e75760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107b1565b6112dc565b600e54640100000000900460ff168161120433610f34565b61120e91906126a7565b1115611297573481600d5461122391906126ba565b111561126c5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107b1565b600e5462010000900460ff168111156111e75760405162461bcd60e51b81526004016107b1906126d1565b600e54640100000000900460ff168111156112c45760405162461bcd60e51b81526004016107b1906126d1565b80600f60008282546112d691906126a7565b90915550505b6112e63382611903565b50565b336001600160a01b038316036113125760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113a85760405162461bcd60e51b81526004016107b1906124dd565b600e805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b1561151257336001600160a01b038216036113fd576113f885858585611ab3565b61151e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561144c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114709190612652565b80156114f35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f39190612652565b61151257604051633b79c77360e21b81523360048201526024016107b1565b61151e85858585611ab3565b5050505050565b606061153082611863565b6115945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b1565b601154610100900460ff16151560000361163a57600c80546115b590612512565b80601f01602080910402602001604051908101604052809291908181526020018280546115e190612512565b801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b50505050509050919050565b6000611644611afe565b905060008151116116645760405180602001604052806000815250611692565b8061166e84611b0d565b600b60405160200161168293929190612713565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116c35760405162461bcd60e51b81526004016107b1906124dd565b60006116d6600154600054036000190190565b905060006116e78360ff87166126ba565b600e5490915061ffff9081169061170190839085166126a7565b11156117455760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016107b1565b60005b8381101561179557611783858583818110611765576117656127b3565b905060200201602081019061177a919061235f565b8760ff16611903565b8061178d816127c9565b915050611748565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146117f55760405162461bcd60e51b81526004016107b1906124dd565b6001600160a01b03811661185a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b1565b6112e681611a61565b600081600111158015611877575060005482105b8015610781575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610930838383611c16565b61099a828260405180602001604052806000815250611e03565b610930838383604051806020016040528060008152506113c6565b60408051606081018252600080825260208201819052918101919091528180600111158015611968575060005481105b15611a4857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a465780516001600160a01b0316156119dc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a41579392505050565b6119dc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611abe848484611c16565b6001600160a01b0383163b15158015611ae05750611ade84848484611e10565b155b15610af4576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546107e190612512565b606081600003611b345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b5e5780611b48816127c9565b9150611b579050600a836127f8565b9150611b38565b60008167ffffffffffffffff811115611b7957611b796121ef565b6040519080825280601f01601f191660200182016040528015611ba3576020820181803683370190505b5090505b8415611c0e57611bb860018361280c565b9150611bc5600a8661281f565b611bd09060306126a7565b60f81b818381518110611be557611be56127b3565b60200101906001600160f81b031916908160001a905350611c07600a866127f8565b9450611ba7565b949350505050565b6000611c2182611938565b9050836001600160a01b031681600001516001600160a01b031614611c585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611c765750611c76853361179d565b80611c91575033611c8684610864565b6001600160a01b0316145b905080611cb157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611cd857604051633a954ecd60e21b815260040160405180910390fd5b611ce46000848761189c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611dba576000548214611dba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461151e565b6109308383836001611efb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e45903390899088908890600401612833565b6020604051808303816000875af1925050508015611e80575060408051601f3d908101601f19168201909252611e7d91810190612870565b60015b611ede573d808015611eae576040519150601f19603f3d011682016040523d82523d6000602084013e611eb3565b606091505b508051600003611ed6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f2457604051622e076360e81b815260040160405180910390fd5b83600003611f455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ff757506001600160a01b0387163b15155b1561207f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120486000888480600101955088611e10565b612065576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ffd57826000541461207a57600080fd5b6120c4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612080575b5060005561151e565b6001600160e01b0319811681146112e657600080fd5b6000602082840312156120f557600080fd5b8135611692816120cd565b803561ffff8116811461211257600080fd5b919050565b60006020828403121561212957600080fd5b61169282612100565b60005b8381101561214d578181015183820152602001612135565b50506000910152565b6000815180845261216e816020860160208601612132565b601f01601f19169290920160200192915050565b6020815260006116926020830184612156565b6000602082840312156121a757600080fd5b5035919050565b80356001600160a01b038116811461211257600080fd5b600080604083850312156121d857600080fd5b6121e1836121ae565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612220576122206121ef565b604051601f8501601f19908116603f01168101908282118183101715612248576122486121ef565b8160405280935085815286868601111561226157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561228d57600080fd5b813567ffffffffffffffff8111156122a457600080fd5b8201601f810184136122b557600080fd5b611c0e84823560208401612205565b6000806000606084860312156122d957600080fd5b6122e2846121ae565b92506122f0602085016121ae565b9150604084013590509250925092565b6000806040838503121561231357600080fd5b61231c83612100565b915061232a602084016121ae565b90509250929050565b803560ff8116811461211257600080fd5b60006020828403121561235657600080fd5b61169282612333565b60006020828403121561237157600080fd5b611692826121ae565b80151581146112e657600080fd5b6000806040838503121561239b57600080fd5b6123a4836121ae565b915060208301356123b48161237a565b809150509250929050565b600080600080608085870312156123d557600080fd5b6123de856121ae565b93506123ec602086016121ae565b925060408501359150606085013567ffffffffffffffff81111561240f57600080fd5b8501601f8101871361242057600080fd5b61242f87823560208401612205565b91505092959194509250565b60008060006040848603121561245057600080fd5b61245984612333565b9250602084013567ffffffffffffffff8082111561247657600080fd5b818601915086601f83011261248a57600080fd5b81358181111561249957600080fd5b8760208260051b85010111156124ae57600080fd5b6020830194508093505050509250925092565b600080604083850312156124d457600080fd5b61231c836121ae565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061252657607f821691505b60208210810361254657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561093057600081815260208120601f850160051c810160208610156125735750805b601f850160051c820191505b818110156117955782815560010161257f565b815167ffffffffffffffff8111156125ac576125ac6121ef565b6125c0816125ba8454612512565b8461254c565b602080601f8311600181146125f557600084156125dd5750858301515b600019600386901b1c1916600185901b178555611795565b600085815260208120601f198616915b8281101561262457888601518255948401946001909101908401612605565b50858210156126425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561266457600080fd5b81516116928161237a565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156126a0576126a061266f565b5092915050565b808201808211156107815761078161266f565b80820281158282048414176107815761078161266f565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206127268285838a01612132565b8551918401916127398184848a01612132565b855492019160009061274a81612512565b600182811680156127625760018114612777576127a3565b60ff19841687528215158302870194506127a3565b896000528560002060005b8481101561279b57815489820152908301908701612782565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016127db576127db61266f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612807576128076127e2565b500490565b818103818111156107815761078161266f565b60008261282e5761282e6127e2565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286690830184612156565b9695505050505050565b60006020828403121561288257600080fd5b8151611692816120cd56fea2646970667358221220fd04ff20eae9a2dc5ec34543fd1ccf2488dab0486ac29cdb94fbf1f378abcca564736f6c63430008120033697066733a2f2f6261667962656961327763773576667637363371766f326c35786a626133376664637a63786d376c33656367666d3476346b616f737033643235752f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e546865204e656f6e2050756e6b7a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550554e4b5a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a475b5dd116100ab578063cffb6e201161006f578063cffb6e2014610685578063d5abeb01146106a5578063e985e9c5146106d3578063f2fde38b146106f3578063f8bf51721461071357600080fd5b8063a475b5dd146105e5578063aa06229014610604578063b88d4fde14610624578063bc951b9114610644578063c87b56dd1461066557600080fd5b806394354fd0116100f257806394354fd01461055557806395d89b4114610587578063982d669e1461059c578063a0712d68146105b2578063a22cb465146105c557600080fd5b80636352211e146104c257806370a08231146104e2578063715018a6146105025780637ec4a659146105175780638da5cb5b1461053757600080fd5b806323b872dd116101bc5780633ccfd60b116101805780633ccfd60b1461043357806342842e0e1461044857806344a0d68a146104685780634d9c1848146104885780635c975abb146104a857600080fd5b806323b872dd146103a95780632f6f98e1146103c9578063305ae775146103e957806337a66d85146104095780633bd649681461041e57600080fd5b80630a00ae83116102035780630a00ae83146103115780631067fcc71461033157806313faede61461035157806318160ddd14610375578063193ad7b41461039357600080fd5b806301ffc9a71461024057806306421c2f1461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046120e3565b610735565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612117565b610787565b005b3480156102a357600080fd5b506102ac6107d2565b60405161026c9190612182565b3480156102c557600080fd5b506102d96102d4366004612195565b610864565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c3660046121c5565b6108a8565b34801561031d57600080fd5b5061029561032c366004612195565b610935565b34801561033d57600080fd5b5061029561034c36600461227b565b610964565b34801561035d57600080fd5b50610367600d5481565b60405190815260200161026c565b34801561038157600080fd5b50610367600154600054036000190190565b34801561039f57600080fd5b50610367600f5481565b3480156103b557600080fd5b506102956103c43660046122c4565b61099e565b3480156103d557600080fd5b506102956103e4366004612300565b610afa565b3480156103f557600080fd5b5061029561040436600461227b565b610ba1565b34801561041557600080fd5b50610295610bd7565b34801561042a57600080fd5b50610295610c15565b34801561043f57600080fd5b50610295610c5c565b34801561045457600080fd5b506102956104633660046122c4565b610d56565b34801561047457600080fd5b50610295610483366004612195565b610ea7565b34801561049457600080fd5b506102956104a3366004612344565b610ed6565b3480156104b457600080fd5b506011546102609060ff1681565b3480156104ce57600080fd5b506102d96104dd366004612195565b610f22565b3480156104ee57600080fd5b506103676104fd36600461235f565b610f34565b34801561050e57600080fd5b50610295610f83565b34801561052357600080fd5b5061029561053236600461227b565b610fb9565b34801561054357600080fd5b506008546001600160a01b03166102d9565b34801561056157600080fd5b50600e546105759062010000900460ff1681565b60405160ff909116815260200161026c565b34801561059357600080fd5b506102ac610fef565b3480156105a857600080fd5b5061036760105481565b6102956105c0366004612195565b610ffe565b3480156105d157600080fd5b506102956105e0366004612388565b6112e9565b3480156105f157600080fd5b5060115461026090610100900460ff1681565b34801561061057600080fd5b5061029561061f366004612344565b61137e565b34801561063057600080fd5b5061029561063f3660046123bf565b6113c6565b34801561065057600080fd5b50600e54610575906301000000900460ff1681565b34801561067157600080fd5b506102ac610680366004612195565b611525565b34801561069157600080fd5b506102956106a036600461243b565b611699565b3480156106b157600080fd5b50600e546106c09061ffff1681565b60405161ffff909116815260200161026c565b3480156106df57600080fd5b506102606106ee3660046124c1565b61179d565b3480156106ff57600080fd5b5061029561070e36600461235f565b6117cb565b34801561071f57600080fd5b50600e5461057590640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061076657506001600160e01b03198216635b5e139f60e01b145b8061078157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107ba5760405162461bcd60e51b81526004016107b1906124dd565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b6060600280546107e190612512565b80601f016020809104026020016040519081016040528092919081815260200182805461080d90612512565b801561085a5780601f1061082f5761010080835404028352916020019161085a565b820191906000526020600020905b81548152906001019060200180831161083d57829003601f168201915b5050505050905090565b600061086f82611863565b61088c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b382610f22565b9050806001600160a01b0316836001600160a01b0316036108e75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109075750610905813361179d565b155b15610925576040516367d9dca160e11b815260040160405180910390fd5b61093083838361189c565b505050565b6008546001600160a01b0316331461095f5760405162461bcd60e51b81526004016107b1906124dd565b601055565b6008546001600160a01b0316331461098e5760405162461bcd60e51b81526004016107b1906124dd565b600c61099a8282612592565b5050565b826daaeb6d7670e522a718067333cd4e3b15610ae957336001600160a01b038216036109d4576109cf8484846118f8565b610af4565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a479190612652565b8015610aca5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aca9190612652565b610ae957604051633b79c77360e21b81523360048201526024016107b1565b610af48484846118f8565b50505050565b6008546001600160a01b03163314610b245760405162461bcd60e51b81526004016107b1906124dd565b6000610b37600154600054036000190190565b600e5490915061ffff16610b4b8483612685565b61ffff161115610b935760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016107b1565b610930828461ffff16611903565b6008546001600160a01b03163314610bcb5760405162461bcd60e51b81526004016107b1906124dd565b600b61099a8282612592565b6008546001600160a01b03163314610c015760405162461bcd60e51b81526004016107b1906124dd565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b81526004016107b1906124dd565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610c865760405162461bcd60e51b81526004016107b1906124dd565b600260095403610cd85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b1565b60026009556000610cf16008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3b576040519150601f19603f3d011682016040523d82523d6000602084013e610d40565b606091505b5050905080610d4e57600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610e9c57336001600160a01b03821603610d87576109cf84848461191d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfa9190612652565b8015610e7d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7d9190612652565b610e9c57604051633b79c77360e21b81523360048201526024016107b1565b610af484848461191d565b6008546001600160a01b03163314610ed15760405162461bcd60e51b81526004016107b1906124dd565b600d55565b6008546001600160a01b03163314610f005760405162461bcd60e51b81526004016107b1906124dd565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610f2d82611938565b5192915050565b60006001600160a01b038216610f5d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610fad5760405162461bcd60e51b81526004016107b1906124dd565b610fb76000611a61565b565b6008546001600160a01b03163314610fe35760405162461bcd60e51b81526004016107b1906124dd565b600a61099a8282612592565b6060600380546107e190612512565b32331461104d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016107b1565b60115460ff16156110a05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107b1565b600e546110b29061ffff166001612685565b61ffff16816110c8600154600054036000190190565b6110d291906126a7565b106111095760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107b1565b600e546301000000900460ff168161112033610f34565b61112a91906126a7565b11156111785760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107b1565b60105481600f5461118991906126a7565b11156111ec573481600d5461119e91906126ba565b11156111e75760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107b1565b6112dc565b600e54640100000000900460ff168161120433610f34565b61120e91906126a7565b1115611297573481600d5461122391906126ba565b111561126c5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b60448201526064016107b1565b600e5462010000900460ff168111156111e75760405162461bcd60e51b81526004016107b1906126d1565b600e54640100000000900460ff168111156112c45760405162461bcd60e51b81526004016107b1906126d1565b80600f60008282546112d691906126a7565b90915550505b6112e63382611903565b50565b336001600160a01b038316036113125760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113a85760405162461bcd60e51b81526004016107b1906124dd565b600e805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b1561151257336001600160a01b038216036113fd576113f885858585611ab3565b61151e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561144c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114709190612652565b80156114f35750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f39190612652565b61151257604051633b79c77360e21b81523360048201526024016107b1565b61151e85858585611ab3565b5050505050565b606061153082611863565b6115945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b1565b601154610100900460ff16151560000361163a57600c80546115b590612512565b80601f01602080910402602001604051908101604052809291908181526020018280546115e190612512565b801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b50505050509050919050565b6000611644611afe565b905060008151116116645760405180602001604052806000815250611692565b8061166e84611b0d565b600b60405160200161168293929190612713565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116c35760405162461bcd60e51b81526004016107b1906124dd565b60006116d6600154600054036000190190565b905060006116e78360ff87166126ba565b600e5490915061ffff9081169061170190839085166126a7565b11156117455760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016107b1565b60005b8381101561179557611783858583818110611765576117656127b3565b905060200201602081019061177a919061235f565b8760ff16611903565b8061178d816127c9565b915050611748565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146117f55760405162461bcd60e51b81526004016107b1906124dd565b6001600160a01b03811661185a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b1565b6112e681611a61565b600081600111158015611877575060005482105b8015610781575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610930838383611c16565b61099a828260405180602001604052806000815250611e03565b610930838383604051806020016040528060008152506113c6565b60408051606081018252600080825260208201819052918101919091528180600111158015611968575060005481105b15611a4857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a465780516001600160a01b0316156119dc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a41579392505050565b6119dc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611abe848484611c16565b6001600160a01b0383163b15158015611ae05750611ade84848484611e10565b155b15610af4576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a80546107e190612512565b606081600003611b345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b5e5780611b48816127c9565b9150611b579050600a836127f8565b9150611b38565b60008167ffffffffffffffff811115611b7957611b796121ef565b6040519080825280601f01601f191660200182016040528015611ba3576020820181803683370190505b5090505b8415611c0e57611bb860018361280c565b9150611bc5600a8661281f565b611bd09060306126a7565b60f81b818381518110611be557611be56127b3565b60200101906001600160f81b031916908160001a905350611c07600a866127f8565b9450611ba7565b949350505050565b6000611c2182611938565b9050836001600160a01b031681600001516001600160a01b031614611c585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611c765750611c76853361179d565b80611c91575033611c8684610864565b6001600160a01b0316145b905080611cb157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611cd857604051633a954ecd60e21b815260040160405180910390fd5b611ce46000848761189c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611dba576000548214611dba578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461151e565b6109308383836001611efb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e45903390899088908890600401612833565b6020604051808303816000875af1925050508015611e80575060408051601f3d908101601f19168201909252611e7d91810190612870565b60015b611ede573d808015611eae576040519150601f19603f3d011682016040523d82523d6000602084013e611eb3565b606091505b508051600003611ed6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f2457604051622e076360e81b815260040160405180910390fd5b83600003611f455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ff757506001600160a01b0387163b15155b1561207f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120486000888480600101955088611e10565b612065576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ffd57826000541461207a57600080fd5b6120c4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612080575b5060005561151e565b6001600160e01b0319811681146112e657600080fd5b6000602082840312156120f557600080fd5b8135611692816120cd565b803561ffff8116811461211257600080fd5b919050565b60006020828403121561212957600080fd5b61169282612100565b60005b8381101561214d578181015183820152602001612135565b50506000910152565b6000815180845261216e816020860160208601612132565b601f01601f19169290920160200192915050565b6020815260006116926020830184612156565b6000602082840312156121a757600080fd5b5035919050565b80356001600160a01b038116811461211257600080fd5b600080604083850312156121d857600080fd5b6121e1836121ae565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612220576122206121ef565b604051601f8501601f19908116603f01168101908282118183101715612248576122486121ef565b8160405280935085815286868601111561226157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561228d57600080fd5b813567ffffffffffffffff8111156122a457600080fd5b8201601f810184136122b557600080fd5b611c0e84823560208401612205565b6000806000606084860312156122d957600080fd5b6122e2846121ae565b92506122f0602085016121ae565b9150604084013590509250925092565b6000806040838503121561231357600080fd5b61231c83612100565b915061232a602084016121ae565b90509250929050565b803560ff8116811461211257600080fd5b60006020828403121561235657600080fd5b61169282612333565b60006020828403121561237157600080fd5b611692826121ae565b80151581146112e657600080fd5b6000806040838503121561239b57600080fd5b6123a4836121ae565b915060208301356123b48161237a565b809150509250929050565b600080600080608085870312156123d557600080fd5b6123de856121ae565b93506123ec602086016121ae565b925060408501359150606085013567ffffffffffffffff81111561240f57600080fd5b8501601f8101871361242057600080fd5b61242f87823560208401612205565b91505092959194509250565b60008060006040848603121561245057600080fd5b61245984612333565b9250602084013567ffffffffffffffff8082111561247657600080fd5b818601915086601f83011261248a57600080fd5b81358181111561249957600080fd5b8760208260051b85010111156124ae57600080fd5b6020830194508093505050509250925092565b600080604083850312156124d457600080fd5b61231c836121ae565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061252657607f821691505b60208210810361254657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561093057600081815260208120601f850160051c810160208610156125735750805b601f850160051c820191505b818110156117955782815560010161257f565b815167ffffffffffffffff8111156125ac576125ac6121ef565b6125c0816125ba8454612512565b8461254c565b602080601f8311600181146125f557600084156125dd5750858301515b600019600386901b1c1916600185901b178555611795565b600085815260208120601f198616915b8281101561262457888601518255948401946001909101908401612605565b50858210156126425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561266457600080fd5b81516116928161237a565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156126a0576126a061266f565b5092915050565b808201808211156107815761078161266f565b80820281158282048414176107815761078161266f565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206127268285838a01612132565b8551918401916127398184848a01612132565b855492019160009061274a81612512565b600182811680156127625760018114612777576127a3565b60ff19841687528215158302870194506127a3565b896000528560002060005b8481101561279b57815489820152908301908701612782565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016127db576127db61266f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612807576128076127e2565b500490565b818103818111156107815761078161266f565b60008261282e5761282e6127e2565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286690830184612156565b9695505050505050565b60006020828403121561288257600080fd5b8151611692816120cd56fea2646970667358221220fd04ff20eae9a2dc5ec34543fd1ccf2488dab0486ac29cdb94fbf1f378abcca564736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e546865204e656f6e2050756e6b7a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550554e4b5a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): The Neon Punkz
Arg [1] : _tokenSymbol (string): PUNKZ
Arg [2] : _hiddenMetadataUri (string): n

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 546865204e656f6e2050756e6b7a000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 50554e4b5a000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54116:5728:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29847:305;;;;;;;;;;-1:-1:-1;29847:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29847:305:0;;;;;;;;57143:97;;;;;;;;;;-1:-1:-1;57143:97:0;;;;;:::i;:::-;;:::i;:::-;;32960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34463:204::-;;;;;;;;;;-1:-1:-1;34463:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;34463:204:0;1886:203:1;34026:371:0;;;;;;;;;;-1:-1:-1;34026:371:0;;;;;:::i;:::-;;:::i;58220:129::-;;;;;;;;;;-1:-1:-1;58220:129:0;;;;;:::i;:::-;;:::i;58116:102::-;;;;;;;;;;-1:-1:-1;58116:102:0;;;;;:::i;:::-;;:::i;54420:33::-;;;;;;;;;;;;;;;;;;;3902:25:1;;;3890:2;3875:18;54420:33:0;3756:177:1;29096:303:0;;;;;;;;;;;;28953:1;29350:12;29140:7;29334:13;:28;-1:-1:-1;;29334:46:0;;29096:303;54642:39;;;;;;;;;;;;;;;;59293:159;;;;;;;;;;-1:-1:-1;59293:159:0;;;;;:::i;:::-;;:::i;56328:326::-;;;;;;;;;;-1:-1:-1;56328:326:0;;;;;:::i;:::-;;:::i;57899:102::-;;;;;;;;;;-1:-1:-1;57899:102:0;;;;;:::i;:::-;;:::i;58355:71::-;;;;;;;;;;;;;:::i;58513:70::-;;;;;;;;;;;;;:::i;58707:475::-;;;;;;;;;;;;;:::i;59458:167::-;;;;;;;;;;-1:-1:-1;59458:167:0;;;;;:::i;:::-;;:::i;58432:76::-;;;;;;;;;;-1:-1:-1;58432:76:0;;;;;:::i;:::-;;:::i;57752:134::-;;;;;;;;;;-1:-1:-1;57752:134:0;;;;;:::i;:::-;;:::i;54798:25::-;;;;;;;;;;-1:-1:-1;54798:25:0;;;;;;;;32768:125;;;;;;;;;;-1:-1:-1;32768:125:0;;;;;:::i;:::-;;:::i;30216:206::-;;;;;;;;;;-1:-1:-1;30216:206:0;;;;;:::i;:::-;;:::i;48669:103::-;;;;;;;;;;;;;:::i;58009:102::-;;;;;;;;;;-1:-1:-1;58009:102:0;;;;;:::i;:::-;;:::i;48017:87::-;;;;;;;;;;-1:-1:-1;48090:6:0;;-1:-1:-1;;;;;48090:6:0;48017:87;;54503:36;;;;;;;;;;-1:-1:-1;54503:36:0;;;;;;;;;;;;;;5245:4:1;5233:17;;;5215:36;;5203:2;5188:18;54503:36:0;5073:184:1;33129:104:0;;;;;;;;;;;;;:::i;54689:38::-;;;;;;;;;;;;;;;;55182:1140;;;;;;:::i;:::-;;:::i;34739:287::-;;;;;;;;;;-1:-1:-1;34739:287:0;;;;;:::i;:::-;;:::i;54828:25::-;;;;;;;;;;-1:-1:-1;54828:25:0;;;;;;;;;;;58589:107;;;;;;;;;;-1:-1:-1;58589:107:0;;;;;:::i;:::-;;:::i;59631:210::-;;;;;;;;;;-1:-1:-1;59631:210:0;;;;;:::i;:::-;;:::i;54545:40::-;;;;;;;;;;-1:-1:-1;54545:40:0;;;;;;;;;;;57255:490;;;;;;;;;;-1:-1:-1;57255:490:0;;;;;:::i;:::-;;:::i;56660:472::-;;;;;;;;;;-1:-1:-1;56660:472:0;;;;;:::i;:::-;;:::i;54467:31::-;;;;;;;;;;-1:-1:-1;54467:31:0;;;;;;;;;;;7241:6:1;7229:19;;;7211:38;;7199:2;7184:18;54467:31:0;7067:188:1;35097:164:0;;;;;;;;;;-1:-1:-1;35097:164:0;;;;;:::i;:::-;;:::i;48927:201::-;;;;;;;;;;-1:-1:-1;48927:201:0;;;;;:::i;:::-;;:::i;54592:43::-;;;;;;;;;;-1:-1:-1;54592:43:0;;;;;;;;;;;29847:305;29949:4;-1:-1:-1;;;;;;29986:40:0;;-1:-1:-1;;;29986:40:0;;:105;;-1:-1:-1;;;;;;;30043:48:0;;-1:-1:-1;;;30043:48:0;29986:105;:158;;;-1:-1:-1;;;;;;;;;;19881:40:0;;;30108:36;29966:178;29847:305;-1:-1:-1;;29847:305:0:o;57143:97::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;;;;;;;;;57212:9:::1;:22:::0;;-1:-1:-1;;57212:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;57143:97::o;32960:100::-;33014:13;33047:5;33040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32960:100;:::o;34463:204::-;34531:7;34556:16;34564:7;34556;:16::i;:::-;34551:64;;34581:34;;-1:-1:-1;;;34581:34:0;;;;;;;;;;;34551:64;-1:-1:-1;34635:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34635:24:0;;34463:204::o;34026:371::-;34099:13;34115:24;34131:7;34115:15;:24::i;:::-;34099:40;;34160:5;-1:-1:-1;;;;;34154:11:0;:2;-1:-1:-1;;;;;34154:11:0;;34150:48;;34174:24;;-1:-1:-1;;;34174:24:0;;;;;;;;;;;34150:48;8322:10;-1:-1:-1;;;;;34215:21:0;;;;;;:63;;-1:-1:-1;34241:37:0;34258:5;8322:10;35097:164;:::i;34241:37::-;34240:38;34215:63;34211:138;;;34302:35;;-1:-1:-1;;;34302:35:0;;;;;;;;;;;34211:138;34361:28;34370:2;34374:7;34383:5;34361:8;:28::i;:::-;34088:309;34026:371;;:::o;58220:129::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58313:14:::1;:30:::0;58220:129::o;58116:102::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58190:9:::1;:22;58202:10:::0;58190:9;:22:::1;:::i;:::-;;58116:102:::0;:::o;59293:159::-;59394:4;51894:42;53034:43;:47;53030:699;;53321:10;-1:-1:-1;;;;;53313:18:0;;;53309:85;;59407:39:::1;59428:4;59434:2;59438:7;59407:20;:39::i;:::-;53372:7:::0;;53309:85;53454:67;;-1:-1:-1;;;53454:67:0;;53503:4;53454:67;;;10687:34:1;53510:10:0;10737:18:1;;;10730:43;51894:42:0;;53454:40;;10622:18:1;;53454:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;53550:61:0;;-1:-1:-1;;;53550:61:0;;53599:4;53550:61;;;10687:34:1;-1:-1:-1;;;;;10757:15:1;;10737:18;;;10730:43;51894:42:0;;53550:40;;10622:18:1;;53550:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53408:310;;53672:30;;-1:-1:-1;;;53672:30:0;;53691:10;53672:30;;;2032:51:1;2005:18;;53672:30:0;1886:203:1;53408:310:0;59407:39:::1;59428:4;59434:2;59438:7;59407:20;:39::i;:::-;59293:159:::0;;;;:::o;56328:326::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;56411:18:::1;56439:13;28953:1:::0;29350:12;29140:7;29334:13;:28;-1:-1:-1;;29334:46:0;;29096:303;56439:13:::1;56497:9;::::0;56411:42;;-1:-1:-1;56497:9:0::1;;56468:25;56482:11:::0;56411:42;56468:25:::1;:::i;:::-;:38;;;;56460:70;;;::::0;-1:-1:-1;;;56460:70:0;;11541:2:1;56460:70:0::1;::::0;::::1;11523:21:1::0;11580:2;11560:18;;;11553:30;-1:-1:-1;;;11599:18:1;;;11592:49;11658:18;;56460:70:0::1;11339:343:1::0;56460:70:0::1;56538:34;56548:9;56560:11;56538:34;;:9;:34::i;57899:102::-:0;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;57973:9:::1;:22;57985:10:::0;57973:9;:22:::1;:::i;58355:71::-:0;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58412:6:::1;::::0;;-1:-1:-1;;58402:16:0;::::1;58412:6;::::0;;::::1;58411:7;58402:16;::::0;;58355:71::o;58513:70::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58572:6:::1;::::0;;-1:-1:-1;;58562:16:0;::::1;58572:6;::::0;;;::::1;;;58571:7;58562:16:::0;;::::1;;::::0;;58513:70::o;58707:475::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;4494:1:::1;5092:7;;:19:::0;5084:63:::1;;;::::0;-1:-1:-1;;;5084:63:0;;11889:2:1;5084:63:0::1;::::0;::::1;11871:21:1::0;11928:2;11908:18;;;11901:30;11967:33;11947:18;;;11940:61;12018:18;;5084:63:0::1;11687:355:1::0;5084:63:0::1;4494:1;5225:7;:18:::0;59004:7:::2;59025;48090:6:::0;;-1:-1:-1;;;;;48090:6:0;;48017:87;59025:7:::2;-1:-1:-1::0;;;;;59017:21:0::2;59046;59017:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59003:69;;;59087:2;59079:11;;;::::0;::::2;;-1:-1:-1::0;4450:1:0::1;5404:7;:22:::0;58707:475::o;59458:167::-;59563:4;51894:42;53034:43;:47;53030:699;;53321:10;-1:-1:-1;;;;;53313:18:0;;;53309:85;;59576:43:::1;59601:4;59607:2;59611:7;59576:24;:43::i;53309:85::-:0;53454:67;;-1:-1:-1;;;53454:67:0;;53503:4;53454:67;;;10687:34:1;53510:10:0;10737:18:1;;;10730:43;51894:42:0;;53454:40;;10622:18:1;;53454:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;53550:61:0;;-1:-1:-1;;;53550:61:0;;53599:4;53550:61;;;10687:34:1;-1:-1:-1;;;;;10757:15:1;;10737:18;;;10730:43;51894:42:0;;53550:40;;10622:18:1;;53550:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53408:310;;53672:30;;-1:-1:-1;;;53672:30:0;;53691:10;53672:30;;;2032:51:1;2005:18;;53672:30:0;1886:203:1;53408:310:0;59576:43:::1;59601:4;59607:2;59611:7;59576:24;:43::i;58432:76::-:0;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58488:4:::1;:12:::0;58432:76::o;57752:134::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;57826:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;57826:35:0;;::::1;::::0;;;::::1;::::0;;57752:134::o;32768:125::-;32832:7;32859:21;32872:7;32859:12;:21::i;:::-;:26;;32768:125;-1:-1:-1;;32768:125:0:o;30216:206::-;30280:7;-1:-1:-1;;;;;30304:19:0;;30300:60;;30332:28;;-1:-1:-1;;;30332:28:0;;;;;;;;;;;30300:60;-1:-1:-1;;;;;;30386:19:0;;;;;:12;:19;;;;;:27;;;;30216:206::o;48669:103::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;48734:30:::1;48761:1;48734:18;:30::i;:::-;48669:103::o:0;58009:102::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58083:9:::1;:22;58095:10:::0;58083:9;:22:::1;:::i;33129:104::-:0;33185:13;33218:7;33211:14;;;;;:::i;55182:1140::-;55096:9;55109:10;55096:23;55088:66;;;;-1:-1:-1;;;55088:66:0;;12459:2:1;55088:66:0;;;12441:21:1;12498:2;12478:18;;;12471:30;12537:32;12517:18;;;12510:60;12587:18;;55088:66:0;12257:354:1;55088:66:0;55287:6:::1;::::0;::::1;;55286:7;55278:43;;;::::0;-1:-1:-1;;;55278:43:0;;12818:2:1;55278:43:0::1;::::0;::::1;12800:21:1::0;12857:2;12837:18;;;12830:30;12896:25;12876:18;;;12869:53;12939:18;;55278:43:0::1;12616:347:1::0;55278:43:0::1;55366:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;55336:43;;55352:11;55336:13;28953:1:::0;29350:12;29140:7;29334:13;:28;-1:-1:-1;;29334:46:0;;29096:303;55336:13:::1;:27;;;;:::i;:::-;:43;55328:63;;;::::0;-1:-1:-1;;;55328:63:0;;13300:2:1;55328:63:0::1;::::0;::::1;13282:21:1::0;13339:1;13319:18;;;13312:29;-1:-1:-1;;;13357:18:1;;;13350:37;13404:18;;55328:63:0::1;13098:330:1::0;55328:63:0::1;55447:22;::::0;;;::::1;;;55432:11:::0;55408:21:::1;55418:10;55408:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;55399:103;;;::::0;-1:-1:-1;;;55399:103:0;;13635:2:1;55399:103:0::1;::::0;::::1;13617:21:1::0;13674:2;13654:18;;;13647:30;13713;13693:18;;;13686:58;13761:18;;55399:103:0::1;13433:352:1::0;55399:103:0::1;55557:14;;55543:11;55520:20;;:34;;;;:::i;:::-;:51;55517:759;;;55629:9;55613:11;55606:4;;:18;;;;:::i;:::-;55605:33;;55583:107;;;::::0;-1:-1:-1;;;55583:107:0;;14165:2:1;55583:107:0::1;::::0;::::1;14147:21:1::0;14204:2;14184:18;;;14177:30;-1:-1:-1;;;14223:18:1;;;14216:54;14287:18;;55583:107:0::1;13963:348:1::0;55583:107:0::1;55517:759;;;55763:26;::::0;;;::::1;;;55749:11:::0;55725:21:::1;55735:10;55725:9;:21::i;:::-;:35;;;;:::i;:::-;:64;55721:548;;;55848:9;55832:11;55825:4;;:18;;;;:::i;:::-;55824:33;;55802:107;;;::::0;-1:-1:-1;;;55802:107:0;;14165:2:1;55802:107:0::1;::::0;::::1;14147:21:1::0;14204:2;14184:18;;;14177:30;-1:-1:-1;;;14223:18:1;;;14216:54;14287:18;;55802:107:0::1;13963:348:1::0;55802:107:0::1;55957:18;::::0;;;::::1;;;55942:33:::0;::::1;;55920:117;;;;-1:-1:-1::0;;;55920:117:0::1;;;;;;;:::i;55721:548::-;56111:26;::::0;;;::::1;;;56096:41:::0;::::1;;56070:137;;;;-1:-1:-1::0;;;56070:137:0::1;;;;;;;:::i;:::-;56246:11;56222:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;55721:548:0::1;56282:34;56292:10;56304:11;56282:9;:34::i;:::-;55182:1140:::0;:::o;34739:287::-;8322:10;-1:-1:-1;;;;;34838:24:0;;;34834:54;;34871:17;;-1:-1:-1;;;34871:17:0;;;;;;;;;;;34834:54;8322:10;34901:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34901:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34901:53:0;;;;;;;;;;34970:48;;540:41:1;;;34901:42:0;;8322:10;34970:48;;513:18:1;34970:48:0;;;;;;;34739:287;;:::o;58589:107::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;58661:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;58661:27:0;;::::1;::::0;;;::::1;::::0;;58589:107::o;59631:210::-;59770:4;51894:42;53034:43;:47;53030:699;;53321:10;-1:-1:-1;;;;;53313:18:0;;;53309:85;;59786:49:::1;59811:4;59817:2;59821:7;59830:4;59786:24;:49::i;:::-;53372:7:::0;;53309:85;53454:67;;-1:-1:-1;;;53454:67:0;;53503:4;53454:67;;;10687:34:1;53510:10:0;10737:18:1;;;10730:43;51894:42:0;;53454:40;;10622:18:1;;53454:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;53550:61:0;;-1:-1:-1;;;53550:61:0;;53599:4;53550:61;;;10687:34:1;-1:-1:-1;;;;;10757:15:1;;10737:18;;;10730:43;51894:42:0;;53550:40;;10622:18:1;;53550:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53408:310;;53672:30;;-1:-1:-1;;;53672:30:0;;53691:10;53672:30;;;2032:51:1;2005:18;;53672:30:0;1886:203:1;53408:310:0;59786:49:::1;59811:4;59817:2;59821:7;59830:4;59786:24;:49::i;:::-;59631:210:::0;;;;;:::o;57255:490::-;57354:13;57395:17;57403:8;57395:7;:17::i;:::-;57379:98;;;;-1:-1:-1;;;57379:98:0;;14921:2:1;57379:98:0;;;14903:21:1;14960:2;14940:18;;;14933:30;14999:34;14979:18;;;14972:62;-1:-1:-1;;;15050:18:1;;;15043:45;15105:19;;57379:98:0;14719:411:1;57379:98:0;57495:6;;;;;;;:15;;57505:5;57495:15;57490:50;;57527:9;57520:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57255:490;;;:::o;57490:50::-;57554:28;57585:10;:8;:10::i;:::-;57554:41;;57640:1;57615:14;57609:28;:32;:130;;;;;;;;;;;;;;;;;57677:14;57693:19;:8;:17;:19::i;:::-;57714:9;57660:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57609:130;57602:137;57255:490;-1:-1:-1;;;57255:490:0:o;56660:472::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;56759:18:::1;56787:13;28953:1:::0;29350:12;29140:7;29334:13;:28;-1:-1:-1;;29334:46:0;;29096:303;56787:13:::1;56759:42:::0;-1:-1:-1;56809:16:0::1;56830:36;56850:9:::0;56830:36:::1;::::0;::::1;;:::i;:::-;56910:9;::::0;56809:57;;-1:-1:-1;56910:9:0::1;::::0;;::::1;::::0;56881:25:::1;::::0;56809:57;;56881:25;::::1;;:::i;:::-;:38;;56873:70;;;::::0;-1:-1:-1;;;56873:70:0;;11541:2:1;56873:70:0::1;::::0;::::1;11523:21:1::0;11580:2;11560:18;;;11553:30;-1:-1:-1;;;11599:18:1;;;11592:49;11658:18;;56873:70:0::1;11339:343:1::0;56873:70:0::1;56956:9;56951:116;56971:20:::0;;::::1;56951:116;;;57013:42;57023:9;;57033:1;57023:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57037:17;57013:42;;:9;:42::i;:::-;56993:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56951:116;;;-1:-1:-1::0;;;;;;56660:472:0:o;35097:164::-;-1:-1:-1;;;;;35218:25:0;;;35194:4;35218:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35097:164::o;48927:201::-;48090:6;;-1:-1:-1;;;;;48090:6:0;8322:10;48237:23;48229:69;;;;-1:-1:-1;;;48229:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49016:22:0;::::1;49008:73;;;::::0;-1:-1:-1;;;49008:73:0;;16870:2:1;49008:73:0::1;::::0;::::1;16852:21:1::0;16909:2;16889:18;;;16882:30;16948:34;16928:18;;;16921:62;-1:-1:-1;;;16999:18:1;;;16992:36;17045:19;;49008:73:0::1;16668:402:1::0;49008:73:0::1;49092:28;49111:8;49092:18;:28::i;36449:187::-:0;36506:4;36549:7;28953:1;36530:26;;:53;;;;;36570:13;;36560:7;:23;36530:53;:98;;;;-1:-1:-1;;36601:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36601:27:0;;;;36600:28;;36449:187::o;44619:196::-;44734:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44734:29:0;-1:-1:-1;;;;;44734:29:0;;;;;;;;;44779:28;;44734:24;;44779:28;;;;;;;44619:196;;;:::o;35328:170::-;35462:28;35472:4;35478:2;35482:7;35462:9;:28::i;36644:104::-;36713:27;36723:2;36727:8;36713:27;;;;;;;;;;;;:9;:27::i;35569:185::-;35707:39;35724:4;35730:2;35734:7;35707:39;;;;;;;;;;;;:16;:39::i;31597:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31708:7:0;;28953:1;31757:23;;:47;;;;;31791:13;;31784:4;:20;31757:47;31753:886;;;31825:31;31859:17;;;:11;:17;;;;;;;;;31825:51;;;;;;;;;-1:-1:-1;;;;;31825:51:0;;;;-1:-1:-1;;;31825:51:0;;;;;;;;;;;-1:-1:-1;;;31825:51:0;;;;;;;;;;;;;;31895:729;;31945:14;;-1:-1:-1;;;;;31945:28:0;;31941:101;;32009:9;31597:1109;-1:-1:-1;;;31597:1109:0:o;31941:101::-;-1:-1:-1;;;32384:6:0;32429:17;;;;:11;:17;;;;;;;;;32417:29;;;;;;;;;-1:-1:-1;;;;;32417:29:0;;;;;-1:-1:-1;;;32417:29:0;;;;;;;;;;;-1:-1:-1;;;32417:29:0;;;;;;;;;;;;;32477:28;32473:109;;32545:9;31597:1109;-1:-1:-1;;;31597:1109:0:o;32473:109::-;32344:261;;;31806:833;31753:886;32667:31;;-1:-1:-1;;;32667:31:0;;;;;;;;;;;49288:191;49381:6;;;-1:-1:-1;;;;;49398:17:0;;;-1:-1:-1;;;;;;49398:17:0;;;;;;;49431:40;;49381:6;;;49398:17;49381:6;;49431:40;;49362:16;;49431:40;49351:128;49288:191;:::o;35825:369::-;35992:28;36002:4;36008:2;36012:7;35992:9;:28::i;:::-;-1:-1:-1;;;;;36035:13:0;;9984:19;:23;;36035:76;;;;;36055:56;36086:4;36092:2;36096:7;36105:5;36055:30;:56::i;:::-;36054:57;36035:76;36031:156;;;36135:40;;-1:-1:-1;;;36135:40:0;;;;;;;;;;;59190:97;59243:13;59272:9;59265:16;;;;;:::i;5804:723::-;5860:13;6081:5;6090:1;6081:10;6077:53;;-1:-1:-1;;6108:10:0;;;;;;;;;;;;-1:-1:-1;;;6108:10:0;;;;;5804:723::o;6077:53::-;6155:5;6140:12;6196:78;6203:9;;6196:78;;6229:8;;;;:::i;:::-;;-1:-1:-1;6252:10:0;;-1:-1:-1;6260:2:0;6252:10;;:::i;:::-;;;6196:78;;;6284:19;6316:6;6306:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6306:17:0;;6284:39;;6334:154;6341:10;;6334:154;;6368:11;6378:1;6368:11;;:::i;:::-;;-1:-1:-1;6437:10:0;6445:2;6437:5;:10;:::i;:::-;6424:24;;:2;:24;:::i;:::-;6411:39;;6394:6;6401;6394:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6394:56:0;;;;;;;;-1:-1:-1;6465:11:0;6474:2;6465:11;;:::i;:::-;;;6334:154;;;6512:6;5804:723;-1:-1:-1;;;;5804:723:0:o;39562:2130::-;39677:35;39715:21;39728:7;39715:12;:21::i;:::-;39677:59;;39775:4;-1:-1:-1;;;;;39753:26:0;:13;:18;;;-1:-1:-1;;;;;39753:26:0;;39749:67;;39788:28;;-1:-1:-1;;;39788:28:0;;;;;;;;;;;39749:67;39829:22;8322:10;-1:-1:-1;;;;;39855:20:0;;;;:73;;-1:-1:-1;39892:36:0;39909:4;8322:10;35097:164;:::i;39892:36::-;39855:126;;;-1:-1:-1;8322:10:0;39945:20;39957:7;39945:11;:20::i;:::-;-1:-1:-1;;;;;39945:36:0;;39855:126;39829:153;;40000:17;39995:66;;40026:35;;-1:-1:-1;;;40026:35:0;;;;;;;;;;;39995:66;-1:-1:-1;;;;;40076:16:0;;40072:52;;40101:23;;-1:-1:-1;;;40101:23:0;;;;;;;;;;;40072:52;40245:35;40262:1;40266:7;40275:4;40245:8;:35::i;:::-;-1:-1:-1;;;;;40576:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40576:31:0;;;;;;;-1:-1:-1;;40576:31:0;;;;;;;40622:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40622:29:0;;;;;;;;;;;40702:20;;;:11;:20;;;;;;40737:18;;-1:-1:-1;;;;;;40770:49:0;;;;-1:-1:-1;;;40803:15:0;40770:49;;;;;;;;;;41093:11;;41153:24;;;;;41196:13;;40702:20;;41153:24;;41196:13;41192:384;;41406:13;;41391:11;:28;41387:174;;41444:20;;41513:28;;;;41487:54;;-1:-1:-1;;;41487:54:0;-1:-1:-1;;;;;;41487:54:0;;;-1:-1:-1;;;;;41444:20:0;;41487:54;;;;41387:174;40551:1036;;;41623:7;41619:2;-1:-1:-1;;;;;41604:27:0;41613:4;-1:-1:-1;;;;;41604:27:0;;;;;;;;;;;41642:42;59293:159;37111:163;37234:32;37240:2;37244:8;37254:5;37261:4;37234:5;:32::i;45307:667::-;45491:72;;-1:-1:-1;;;45491:72:0;;45470:4;;-1:-1:-1;;;;;45491:36:0;;;;;:72;;8322:10;;45542:4;;45548:7;;45557:5;;45491:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45491:72:0;;;;;;;;-1:-1:-1;;45491:72:0;;;;;;;;;;;;:::i;:::-;;;45487:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45725:6;:13;45742:1;45725:18;45721:235;;45771:40;;-1:-1:-1;;;45771:40:0;;;;;;;;;;;45721:235;45914:6;45908:13;45899:6;45895:2;45891:15;45884:38;45487:480;-1:-1:-1;;;;;;45610:55:0;-1:-1:-1;;;45610:55:0;;-1:-1:-1;45307:667:0;;;;;;:::o;37533:1775::-;37672:20;37695:13;-1:-1:-1;;;;;37723:16:0;;37719:48;;37748:19;;-1:-1:-1;;;37748:19:0;;;;;;;;;;;37719:48;37782:8;37794:1;37782:13;37778:44;;37804:18;;-1:-1:-1;;;37804:18:0;;;;;;;;;;;37778:44;-1:-1:-1;;;;;38173:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38232:49:0;;38173:44;;;;;;;;38232:49;;;;-1:-1:-1;;38173:44:0;;;;;;38232:49;;;;;;;;;;;;;;;;38298:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38348:66:0;;;;-1:-1:-1;;;38398:15:0;38348:66;;;;;;;;;;38298:25;38495:23;;;38539:4;:23;;;;-1:-1:-1;;;;;;38547:13:0;;9984:19;:23;;38547:15;38535:641;;;38583:314;38614:38;;38639:12;;-1:-1:-1;;;;;38614:38:0;;;38631:1;;38614:38;;38631:1;;38614:38;38680:69;38719:1;38723:2;38727:14;;;;;;38743:5;38680:30;:69::i;:::-;38675:174;;38785:40;;-1:-1:-1;;;38785:40:0;;;;;;;;;;;38675:174;38892:3;38876:12;:19;38583:314;;38978:12;38961:13;;:29;38957:43;;38992:8;;;38957:43;38535:641;;;39041:120;39072:40;;39097:14;;;;;-1:-1:-1;;;;;39072:40:0;;;39089:1;;39072:40;;39089:1;;39072:40;39156:3;39140:12;:19;39041:120;;38535:641;-1:-1:-1;39190:13:0;:28;39240:60;59293: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;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2272:254;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2531:127::-;2592:10;2587:3;2583:20;2580:1;2573:31;2623:4;2620:1;2613:15;2647:4;2644:1;2637:15;2663:632;2728:5;2758:18;2799:2;2791:6;2788:14;2785:40;;;2805:18;;:::i;:::-;2880:2;2874:9;2848:2;2934:15;;-1:-1:-1;;2930:24:1;;;2956:2;2926:33;2922:42;2910:55;;;2980:18;;;3000:22;;;2977:46;2974:72;;;3026:18;;:::i;:::-;3066:10;3062:2;3055:22;3095:6;3086:15;;3125:6;3117;3110:22;3165:3;3156:6;3151:3;3147:16;3144:25;3141:45;;;3182:1;3179;3172:12;3141:45;3232:6;3227:3;3220:4;3212:6;3208:17;3195:44;3287:1;3280:4;3271:6;3263;3259:19;3255:30;3248:41;;;;2663:632;;;;;:::o;3300:451::-;3369:6;3422:2;3410:9;3401:7;3397:23;3393:32;3390:52;;;3438:1;3435;3428:12;3390:52;3478:9;3465:23;3511:18;3503:6;3500:30;3497:50;;;3543:1;3540;3533:12;3497:50;3566:22;;3619:4;3611:13;;3607:27;-1:-1:-1;3597:55:1;;3648:1;3645;3638:12;3597:55;3671:74;3737:7;3732:2;3719:16;3714:2;3710;3706:11;3671:74;:::i;3938:328::-;4015:6;4023;4031;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4123:29;4142:9;4123:29;:::i;:::-;4113:39;;4171:38;4205:2;4194:9;4190:18;4171:38;:::i;:::-;4161:48;;4256:2;4245:9;4241:18;4228:32;4218:42;;3938:328;;;;;:::o;4271:258::-;4338:6;4346;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;4438:28;4456:9;4438:28;:::i;:::-;4428:38;;4485;4519:2;4508:9;4504:18;4485:38;:::i;:::-;4475:48;;4271:258;;;;;:::o;4534:156::-;4600:20;;4660:4;4649:16;;4639:27;;4629:55;;4680:1;4677;4670:12;4695:182;4752:6;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4844:27;4861:9;4844:27;:::i;4882:186::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5033:29;5052:9;5033:29;:::i;5262:118::-;5348:5;5341:13;5334:21;5327:5;5324:32;5314:60;;5370:1;5367;5360:12;5385:315;5450:6;5458;5511:2;5499:9;5490:7;5486:23;5482:32;5479:52;;;5527:1;5524;5517:12;5479:52;5550:29;5569:9;5550:29;:::i;:::-;5540:39;;5629:2;5618:9;5614:18;5601:32;5642:28;5664:5;5642:28;:::i;:::-;5689:5;5679:15;;;5385:315;;;;;:::o;5705:667::-;5800:6;5808;5816;5824;5877:3;5865:9;5856:7;5852:23;5848:33;5845:53;;;5894:1;5891;5884:12;5845:53;5917:29;5936:9;5917:29;:::i;:::-;5907:39;;5965:38;5999:2;5988:9;5984:18;5965:38;:::i;:::-;5955:48;;6050:2;6039:9;6035:18;6022:32;6012:42;;6105:2;6094:9;6090:18;6077:32;6132:18;6124:6;6121:30;6118:50;;;6164:1;6161;6154:12;6118:50;6187:22;;6240:4;6232:13;;6228:27;-1:-1:-1;6218:55:1;;6269:1;6266;6259:12;6218:55;6292:74;6358:7;6353:2;6340:16;6335:2;6331;6327:11;6292:74;:::i;:::-;6282:84;;;5705:667;;;;;;;:::o;6377:685::-;6470:6;6478;6486;6539:2;6527:9;6518:7;6514:23;6510:32;6507:52;;;6555:1;6552;6545:12;6507:52;6578:27;6595:9;6578:27;:::i;:::-;6568:37;;6656:2;6645:9;6641:18;6628:32;6679:18;6720:2;6712:6;6709:14;6706:34;;;6736:1;6733;6726:12;6706:34;6774:6;6763:9;6759:22;6749:32;;6819:7;6812:4;6808:2;6804:13;6800:27;6790:55;;6841:1;6838;6831:12;6790:55;6881:2;6868:16;6907:2;6899:6;6896:14;6893:34;;;6923:1;6920;6913:12;6893:34;6976:7;6971:2;6961:6;6958:1;6954:14;6950:2;6946:23;6942:32;6939:45;6936:65;;;6997:1;6994;6987:12;6936:65;7028:2;7024;7020:11;7010:21;;7050:6;7040:16;;;;;6377:685;;;;;:::o;7260:260::-;7328:6;7336;7389:2;7377:9;7368:7;7364:23;7360:32;7357:52;;;7405:1;7402;7395:12;7357:52;7428:29;7447:9;7428:29;:::i;7525:356::-;7727:2;7709:21;;;7746:18;;;7739:30;7805:34;7800:2;7785:18;;7778:62;7872:2;7857:18;;7525:356::o;7886:380::-;7965:1;7961:12;;;;8008;;;8029:61;;8083:4;8075:6;8071:17;8061:27;;8029:61;8136:2;8128:6;8125:14;8105:18;8102:38;8099:161;;8182:10;8177:3;8173:20;8170:1;8163:31;8217:4;8214:1;8207:15;8245:4;8242:1;8235:15;8099:161;;7886:380;;;:::o;8397:545::-;8499:2;8494:3;8491:11;8488:448;;;8535:1;8560:5;8556:2;8549:17;8605:4;8601:2;8591:19;8675:2;8663:10;8659:19;8656:1;8652:27;8646:4;8642:38;8711:4;8699:10;8696:20;8693:47;;;-1:-1:-1;8734:4:1;8693:47;8789:2;8784:3;8780:12;8777:1;8773:20;8767:4;8763:31;8753:41;;8844:82;8862:2;8855:5;8852:13;8844:82;;;8907:17;;;8888:1;8877:13;8844:82;;9118:1352;9244:3;9238:10;9271:18;9263:6;9260:30;9257:56;;;9293:18;;:::i;:::-;9322:97;9412:6;9372:38;9404:4;9398:11;9372:38;:::i;:::-;9366:4;9322:97;:::i;:::-;9474:4;;9538:2;9527:14;;9555:1;9550:663;;;;10257:1;10274:6;10271:89;;;-1:-1:-1;10326:19:1;;;10320:26;10271:89;-1:-1:-1;;9075:1:1;9071:11;;;9067:24;9063:29;9053:40;9099:1;9095:11;;;9050:57;10373:81;;9520:944;;9550:663;8344:1;8337:14;;;8381:4;8368:18;;-1:-1:-1;;9586:20:1;;;9704:236;9718:7;9715:1;9712:14;9704:236;;;9807:19;;;9801:26;9786:42;;9899:27;;;;9867:1;9855:14;;;;9734:19;;9704:236;;;9708:3;9968:6;9959:7;9956:19;9953:201;;;10029:19;;;10023:26;-1:-1:-1;;10112:1:1;10108:14;;;10124:3;10104:24;10100:37;10096:42;10081:58;10066:74;;9953:201;-1:-1:-1;;;;;10200:1:1;10184:14;;;10180:22;10167:36;;-1:-1:-1;9118:1352:1:o;10784:245::-;10851:6;10904:2;10892:9;10883:7;10879:23;10875:32;10872:52;;;10920:1;10917;10910:12;10872:52;10952:9;10946:16;10971:28;10993:5;10971:28;:::i;11034:127::-;11095:10;11090:3;11086:20;11083:1;11076:31;11126:4;11123:1;11116:15;11150:4;11147:1;11140:15;11166:168;11233:6;11259:10;;;11271;;;11255:27;;11294:11;;;11291:37;;;11308:18;;:::i;:::-;11291:37;11166:168;;;;:::o;12968:125::-;13033:9;;;13054:10;;;13051:36;;;13067:18;;:::i;13790:168::-;13863:9;;;13894;;13911:15;;;13905:22;;13891:37;13881:71;;13932:18;;:::i;14316:398::-;14518:2;14500:21;;;14557:2;14537:18;;;14530:30;14596:34;14591:2;14576:18;;14569:62;-1:-1:-1;;;14662:2:1;14647:18;;14640:32;14704:3;14689:19;;14316:398::o;15135:1256::-;15359:3;15397:6;15391:13;15423:4;15436:64;15493:6;15488:3;15483:2;15475:6;15471:15;15436:64;:::i;:::-;15563:13;;15522:16;;;;15585:68;15563:13;15522:16;15620:15;;;15585:68;:::i;:::-;15742:13;;15675:20;;;15715:1;;15780:36;15742:13;15780:36;:::i;:::-;15835:1;15852:18;;;15879:141;;;;16034:1;16029:337;;;;15845:521;;15879:141;-1:-1:-1;;15914:24:1;;15900:39;;15991:16;;15984:24;15970:39;;15959:51;;;-1:-1:-1;15879:141:1;;16029:337;16060:6;16057:1;16050:17;16108:2;16105:1;16095:16;16133:1;16147:169;16161:8;16158:1;16155:15;16147:169;;;16243:14;;16228:13;;;16221:37;16286:16;;;;16178:10;;16147:169;;;16151:3;;16347:8;16340:5;16336:20;16329:27;;15845:521;-1:-1:-1;16382:3:1;;15135:1256;-1:-1:-1;;;;;;;;;;15135:1256:1:o;16396:127::-;16457:10;16452:3;16448:20;16445:1;16438:31;16488:4;16485:1;16478:15;16512:4;16509:1;16502:15;16528:135;16567:3;16588:17;;;16585:43;;16608:18;;:::i;:::-;-1:-1:-1;16655:1:1;16644:13;;16528:135::o;17075:127::-;17136:10;17131:3;17127:20;17124:1;17117:31;17167:4;17164:1;17157:15;17191:4;17188:1;17181:15;17207:120;17247:1;17273;17263:35;;17278:18;;:::i;:::-;-1:-1:-1;17312:9:1;;17207:120::o;17332:128::-;17399:9;;;17420:11;;;17417:37;;;17434:18;;:::i;17465:112::-;17497:1;17523;17513:35;;17528:18;;:::i;:::-;-1:-1:-1;17562:9:1;;17465:112::o;17582:489::-;-1:-1:-1;;;;;17851:15:1;;;17833:34;;17903:15;;17898:2;17883:18;;17876:43;17950:2;17935:18;;17928:34;;;17998:3;17993:2;17978:18;;17971:31;;;17776:4;;18019:46;;18045:19;;18037:6;18019:46;:::i;:::-;18011:54;17582:489;-1:-1:-1;;;;;;17582:489:1:o;18076:249::-;18145:6;18198:2;18186:9;18177:7;18173:23;18169:32;18166:52;;;18214:1;18211;18204:12;18166:52;18246:9;18240:16;18265:30;18289:5;18265:30;:::i

Swarm Source

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