ETH Price: $3,386.45 (-1.45%)
Gas: 2 Gwei

Token

OmniAmongPunks (AP)
 

Overview

Max Total Supply

0 AP

Holders

242

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
localhotmoms.eth
Balance
10 AP
0x2d19d78b7172464f295c200b18225f566899f2e6
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:
OmniAmongPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol



pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

// File: contracts/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

// File: contracts/interfaces/ILayerZeroReceiver.sol



pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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);
            }
        }
    }
}

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}










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


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




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

    
}

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



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


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

pragma solidity ^0.8.0;



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

    // Token name
    string private _name;


    // Token symbol
    string private _symbol;

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

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

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

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


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

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

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

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

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

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

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

        

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.0;



error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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;
    }

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

    
    
    string public uriSuffix = ".json";

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

   

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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 {}
}



// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/NonblockingReceiver.sol


pragma solidity ^0.8.6;

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);

    function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(_srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), 
            "NonblockingReceiver: invalid source sending contract");

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload));
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public {
        // only internal transaction
        require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");

        // handle incoming message
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal;

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam);
    }

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
        require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload");
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner {
        trustedRemoteLookup[_chainId] = _trustedRemote;
    }
}

pragma solidity ^0.8.7;

contract OmniAmongPunks is Ownable, ERC721A, NonblockingReceiver {

    using Strings for uint256;

    address public _owner;
    
    uint256 nextTokenId = 0;

    uint256 MAX_NETWORK_MINT = 0;

    uint256 private price = 0;
    
    uint256 public freeMintAmount = 0;

    string public hiddenMetadataUri;

    string private baseURI;
      
    bool public saleOpen = true;

    bool public revealed = false;

    event Minted(uint256 totalMinted);

    uint gasForDestinationLzReceive = 350000;

    constructor(string memory hiddenMetadataUri_, string memory baseURI_, address _layerZeroEndpoint, uint256 _nextTokenId, uint256 _maxTokenId, uint256 _price, uint256 _freeMint) ERC721A("OmniAmongPunks", "AP") { 
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
        hiddenMetadataUri = hiddenMetadataUri_;
        nextTokenId = _nextTokenId;
        MAX_NETWORK_MINT = _maxTokenId;
        price = _price;
        freeMintAmount = _freeMint;
    }

    // mint function
    function mint(address _to, uint256 numTokens) external payable {

        require(nextTokenId + numTokens <= MAX_NETWORK_MINT, "Exceeds maximum supply");
        require(numTokens > 0, "Minimum 1 NFT has to be minted per transaction");

        if (msg.sender != owner() && (nextTokenId + numTokens) > freeMintAmount) {
            require(saleOpen, "Sale is not open yet");
            require(
                msg.value >= price * numTokens,
                "Ether sent with this transaction is not correct"
            );
        }

        if(msg.sender != owner()) {
            require(
                numTokens <= 5,
                "Maximum 5 NFTs can be minted per transaction"
            );
        }
        
        nextTokenId += numTokens;      
        _safeMint(_to, numTokens);
        emit Minted(numTokens);      
    }


    // This function transfers the nft from your address on the 
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint tokenId) public payable {
        require(msg.sender == ownerOf(tokenId), "You must own the token to traverse");
        require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel");

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender, tokenId);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "GG: msg.value not enough to cover messageFee. Send gas for message fees");

        endpoint.send{value: msg.value}(
            _chainId,                           // destination chainId
            trustedRemoteLookup[_chainId],      // destination address of nft contract
            payload,                            // abi.encoded()'ed bytes
            payable(msg.sender),                // refund address
            address(0x0),                       // 'zroPaymentAddress' unused for this
            adapterParams                       // txParameters 
        );
    }  

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }

    function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

    function donate() external payable {
        // thank you
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        
       if (revealed == false) {
         return hiddenMetadataUri;
         }


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

    // This allows the devs to receive kind donations
    function withdraw(uint amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "GG: Failed to withdraw Ether");
    }

    // just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    // ------------------
    // Internal Functions
    // ------------------

    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) override internal {
        // decode
        (address toAddr, uint tokenId) = abi.decode(_payload, (address, uint));

         //mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
    }  

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"hiddenMetadataUri_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_nextTokenId","type":"uint256"},{"internalType":"uint256","name":"_maxTokenId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_freeMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","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":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintAmount","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"revealed","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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","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":[{"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":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160049190620001c3565b506000600e819055600f81905560108190556011556014805461ffff19166001179055620557306015553480156200005f57600080fd5b50604051620030c2380380620030c2833981016040819052620000829162000320565b6040518060400160405280600e81526020016d4f6d6e69416d6f6e6750756e6b7360901b81525060405180604001604052806002815260200161041560f41b8152506000620000d6620001bf60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350815162000135906003906020850190620001c3565b5080516200014b906005906020840190620001c3565b5050600d8054336001600160a01b031991821617909155600a80549091166001600160a01b0388161790555085516200018c906013906020890190620001c3565b508651620001a29060129060208a0190620001c3565b50600e93909355600f919091556010556011555062000427915050565b3390565b828054620001d190620003d4565b90600052602060002090601f016020900481019282620001f5576000855562000240565b82601f106200021057805160ff191683800117855562000240565b8280016001018555821562000240579182015b828111156200024057825182559160200191906001019062000223565b506200024e92915062000252565b5090565b5b808211156200024e576000815560010162000253565b600082601f8301126200027b57600080fd5b81516001600160401b038082111562000298576200029862000411565b604051601f8301601f19908116603f01168101908282118183101715620002c357620002c362000411565b81604052838152602092508683858801011115620002e057600080fd5b600091505b83821015620003045785820183015181830184015290820190620002e5565b83821115620003165760008385830101525b9695505050505050565b600080600080600080600060e0888a0312156200033c57600080fd5b87516001600160401b03808211156200035457600080fd5b620003628b838c0162000269565b985060208a01519150808211156200037957600080fd5b50620003888a828b0162000269565b60408a015190975090506001600160a01b0381168114620003a857600080fd5b80955050606088015193506080880151925060a0880151915060c0880151905092959891949750929550565b600181811c90821680620003e957607f821691505b602082108114156200040b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c8b80620004376000396000f3fe6080604052600436106102035760003560e01c80637533d78811610118578063b88d4fde116100a0578063e0a808531161006f578063e0a80853146105ec578063e985e9c51461060c578063eb8d72b714610655578063ed88c68e14610228578063f2fde38b1461067557600080fd5b8063b88d4fde14610586578063c87b56dd146105a6578063cf89fa03146105c6578063d1deba1f146105d957600080fd5b806395d89b41116100e757806395d89b411461050257806399288dbb14610517578063a22cb46514610531578063a45ba8e714610551578063b2bdfa7b1461056657600080fd5b80637533d788146104395780638da5cb5b146104595780638ee7491214610477578063943fb872146104e257600080fd5b80633a467e3d1161019b5780635503a0e81161016a5780635503a0e8146103af57806355f804b3146103c45780636352211e146103e457806370a0823114610404578063715018a61461042457600080fd5b80633a467e3d1461033957806340c10f191461035d57806342842e0e14610370578063518302271461039057600080fd5b8063095ea7b3116101d7578063095ea7b3146102b95780631c37a822146102d957806323b872dd146102f95780632e1a7d4d1461031957600080fd5b80621d35671461020857806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281575b600080fd5b34801561021457600080fd5b506102286102233660046126aa565b610695565b005b34801561023657600080fd5b5061024a6102453660046124da565b61088f565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746108e1565b60405161025691906128b1565b34801561028d57600080fd5b506102a161029c36600461273e565b610973565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102286102d4366004612493565b6109b7565b3480156102e557600080fd5b506102286102f43660046126aa565b610a45565b34801561030557600080fd5b506102286103143660046123b2565b610ab4565b34801561032557600080fd5b5061022861033436600461273e565b610abf565b34801561034557600080fd5b5061034f60115481565b604051908152602001610256565b61022861036b366004612493565b610b90565b34801561037c57600080fd5b5061022861038b3660046123b2565b610e0c565b34801561039c57600080fd5b5060145461024a90610100900460ff1681565b3480156103bb57600080fd5b50610274610e27565b3480156103d057600080fd5b506102286103df366004612514565b610eb5565b3480156103f057600080fd5b506102a16103ff36600461273e565b610ef2565b34801561041057600080fd5b5061034f61041f36600461232e565b610f04565b34801561043057600080fd5b50610228610f52565b34801561044557600080fd5b5061027461045436600461255c565b610fc6565b34801561046557600080fd5b506000546001600160a01b03166102a1565b34801561048357600080fd5b506104cd6104923660046125c9565b600b60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610256565b3480156104ee57600080fd5b506102286104fd36600461273e565b610fdf565b34801561050e57600080fd5b5061027461100e565b34801561052357600080fd5b5060145461024a9060ff1681565b34801561053d57600080fd5b5061022861054c36600461245e565b61101d565b34801561055d57600080fd5b506102746110b3565b34801561057257600080fd5b50600d546102a1906001600160a01b031681565b34801561059257600080fd5b506102286105a13660046123f3565b6110c0565b3480156105b257600080fd5b506102746105c136600461273e565b6110f4565b6102286105d4366004612722565b61121a565b6102286105e736600461261f565b6114fb565b3480156105f857600080fd5b506102286106073660046124bf565b611688565b34801561061857600080fd5b5061024a610627366004612379565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561066157600080fd5b50610228610670366004612577565b6116cc565b34801561068157600080fd5b5061022861069036600461232e565b611714565b600a546001600160a01b031633146106ac57600080fd5b61ffff84166000908152600c6020526040902080546106ca90612b65565b90508351148015610709575061ffff84166000908152600c60205260409081902090516106f791906127d3565b60405180910390208380519060200120145b6107775760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107a09087908790879087906004016129ae565b600060405180830381600087803b1580156107ba57600080fd5b505af19250505080156107cb575060015b610889576040518060400160405280825181526020018280519060200120815250600b60008661ffff1661ffff1681526020019081526020016000208460405161081591906127b7565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108809086908690869086906129ae565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806108c057506001600160e01b03198216635b5e139f60e01b145b806108db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546108f090612b65565b80601f016020809104026020016040519081016040528092919081815260200182805461091c90612b65565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b600061097e826117fe565b61099b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109c282610ef2565b9050806001600160a01b0316836001600160a01b031614156109f75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a175750610a158133610627565b155b15610a35576040516367d9dca160e11b815260040160405180910390fd5b610a4083838361182a565b505050565b333014610aa85760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161076e565b61088984848484611886565b610a408383836118b3565b6000546001600160a01b03163314610ae95760405162461bcd60e51b815260040161076e906128c4565b600d546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b36576040519150601f19603f3d011682016040523d82523d6000602084013e610b3b565b606091505b5050905080610b8c5760405162461bcd60e51b815260206004820152601c60248201527f47473a204661696c656420746f20776974686472617720457468657200000000604482015260640161076e565b5050565b600f5481600e54610ba19190612ad7565b1115610be85760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161076e565b60008111610c4f5760405162461bcd60e51b815260206004820152602e60248201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060448201526d32b9103a3930b739b0b1ba34b7b760911b606482015260840161076e565b6000546001600160a01b03163314801590610c78575060115481600e54610c769190612ad7565b115b15610d3b5760145460ff16610cc65760405162461bcd60e51b815260206004820152601460248201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604482015260640161076e565b80601054610cd49190612b03565b341015610d3b5760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606482015260840161076e565b6000546001600160a01b03163314610db3576005811115610db35760405162461bcd60e51b815260206004820152602c60248201527f4d6178696d756d2035204e4654732063616e206265206d696e7465642070657260448201526b103a3930b739b0b1ba34b7b760a11b606482015260840161076e565b80600e6000828254610dc59190612ad7565b90915550610dd590508282611ac7565b6040518181527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a15050565b610a40838383604051806020016040528060008152506110c0565b60048054610e3490612b65565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6090612b65565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b6000546001600160a01b03163314610edf5760405162461bcd60e51b815260040161076e906128c4565b8051610b8c906013906020840190612106565b6000610efd82611ae1565b5192915050565b60006001600160a01b038216610f2d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b6000546001600160a01b03163314610f7c5760405162461bcd60e51b815260040161076e906128c4565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600c6020526000908152604090208054610e3490612b65565b6000546001600160a01b031633146110095760405162461bcd60e51b815260040161076e906128c4565b601555565b6060600580546108f090612b65565b6001600160a01b0382163314156110475760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60128054610e3490612b65565b6110cb8484846118b3565b6110d784848484611bfc565b610889576040516368d2bf6b60e11b815260040160405180910390fd5b60606110ff826117fe565b61111c57604051630a14c4b560e41b815260040160405180910390fd5b601454610100900460ff166111bd576012805461113890612b65565b80601f016020809104026020016040519081016040528092919081815260200182805461116490612b65565b80156111b15780601f10611186576101008083540402835291602001916111b1565b820191906000526020600020905b81548152906001019060200180831161119457829003601f168201915b50505050509050919050565b60006111c7611d0b565b90508051600014156111e85760405180602001604052806000815250611213565b806111f284611d1a565b604051602001611203929190612845565b6040516020818303038152906040525b9392505050565b61122381610ef2565b6001600160a01b0316336001600160a01b03161461128e5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b606482015260840161076e565b61ffff82166000908152600c6020526040812080546112ac90612b65565b9050116113125760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161076e565b61131b81611e17565b60408051336020820152808201839052815180820383018152606082018352601554600160f01b60808401526082808401919091528351808403909101815260a2830193849052600a5463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb109061139e908990309089908790899060a6016128f9565b604080518083038186803b1580156113b557600080fd5b505afa1580156113c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ed9190612757565b509050803410156114765760405162461bcd60e51b815260206004820152604760248201527f47473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560448201527f72206d6573736167654665652e2053656e642067617320666f72206d657373616064820152666765206665657360c81b608482015260a40161076e565b600a5461ffff87166000908152600c6020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926114c1928c928b913391908b906004016129f7565b6000604051808303818588803b1580156114da57600080fd5b505af11580156114ee573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600b6020526040808220905161151c9087906127b7565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506115a35760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161076e565b8054821480156115cd5750806001015483836040516115c39291906127a7565b6040518091039020145b6116195760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161076e565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061164e908990899089908990899060040161294d565b600060405180830381600087803b15801561166857600080fd5b505af115801561167c573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146116b25760405162461bcd60e51b815260040161076e906128c4565b601480549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146116f65760405162461bcd60e51b815260040161076e906128c4565b61ffff83166000908152600c6020526040902061088990838361218a565b6000546001600160a01b0316331461173e5760405162461bcd60e51b815260040161076e906128c4565b6001600160a01b0381166117a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600154821080156108db575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000808280602001905181019061189d919061234b565b915091506118ab8282611ac7565b505050505050565b60006118be82611ae1565b80519091506000906001600160a01b0316336001600160a01b031614806118ec575081516118ec9033610627565b806119075750336118fc84610973565b6001600160a01b0316145b90508061192757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461195c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661198357604051633a954ecd60e21b815260040160405180910390fd5b611993600084846000015161182a565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a7d57600154811015611a7d57825160008281526006602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b8c828260405180602001604052806000815250611f94565b60408051606081018252600080825260208201819052918101919091526001548290811015611be357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611be15780516001600160a01b031615611b78579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bdc579392505050565b611b78565b505b604051636f96cda160e11b815260040160405180910390fd5b60006001600160a01b0384163b15611cff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c40903390899088908890600401612874565b602060405180830381600087803b158015611c5a57600080fd5b505af1925050508015611c8a575060408051601f3d908101601f19168201909252611c87918101906124f7565b60015b611ce5573d808015611cb8576040519150601f19603f3d011682016040523d82523d6000602084013e611cbd565b606091505b508051611cdd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d03565b5060015b949350505050565b6060601380546108f090612b65565b606081611d3e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d685780611d5281612ba0565b9150611d619050600a83612aef565b9150611d42565b6000816001600160401b03811115611d8257611d82612c11565b6040519080825280601f01601f191660200182016040528015611dac576020820181803683370190505b5090505b8415611d0357611dc1600183612b22565b9150611dce600a86612bbb565b611dd9906030612ad7565b60f81b818381518110611dee57611dee612bfb565b60200101906001600160f81b031916908160001a905350611e10600a86612aef565b9450611db0565b6000611e2282611ae1565b9050611e34600083836000015161182a565b80516001600160a01b039081166000908152600760209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260069094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b1916939093179055908501808352912054909116611f4b57600154811015611f4b57815160008281526006602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600280546001019055565b610a40838383600180546001600160a01b038516611fc457604051622e076360e81b815260040160405180910390fd5b83611fe25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526006909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120fd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120d357506120d16000888488611bfc565b155b156120f1576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161207c565b50600155611ac0565b82805461211290612b65565b90600052602060002090601f016020900481019282612134576000855561217a565b82601f1061214d57805160ff191683800117855561217a565b8280016001018555821561217a579182015b8281111561217a57825182559160200191906001019061215f565b506121869291506121fe565b5090565b82805461219690612b65565b90600052602060002090601f0160209004810192826121b8576000855561217a565b82601f106121d15782800160ff1982351617855561217a565b8280016001018555821561217a579182015b8281111561217a5782358255916020019190600101906121e3565b5b8082111561218657600081556001016121ff565b60006001600160401b038084111561222d5761222d612c11565b604051601f8501601f19908116603f0116810190828211818310171561225557612255612c11565b8160405280935085815286868601111561226e57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461229857600080fd5b919050565b60008083601f8401126122af57600080fd5b5081356001600160401b038111156122c657600080fd5b6020830191508360208285010111156122de57600080fd5b9250929050565b600082601f8301126122f657600080fd5b61121383833560208501612213565b803561ffff8116811461229857600080fd5b80356001600160401b038116811461229857600080fd5b60006020828403121561234057600080fd5b813561121381612c27565b6000806040838503121561235e57600080fd5b825161236981612c27565b6020939093015192949293505050565b6000806040838503121561238c57600080fd5b823561239781612c27565b915060208301356123a781612c27565b809150509250929050565b6000806000606084860312156123c757600080fd5b83356123d281612c27565b925060208401356123e281612c27565b929592945050506040919091013590565b6000806000806080858703121561240957600080fd5b843561241481612c27565b9350602085013561242481612c27565b92506040850135915060608501356001600160401b0381111561244657600080fd5b612452878288016122e5565b91505092959194509250565b6000806040838503121561247157600080fd5b823561247c81612c27565b915061248a60208401612288565b90509250929050565b600080604083850312156124a657600080fd5b82356124b181612c27565b946020939093013593505050565b6000602082840312156124d157600080fd5b61121382612288565b6000602082840312156124ec57600080fd5b813561121381612c3f565b60006020828403121561250957600080fd5b815161121381612c3f565b60006020828403121561252657600080fd5b81356001600160401b0381111561253c57600080fd5b8201601f8101841361254d57600080fd5b611d0384823560208401612213565b60006020828403121561256e57600080fd5b61121382612305565b60008060006040848603121561258c57600080fd5b61259584612305565b925060208401356001600160401b038111156125b057600080fd5b6125bc8682870161229d565b9497909650939450505050565b6000806000606084860312156125de57600080fd5b6125e784612305565b925060208401356001600160401b0381111561260257600080fd5b61260e868287016122e5565b925050604084013590509250925092565b60008060008060006080868803121561263757600080fd5b61264086612305565b945060208601356001600160401b038082111561265c57600080fd5b61266889838a016122e5565b955061267660408901612317565b9450606088013591508082111561268c57600080fd5b506126998882890161229d565b969995985093965092949392505050565b600080600080608085870312156126c057600080fd5b6126c985612305565b935060208501356001600160401b03808211156126e557600080fd5b6126f1888389016122e5565b94506126ff60408801612317565b9350606087013591508082111561271557600080fd5b50612452878288016122e5565b6000806040838503121561273557600080fd5b6124b183612305565b60006020828403121561275057600080fd5b5035919050565b6000806040838503121561276a57600080fd5b505080516020909101519092909150565b60008151808452612793816020860160208601612b39565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516127c9818460208701612b39565b9190910192915050565b60008083546127e181612b65565b600182811680156127f9576001811461280a57612839565b60ff19841687528287019450612839565b8760005260208060002060005b858110156128305781548a820152908401908201612817565b50505082870194505b50929695505050505050565b60008351612857818460208801612b39565b83519083019061286b818360208801612b39565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a79083018461277b565b9695505050505050565b602081526000611213602083018461277b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906129279083018661277b565b84151560608401528281036080840152612941818561277b565b98975050505050505050565b61ffff8616815260806020820152600061296a608083018761277b565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006129cb608083018661277b565b6001600160401b038516604084015282810360608401526129ec818561277b565b979650505050505050565b61ffff871681526000602060c08184015260008854612a1581612b65565b8060c087015260e0600180841660008114612a375760018114612a4c57612a7a565b60ff1985168984015261010089019550612a7a565b8d6000528660002060005b85811015612a725781548b8201860152908301908801612a57565b8a0184019650505b50505050508381036040850152612a91818961277b565b915050612aa960608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612aca818561277b565b9998505050505050505050565b60008219821115612aea57612aea612bcf565b500190565b600082612afe57612afe612be5565b500490565b6000816000190483118215151615612b1d57612b1d612bcf565b500290565b600082821015612b3457612b34612bcf565b500390565b60005b83811015612b54578181015183820152602001612b3c565b838111156108895750506000910152565b600181811c90821680612b7957607f821691505b60208210811415612b9a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bb457612bb4612bcf565b5060010190565b600082612bca57612bca612be5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612c3c57600080fd5b50565b6001600160e01b031981168114612c3c57600080fdfea26469706673582212200f7a23577a6b18cdc45af7eb1d80a7326807804bbe1fd5ec2f29b3c45b09e10564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0500000000000000000000000000000000000000000000000000071afd498d000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50584a54356954795a50526f63356a36724e4b38336e3541394e4a375a354e77554c54615854787a6d615a342f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d656f684c346237326b6863594659727776313851364132654b464373434d443535353753774447676d3954592f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102035760003560e01c80637533d78811610118578063b88d4fde116100a0578063e0a808531161006f578063e0a80853146105ec578063e985e9c51461060c578063eb8d72b714610655578063ed88c68e14610228578063f2fde38b1461067557600080fd5b8063b88d4fde14610586578063c87b56dd146105a6578063cf89fa03146105c6578063d1deba1f146105d957600080fd5b806395d89b41116100e757806395d89b411461050257806399288dbb14610517578063a22cb46514610531578063a45ba8e714610551578063b2bdfa7b1461056657600080fd5b80637533d788146104395780638da5cb5b146104595780638ee7491214610477578063943fb872146104e257600080fd5b80633a467e3d1161019b5780635503a0e81161016a5780635503a0e8146103af57806355f804b3146103c45780636352211e146103e457806370a0823114610404578063715018a61461042457600080fd5b80633a467e3d1461033957806340c10f191461035d57806342842e0e14610370578063518302271461039057600080fd5b8063095ea7b3116101d7578063095ea7b3146102b95780631c37a822146102d957806323b872dd146102f95780632e1a7d4d1461031957600080fd5b80621d35671461020857806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281575b600080fd5b34801561021457600080fd5b506102286102233660046126aa565b610695565b005b34801561023657600080fd5b5061024a6102453660046124da565b61088f565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746108e1565b60405161025691906128b1565b34801561028d57600080fd5b506102a161029c36600461273e565b610973565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102286102d4366004612493565b6109b7565b3480156102e557600080fd5b506102286102f43660046126aa565b610a45565b34801561030557600080fd5b506102286103143660046123b2565b610ab4565b34801561032557600080fd5b5061022861033436600461273e565b610abf565b34801561034557600080fd5b5061034f60115481565b604051908152602001610256565b61022861036b366004612493565b610b90565b34801561037c57600080fd5b5061022861038b3660046123b2565b610e0c565b34801561039c57600080fd5b5060145461024a90610100900460ff1681565b3480156103bb57600080fd5b50610274610e27565b3480156103d057600080fd5b506102286103df366004612514565b610eb5565b3480156103f057600080fd5b506102a16103ff36600461273e565b610ef2565b34801561041057600080fd5b5061034f61041f36600461232e565b610f04565b34801561043057600080fd5b50610228610f52565b34801561044557600080fd5b5061027461045436600461255c565b610fc6565b34801561046557600080fd5b506000546001600160a01b03166102a1565b34801561048357600080fd5b506104cd6104923660046125c9565b600b60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610256565b3480156104ee57600080fd5b506102286104fd36600461273e565b610fdf565b34801561050e57600080fd5b5061027461100e565b34801561052357600080fd5b5060145461024a9060ff1681565b34801561053d57600080fd5b5061022861054c36600461245e565b61101d565b34801561055d57600080fd5b506102746110b3565b34801561057257600080fd5b50600d546102a1906001600160a01b031681565b34801561059257600080fd5b506102286105a13660046123f3565b6110c0565b3480156105b257600080fd5b506102746105c136600461273e565b6110f4565b6102286105d4366004612722565b61121a565b6102286105e736600461261f565b6114fb565b3480156105f857600080fd5b506102286106073660046124bf565b611688565b34801561061857600080fd5b5061024a610627366004612379565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561066157600080fd5b50610228610670366004612577565b6116cc565b34801561068157600080fd5b5061022861069036600461232e565b611714565b600a546001600160a01b031633146106ac57600080fd5b61ffff84166000908152600c6020526040902080546106ca90612b65565b90508351148015610709575061ffff84166000908152600c60205260409081902090516106f791906127d3565b60405180910390208380519060200120145b6107775760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107a09087908790879087906004016129ae565b600060405180830381600087803b1580156107ba57600080fd5b505af19250505080156107cb575060015b610889576040518060400160405280825181526020018280519060200120815250600b60008661ffff1661ffff1681526020019081526020016000208460405161081591906127b7565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108809086908690869086906129ae565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806108c057506001600160e01b03198216635b5e139f60e01b145b806108db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546108f090612b65565b80601f016020809104026020016040519081016040528092919081815260200182805461091c90612b65565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b600061097e826117fe565b61099b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006109c282610ef2565b9050806001600160a01b0316836001600160a01b031614156109f75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a175750610a158133610627565b155b15610a35576040516367d9dca160e11b815260040160405180910390fd5b610a4083838361182a565b505050565b333014610aa85760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161076e565b61088984848484611886565b610a408383836118b3565b6000546001600160a01b03163314610ae95760405162461bcd60e51b815260040161076e906128c4565b600d546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b36576040519150601f19603f3d011682016040523d82523d6000602084013e610b3b565b606091505b5050905080610b8c5760405162461bcd60e51b815260206004820152601c60248201527f47473a204661696c656420746f20776974686472617720457468657200000000604482015260640161076e565b5050565b600f5481600e54610ba19190612ad7565b1115610be85760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161076e565b60008111610c4f5760405162461bcd60e51b815260206004820152602e60248201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060448201526d32b9103a3930b739b0b1ba34b7b760911b606482015260840161076e565b6000546001600160a01b03163314801590610c78575060115481600e54610c769190612ad7565b115b15610d3b5760145460ff16610cc65760405162461bcd60e51b815260206004820152601460248201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604482015260640161076e565b80601054610cd49190612b03565b341015610d3b5760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606482015260840161076e565b6000546001600160a01b03163314610db3576005811115610db35760405162461bcd60e51b815260206004820152602c60248201527f4d6178696d756d2035204e4654732063616e206265206d696e7465642070657260448201526b103a3930b739b0b1ba34b7b760a11b606482015260840161076e565b80600e6000828254610dc59190612ad7565b90915550610dd590508282611ac7565b6040518181527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a15050565b610a40838383604051806020016040528060008152506110c0565b60048054610e3490612b65565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6090612b65565b8015610ead5780601f10610e8257610100808354040283529160200191610ead565b820191906000526020600020905b815481529060010190602001808311610e9057829003601f168201915b505050505081565b6000546001600160a01b03163314610edf5760405162461bcd60e51b815260040161076e906128c4565b8051610b8c906013906020840190612106565b6000610efd82611ae1565b5192915050565b60006001600160a01b038216610f2d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b6000546001600160a01b03163314610f7c5760405162461bcd60e51b815260040161076e906128c4565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600c6020526000908152604090208054610e3490612b65565b6000546001600160a01b031633146110095760405162461bcd60e51b815260040161076e906128c4565b601555565b6060600580546108f090612b65565b6001600160a01b0382163314156110475760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60128054610e3490612b65565b6110cb8484846118b3565b6110d784848484611bfc565b610889576040516368d2bf6b60e11b815260040160405180910390fd5b60606110ff826117fe565b61111c57604051630a14c4b560e41b815260040160405180910390fd5b601454610100900460ff166111bd576012805461113890612b65565b80601f016020809104026020016040519081016040528092919081815260200182805461116490612b65565b80156111b15780601f10611186576101008083540402835291602001916111b1565b820191906000526020600020905b81548152906001019060200180831161119457829003601f168201915b50505050509050919050565b60006111c7611d0b565b90508051600014156111e85760405180602001604052806000815250611213565b806111f284611d1a565b604051602001611203929190612845565b6040516020818303038152906040525b9392505050565b61122381610ef2565b6001600160a01b0316336001600160a01b03161461128e5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b606482015260840161076e565b61ffff82166000908152600c6020526040812080546112ac90612b65565b9050116113125760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161076e565b61131b81611e17565b60408051336020820152808201839052815180820383018152606082018352601554600160f01b60808401526082808401919091528351808403909101815260a2830193849052600a5463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb109061139e908990309089908790899060a6016128f9565b604080518083038186803b1580156113b557600080fd5b505afa1580156113c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ed9190612757565b509050803410156114765760405162461bcd60e51b815260206004820152604760248201527f47473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560448201527f72206d6573736167654665652e2053656e642067617320666f72206d657373616064820152666765206665657360c81b608482015260a40161076e565b600a5461ffff87166000908152600c6020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926114c1928c928b913391908b906004016129f7565b6000604051808303818588803b1580156114da57600080fd5b505af11580156114ee573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600b6020526040808220905161151c9087906127b7565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506115a35760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161076e565b8054821480156115cd5750806001015483836040516115c39291906127a7565b6040518091039020145b6116195760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161076e565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061164e908990899089908990899060040161294d565b600060405180830381600087803b15801561166857600080fd5b505af115801561167c573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146116b25760405162461bcd60e51b815260040161076e906128c4565b601480549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146116f65760405162461bcd60e51b815260040161076e906128c4565b61ffff83166000908152600c6020526040902061088990838361218a565b6000546001600160a01b0316331461173e5760405162461bcd60e51b815260040161076e906128c4565b6001600160a01b0381166117a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600154821080156108db575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000808280602001905181019061189d919061234b565b915091506118ab8282611ac7565b505050505050565b60006118be82611ae1565b80519091506000906001600160a01b0316336001600160a01b031614806118ec575081516118ec9033610627565b806119075750336118fc84610973565b6001600160a01b0316145b90508061192757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461195c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661198357604051633a954ecd60e21b815260040160405180910390fd5b611993600084846000015161182a565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a7d57600154811015611a7d57825160008281526006602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b8c828260405180602001604052806000815250611f94565b60408051606081018252600080825260208201819052918101919091526001548290811015611be357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611be15780516001600160a01b031615611b78579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bdc579392505050565b611b78565b505b604051636f96cda160e11b815260040160405180910390fd5b60006001600160a01b0384163b15611cff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c40903390899088908890600401612874565b602060405180830381600087803b158015611c5a57600080fd5b505af1925050508015611c8a575060408051601f3d908101601f19168201909252611c87918101906124f7565b60015b611ce5573d808015611cb8576040519150601f19603f3d011682016040523d82523d6000602084013e611cbd565b606091505b508051611cdd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d03565b5060015b949350505050565b6060601380546108f090612b65565b606081611d3e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d685780611d5281612ba0565b9150611d619050600a83612aef565b9150611d42565b6000816001600160401b03811115611d8257611d82612c11565b6040519080825280601f01601f191660200182016040528015611dac576020820181803683370190505b5090505b8415611d0357611dc1600183612b22565b9150611dce600a86612bbb565b611dd9906030612ad7565b60f81b818381518110611dee57611dee612bfb565b60200101906001600160f81b031916908160001a905350611e10600a86612aef565b9450611db0565b6000611e2282611ae1565b9050611e34600083836000015161182a565b80516001600160a01b039081166000908152600760209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260069094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b1916939093179055908501808352912054909116611f4b57600154811015611f4b57815160008281526006602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600280546001019055565b610a40838383600180546001600160a01b038516611fc457604051622e076360e81b815260040160405180910390fd5b83611fe25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526006909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120fd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120d357506120d16000888488611bfc565b155b156120f1576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161207c565b50600155611ac0565b82805461211290612b65565b90600052602060002090601f016020900481019282612134576000855561217a565b82601f1061214d57805160ff191683800117855561217a565b8280016001018555821561217a579182015b8281111561217a57825182559160200191906001019061215f565b506121869291506121fe565b5090565b82805461219690612b65565b90600052602060002090601f0160209004810192826121b8576000855561217a565b82601f106121d15782800160ff1982351617855561217a565b8280016001018555821561217a579182015b8281111561217a5782358255916020019190600101906121e3565b5b8082111561218657600081556001016121ff565b60006001600160401b038084111561222d5761222d612c11565b604051601f8501601f19908116603f0116810190828211818310171561225557612255612c11565b8160405280935085815286868601111561226e57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461229857600080fd5b919050565b60008083601f8401126122af57600080fd5b5081356001600160401b038111156122c657600080fd5b6020830191508360208285010111156122de57600080fd5b9250929050565b600082601f8301126122f657600080fd5b61121383833560208501612213565b803561ffff8116811461229857600080fd5b80356001600160401b038116811461229857600080fd5b60006020828403121561234057600080fd5b813561121381612c27565b6000806040838503121561235e57600080fd5b825161236981612c27565b6020939093015192949293505050565b6000806040838503121561238c57600080fd5b823561239781612c27565b915060208301356123a781612c27565b809150509250929050565b6000806000606084860312156123c757600080fd5b83356123d281612c27565b925060208401356123e281612c27565b929592945050506040919091013590565b6000806000806080858703121561240957600080fd5b843561241481612c27565b9350602085013561242481612c27565b92506040850135915060608501356001600160401b0381111561244657600080fd5b612452878288016122e5565b91505092959194509250565b6000806040838503121561247157600080fd5b823561247c81612c27565b915061248a60208401612288565b90509250929050565b600080604083850312156124a657600080fd5b82356124b181612c27565b946020939093013593505050565b6000602082840312156124d157600080fd5b61121382612288565b6000602082840312156124ec57600080fd5b813561121381612c3f565b60006020828403121561250957600080fd5b815161121381612c3f565b60006020828403121561252657600080fd5b81356001600160401b0381111561253c57600080fd5b8201601f8101841361254d57600080fd5b611d0384823560208401612213565b60006020828403121561256e57600080fd5b61121382612305565b60008060006040848603121561258c57600080fd5b61259584612305565b925060208401356001600160401b038111156125b057600080fd5b6125bc8682870161229d565b9497909650939450505050565b6000806000606084860312156125de57600080fd5b6125e784612305565b925060208401356001600160401b0381111561260257600080fd5b61260e868287016122e5565b925050604084013590509250925092565b60008060008060006080868803121561263757600080fd5b61264086612305565b945060208601356001600160401b038082111561265c57600080fd5b61266889838a016122e5565b955061267660408901612317565b9450606088013591508082111561268c57600080fd5b506126998882890161229d565b969995985093965092949392505050565b600080600080608085870312156126c057600080fd5b6126c985612305565b935060208501356001600160401b03808211156126e557600080fd5b6126f1888389016122e5565b94506126ff60408801612317565b9350606087013591508082111561271557600080fd5b50612452878288016122e5565b6000806040838503121561273557600080fd5b6124b183612305565b60006020828403121561275057600080fd5b5035919050565b6000806040838503121561276a57600080fd5b505080516020909101519092909150565b60008151808452612793816020860160208601612b39565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516127c9818460208701612b39565b9190910192915050565b60008083546127e181612b65565b600182811680156127f9576001811461280a57612839565b60ff19841687528287019450612839565b8760005260208060002060005b858110156128305781548a820152908401908201612817565b50505082870194505b50929695505050505050565b60008351612857818460208801612b39565b83519083019061286b818360208801612b39565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a79083018461277b565b9695505050505050565b602081526000611213602083018461277b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906129279083018661277b565b84151560608401528281036080840152612941818561277b565b98975050505050505050565b61ffff8616815260806020820152600061296a608083018761277b565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006129cb608083018661277b565b6001600160401b038516604084015282810360608401526129ec818561277b565b979650505050505050565b61ffff871681526000602060c08184015260008854612a1581612b65565b8060c087015260e0600180841660008114612a375760018114612a4c57612a7a565b60ff1985168984015261010089019550612a7a565b8d6000528660002060005b85811015612a725781548b8201860152908301908801612a57565b8a0184019650505b50505050508381036040850152612a91818961277b565b915050612aa960608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612aca818561277b565b9998505050505050505050565b60008219821115612aea57612aea612bcf565b500190565b600082612afe57612afe612be5565b500490565b6000816000190483118215151615612b1d57612b1d612bcf565b500290565b600082821015612b3457612b34612bcf565b500390565b60005b83811015612b54578181015183820152602001612b3c565b838111156108895750506000910152565b600181811c90821680612b7957607f821691505b60208210811415612b9a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bb457612bb4612bcf565b5060010190565b600082612bca57612bca612be5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612c3c57600080fd5b50565b6001600160e01b031981168114612c3c57600080fdfea26469706673582212200f7a23577a6b18cdc45af7eb1d80a7326807804bbe1fd5ec2f29b3c45b09e10564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0500000000000000000000000000000000000000000000000000071afd498d000000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50584a54356954795a50526f63356a36724e4b38336e3541394e4a375a354e77554c54615854787a6d615a342f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d656f684c346237326b6863594659727776313851364132654b464373434d443535353753774447676d3954592f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : hiddenMetadataUri_ (string): https://gateway.pinata.cloud/ipfs/QmPXJT5iTyZPRoc5j6rNK83n5A9NJ7Z5NwULTaXTxzmaZ4/hidden.json
Arg [1] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmeohL4b72khcYFYrwv18Q6A2eKFCsCMD5557SwDGgm9TY/
Arg [2] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [3] : _nextTokenId (uint256): 0
Arg [4] : _maxTokenId (uint256): 3333
Arg [5] : _price (uint256): 2000000000000000
Arg [6] : _freeMint (uint256): 2000

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [5] : 00000000000000000000000000000000000000000000000000071afd498d0000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [7] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d50584a54356954795a50526f63356a36724e4b38336e3541394e4a37
Arg [10] : 5a354e77554c54615854787a6d615a342f68696464656e2e6a736f6e00000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [12] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [13] : 732f516d656f684c346237326b6863594659727776313851364132654b464373
Arg [14] : 434d443535353753774447676d3954592f000000000000000000000000000000


Deployed Bytecode Sourcemap

67057:5349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64310:949;;;;;;;;;;-1:-1:-1;64310:949:0;;;;;:::i;:::-;;:::i;:::-;;45058:305;;;;;;;;;;-1:-1:-1;45058:305:0;;;;;:::i;:::-;;:::i;:::-;;;12777:14:1;;12770:22;12752:41;;12740:2;12725:18;45058:305:0;;;;;;;;47601:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49124:204::-;;;;;;;;;;-1:-1:-1;49124:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11796:32:1;;;11778:51;;11766:2;11751:18;49124:204:0;11632:203:1;48687:371:0;;;;;;;;;;-1:-1:-1;48687:371:0;;;;;:::i;:::-;;:::i;65267:356::-;;;;;;;;;;-1:-1:-1;65267:356:0;;;;;:::i;:::-;;:::i;49981:170::-;;;;;;;;;;-1:-1:-1;49981:170:0;;;;;:::i;:::-;;:::i;71481:174::-;;;;;;;;;;-1:-1:-1;71481:174:0;;;;;:::i;:::-;;:::i;67306:33::-;;;;;;;;;;;;;;;;;;;22788:25:1;;;22776:2;22761:18;67306:33:0;22642:177:1;68144:863:0;;;;;;:::i;:::-;;:::i;50222:185::-;;;;;;;;;;-1:-1:-1;50222:185:0;;;;;:::i;:::-;;:::i;67461:28::-;;;;;;;;;;-1:-1:-1;67461:28:0;;;;;;;;;;;44182:33;;;;;;;;;;;;;:::i;70747:90::-;;;;;;;;;;-1:-1:-1;70747:90:0;;;;;:::i;:::-;;:::i;47410:124::-;;;;;;;;;;-1:-1:-1;47410:124:0;;;;;:::i;:::-;;:::i;45427:206::-;;;;;;;;;;-1:-1:-1;45427:206:0;;;;;:::i;:::-;;:::i;63206:148::-;;;;;;;;;;;;;:::i;64152:51::-;;;;;;;;;;-1:-1:-1;64152:51:0;;;;;:::i;:::-;;:::i;62555:87::-;;;;;;;;;;-1:-1:-1;62601:7:0;62628:6;-1:-1:-1;;;;;62628:6:0;62555:87;;64055:90;;;;;;;;;;-1:-1:-1;64055:90:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22998:25:1;;;23054:2;23039:18;;23032:34;;;;22971:18;64055:90:0;22824:248:1;71739:125:0;;;;;;;;;;-1:-1:-1;71739:125:0;;;;;:::i;:::-;;:::i;47770:104::-;;;;;;;;;;;;;:::i;67425:27::-;;;;;;;;;;-1:-1:-1;67425:27:0;;;;;;;;49400:279;;;;;;;;;;-1:-1:-1;49400:279:0;;;;;:::i;:::-;;:::i;67348:31::-;;;;;;;;;;;;;:::i;67165:21::-;;;;;;;;;;-1:-1:-1;67165:21:0;;;;-1:-1:-1;;;;;67165:21:0;;;50478:342;;;;;;;;;;-1:-1:-1;50478:342:0;;;;;:::i;:::-;;:::i;71007:411::-;;;;;;;;;;-1:-1:-1;71007:411:0;;;;;:::i;:::-;;:::i;69149:1588::-;;;;;;:::i;:::-;;:::i;66099:758::-;;;;;;:::i;:::-;;:::i;70845:81::-;;;;;;;;;;-1:-1:-1;70845:81:0;;;;;:::i;:::-;;:::i;49750:164::-;;;;;;;;;;-1:-1:-1;49750:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;49871:25:0;;;49847:4;49871:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49750:164;66865:158;;;;;;;;;;-1:-1:-1;66865:158:0;;;;;:::i;:::-;;:::i;63509:244::-;;;;;;;;;;-1:-1:-1;63509:244:0;;;;;:::i;:::-;;:::i;64310:949::-;64472:8;;-1:-1:-1;;;;;64472:8:0;64450:10;:31;64442:40;;;;;;64593:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;64571:11;:18;:61;:134;;;;-1:-1:-1;64672:32:0;;;;;;;:19;:32;;;;;;;64662:43;;;;64672:32;64662:43;:::i;:::-;;;;;;;;64646:11;64636:22;;;;;;:69;64571:134;64563:213;;;;-1:-1:-1;;;64563:213:0;;17878:2:1;64563:213:0;;;17860:21:1;17917:2;17897:18;;;17890:30;17956:34;17936:18;;;17929:62;-1:-1:-1;;;18007:18:1;;;18000:50;18067:19;;64563:213:0;;;;;;;;;64904:60;;-1:-1:-1;;;64904:60:0;;:4;;:16;;:60;;64921:11;;64934;;64947:6;;64955:8;;64904:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64900:352;;65111:52;;;;;;;;65126:8;:15;65111:52;;;;65153:8;65143:19;;;;;;65111:52;;;65060:14;:27;65075:11;65060:27;;;;;;;;;;;;;;;65088:11;65060:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;65060:48:0;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;65183:57;;;;65197:11;;65210;;65101:6;;65231:8;;65183:57;:::i;:::-;;;;;;;;64900:352;64310:949;;;;:::o;45058:305::-;45160:4;-1:-1:-1;;;;;;45197:40:0;;-1:-1:-1;;;45197:40:0;;:105;;-1:-1:-1;;;;;;;45254:48:0;;-1:-1:-1;;;45254:48:0;45197:105;:158;;;-1:-1:-1;;;;;;;;;;27338:40:0;;;45319:36;45177:178;45058:305;-1:-1:-1;;45058:305:0:o;47601:100::-;47655:13;47688:5;47681:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47601:100;:::o;49124:204::-;49192:7;49217:16;49225:7;49217;:16::i;:::-;49212:64;;49242:34;;-1:-1:-1;;;49242:34:0;;;;;;;;;;;49212:64;-1:-1:-1;49296:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49296:24:0;;49124:204::o;48687:371::-;48760:13;48776:24;48792:7;48776:15;:24::i;:::-;48760:40;;48821:5;-1:-1:-1;;;;;48815:11:0;:2;-1:-1:-1;;;;;48815:11:0;;48811:48;;;48835:24;;-1:-1:-1;;;48835:24:0;;;;;;;;;;;48811:48;16928:10;-1:-1:-1;;;;;48876:21:0;;;;;;:63;;-1:-1:-1;48902:37:0;48919:5;16928:10;49750:164;:::i;48902:37::-;48901:38;48876:63;48872:138;;;48963:35;;-1:-1:-1;;;48963:35:0;;;;;;;;;;;48872:138;49022:28;49031:2;49035:7;49044:5;49022:8;:28::i;:::-;48749:309;48687:371;;:::o;65267:356::-;65436:10;65458:4;65436:27;65428:83;;;;-1:-1:-1;;;65428:83:0;;16689:2:1;65428:83:0;;;16671:21:1;16728:2;16708:18;;;16701:30;16767:34;16747:18;;;16740:62;-1:-1:-1;;;16818:18:1;;;16811:41;16869:19;;65428:83:0;16487:407:1;65428:83:0;65560:55;65572:11;65585;65598:6;65606:8;65560:10;:55::i;49981:170::-;50115:28;50125:4;50131:2;50135:7;50115:9;:28::i;71481:174::-;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;71563:6:::1;::::0;71555:36:::1;::::0;71540:9:::1;::::0;-1:-1:-1;;;;;71563:6:0::1;::::0;71583:3;;71540:9;71555:36;71540:9;71555:36;71583:3;71563:6;71555:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71539:52;;;71610:4;71602:45;;;::::0;-1:-1:-1;;;71602:45:0;;19057:2:1;71602:45:0::1;::::0;::::1;19039:21:1::0;19096:2;19076:18;;;19069:30;19135;19115:18;;;19108:58;19183:18;;71602:45:0::1;18855:352:1::0;71602:45:0::1;71528:127;71481:174:::0;:::o;68144:863::-;68255:16;;68242:9;68228:11;;:23;;;;:::i;:::-;:43;;68220:78;;;;-1:-1:-1;;;68220:78:0;;18299:2:1;68220:78:0;;;18281:21:1;18338:2;18318:18;;;18311:30;-1:-1:-1;;;18357:18:1;;;18350:52;18419:18;;68220:78:0;18097:346:1;68220:78:0;68329:1;68317:9;:13;68309:72;;;;-1:-1:-1;;;68309:72:0;;13452:2:1;68309:72:0;;;13434:21:1;13491:2;13471:18;;;13464:30;13530:34;13510:18;;;13503:62;-1:-1:-1;;;13581:18:1;;;13574:44;13635:19;;68309:72:0;13250:410:1;68309:72:0;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;68398:10;:21;;;;:67;;;68451:14;;68438:9;68424:11;;:23;;;;:::i;:::-;68423:42;68398:67;68394:295;;;68490:8;;;;68482:41;;;;-1:-1:-1;;;68482:41:0;;14754:2:1;68482:41:0;;;14736:21:1;14793:2;14773:18;;;14766:30;-1:-1:-1;;;14812:18:1;;;14805:50;14872:18;;68482:41:0;14552:344:1;68482:41:0;68585:9;68577:5;;:17;;;;:::i;:::-;68564:9;:30;;68538:139;;;;-1:-1:-1;;;68538:139:0;;17101:2:1;68538:139:0;;;17083:21:1;17140:2;17120:18;;;17113:30;17179:34;17159:18;;;17152:62;-1:-1:-1;;;17230:18:1;;;17223:45;17285:19;;68538:139:0;16899:411:1;68538:139:0;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;68704:10;:21;68701:173;;68781:1;68768:9;:14;;68742:120;;;;-1:-1:-1;;;68742:120:0;;16276:2:1;68742:120:0;;;16258:21:1;16315:2;16295:18;;;16288:30;16354:34;16334:18;;;16327:62;-1:-1:-1;;;16405:18:1;;;16398:42;16457:19;;68742:120:0;16074:408:1;68742:120:0;68909:9;68894:11;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;68935:25:0;;-1:-1:-1;68945:3:0;68950:9;68935;:25::i;:::-;68976:17;;22788:25:1;;;68976:17:0;;22776:2:1;22761:18;68976:17:0;;;;;;;68144:863;;:::o;50222:185::-;50360:39;50377:4;50383:2;50387:7;50360:39;;;;;;;;;;;;:16;:39::i;44182:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70747:90::-;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;70816:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;47410:124::-:0;47474:7;47501:20;47513:7;47501:11;:20::i;:::-;:25;;47410:124;-1:-1:-1;;47410:124:0:o;45427:206::-;45491:7;-1:-1:-1;;;;;45515:19:0;;45511:60;;45543:28;;-1:-1:-1;;;45543:28:0;;;;;;;;;;;45511:60;-1:-1:-1;;;;;;45597:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;45597:27:0;;45427:206::o;63206:148::-;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;63313:1:::1;63297:6:::0;;63276:40:::1;::::0;-1:-1:-1;;;;;63297:6:0;;::::1;::::0;63276:40:::1;::::0;63313:1;;63276:40:::1;63344:1;63327:19:::0;;-1:-1:-1;;;;;;63327:19:0::1;::::0;;63206:148::o;64152:51::-;;;;;;;;;;;;;;;;:::i;71739:125::-;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;71821:26:::1;:35:::0;71739:125::o;47770:104::-;47826:13;47859:7;47852:14;;;;;:::i;49400:279::-;-1:-1:-1;;;;;49491:24:0;;16928:10;49491:24;49487:54;;;49524:17;;-1:-1:-1;;;49524:17:0;;;;;;;;;;;49487:54;16928:10;49554:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;49554:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;49554:53:0;;;;;;;;;;49623:48;;12752:41:1;;;49554:42:0;;16928:10;49623:48;;12725:18:1;49623:48:0;;;;;;;49400:279;;:::o;67348:31::-;;;;;;;:::i;50478:342::-;50645:28;50655:4;50661:2;50665:7;50645:9;:28::i;:::-;50689:48;50712:4;50718:2;50722:7;50731:5;50689:22;:48::i;:::-;50684:129;;50761:40;;-1:-1:-1;;;50761:40:0;;;;;;;;;;;71007:411;71080:13;71111:16;71119:7;71111;:16::i;:::-;71106:59;;71136:29;;-1:-1:-1;;;71136:29:0;;;;;;;;;;;71106:59;71189:8;;;;;;;71185:72;;71227:17;71220:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71007:411;;;:::o;71185:72::-;71271:21;71295:10;:8;:10::i;:::-;71271:34;;71329:7;71323:21;71348:1;71323:26;;:87;;;;;;;;;;;;;;;;;71376:7;71385:18;:7;:16;:18::i;:::-;71359:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71323:87;71316:94;71007:411;-1:-1:-1;;;71007:411:0:o;69149:1588::-;69252:16;69260:7;69252;:16::i;:::-;-1:-1:-1;;;;;69238:30:0;:10;-1:-1:-1;;;;;69238:30:0;;69230:77;;;;-1:-1:-1;;;69230:77:0;;15873:2:1;69230:77:0;;;15855:21:1;15912:2;15892:18;;;15885:30;15951:34;15931:18;;;15924:62;-1:-1:-1;;;16002:18:1;;;15995:32;16044:19;;69230:77:0;15671:398:1;69230:77:0;69326:29;;;69365:1;69326:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;69318:99;;;;-1:-1:-1;;;69318:99:0;;15103:2:1;69318:99:0;;;15085:21:1;15142:2;15122:18;;;15115:30;15181:34;15161:18;;;15154:62;-1:-1:-1;;;15232:18:1;;;15225:44;15286:19;;69318:99:0;14901:410:1;69318:99:0;69497:14;69503:7;69497:5;:14::i;:::-;69608:31;;;69619:10;69608:31;;;12507:51:1;12574:18;;;12567:34;;;69608:31:0;;;;;;;;;12480:18:1;;;69608:31:0;;69809:26;;-1:-1:-1;;;69783:53:0;;;11506:51:1;11573:11;;;;11566:27;;;;69783:53:0;;;;;;;;;;11609:12:1;;;69783:53:0;;;;70012:8;;-1:-1:-1;;;70012:77:0;;;69608:31;;69742:1;;-1:-1:-1;;;;;;;70012:8:0;;:21;;:77;;70034:8;;70052:4;;69608:31;;-1:-1:-1;;69783:53:0;;70012:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69990:99;;;70131:10;70118:9;:23;;70110:107;;;;-1:-1:-1;;;70110:107:0;;13867:2:1;70110:107:0;;;13849:21:1;13906:2;13886:18;;;13879:30;13945:34;13925:18;;;13918:62;14016:34;13996:18;;;13989:62;-1:-1:-1;;;14067:19:1;;;14060:38;14115:19;;70110:107:0;13665:475:1;70110:107:0;70230:8;;70348:29;;;70230:8;70348:29;;;:19;:29;;;;;;70230:499;;-1:-1:-1;;;70230:499:0;;-1:-1:-1;;;;;70230:8:0;;;;:13;;70251:9;;70230:499;;70276:8;;70436:7;;70519:10;;70230:8;70666:13;;70230:499;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69219:1518;;;;69149:1588;;:::o;66099:758::-;66315:27;;;66280:32;66315:27;;;:14;:27;;;;;;:40;;;;66343:11;;66315:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66315:48:0;;;;;;;;;;66382:21;;;;66315:48;;-1:-1:-1;66374:86:0;;;;-1:-1:-1;;;66374:86:0;;18650:2:1;66374:86:0;;;18632:21:1;18689:2;18669:18;;;18662:30;18728:34;18708:18;;;18701:62;-1:-1:-1;;;18779:18:1;;;18772:36;18825:19;;66374:86:0;18448:402:1;66374:86:0;66498:23;;66479:42;;:90;;;;;66548:9;:21;;;66535:8;;66525:19;;;;;;;:::i;:::-;;;;;;;;:44;66479:90;66471:129;;;;-1:-1:-1;;;66471:129:0;;15518:2:1;66471:129:0;;;15500:21:1;15557:2;15537:18;;;15530:30;15596:28;15576:18;;;15569:56;15642:18;;66471:129:0;15316:350:1;66471:129:0;66674:1;66648:27;;;66686:21;;;:34;66789:60;;-1:-1:-1;;;66789:60:0;;:4;;:16;;:60;;66806:11;;66819;;66832:6;;66840:8;;;;66789:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66224:633;66099:758;;;;;:::o;70845:81::-;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;70903:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;70903:17:0;;::::1;::::0;;;::::1;::::0;;70845:81::o;66865:158::-;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;66969:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;67001:14;;66969:46:::1;:::i;63509:244::-:0;62601:7;62628:6;-1:-1:-1;;;;;62628:6:0;16928:10;62775:23;62767:68;;;;-1:-1:-1;;;62767:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;63598:22:0;::::1;63590:73;;;::::0;-1:-1:-1;;;63590:73:0;;14347:2:1;63590:73:0::1;::::0;::::1;14329:21:1::0;14386:2;14366:18;;;14359:30;14425:34;14405:18;;;14398:62;-1:-1:-1;;;14476:18:1;;;14469:36;14522:19;;63590:73:0::1;14145:402:1::0;63590:73:0::1;63700:6;::::0;;63679:38:::1;::::0;-1:-1:-1;;;;;63679:38:0;;::::1;::::0;63700:6;::::1;::::0;63679:38:::1;::::0;::::1;63728:6;:17:::0;;-1:-1:-1;;;;;;63728:17:0::1;-1:-1:-1::0;;;;;63728:17:0;;;::::1;::::0;;;::::1;::::0;;63509:244::o;51075:144::-;51132:4;51166:13;;51156:7;:23;:55;;;;-1:-1:-1;;51184:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;51184:27:0;;;;51183:28;;51075:144::o;58281:196::-;58396:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;58396:29:0;-1:-1:-1;;;;;58396:29:0;;;;;;;;;58441:28;;58396:24;;58441:28;;;;;;;58281:196;;;:::o;71955:338::-;72108:14;72124:12;72151:8;72140:37;;;;;;;;;;;;:::i;:::-;72107:70;;;;72259:26;72269:6;72277:7;72259:9;:26::i;:::-;72077:216;;71955:338;;;;:::o;53782:2112::-;53897:35;53935:20;53947:7;53935:11;:20::i;:::-;54010:18;;53897:58;;-1:-1:-1;53968:22:0;;-1:-1:-1;;;;;53994:34:0;16928:10;-1:-1:-1;;;;;53994:34:0;;:101;;;-1:-1:-1;54062:18:0;;54045:50;;16928:10;49750:164;:::i;54045:50::-;53994:154;;;-1:-1:-1;16928:10:0;54112:20;54124:7;54112:11;:20::i;:::-;-1:-1:-1;;;;;54112:36:0;;53994:154;53968:181;;54167:17;54162:66;;54193:35;;-1:-1:-1;;;54193:35:0;;;;;;;;;;;54162:66;54265:4;-1:-1:-1;;;;;54243:26:0;:13;:18;;;-1:-1:-1;;;;;54243:26:0;;54239:67;;54278:28;;-1:-1:-1;;;54278:28:0;;;;;;;;;;;54239:67;-1:-1:-1;;;;;54321:16:0;;54317:52;;54346:23;;-1:-1:-1;;;54346:23:0;;;;;;;;;;;54317:52;54490:49;54507:1;54511:7;54520:13;:18;;;54490:8;:49::i;:::-;-1:-1:-1;;;;;54835:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;54835:31:0;;;-1:-1:-1;;;;;54835:31:0;;;-1:-1:-1;;54835:31:0;;;;;;;54881:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;54881:29:0;;;;;;;;;;;54927:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;54972:61:0;;;;-1:-1:-1;;;55017:15:0;54972:61;;;;;;;;;;;55307:11;;;55337:24;;;;;:29;55307:11;;55337:29;55333:445;;55562:13;;55548:11;:27;55544:219;;;55632:18;;;55600:24;;;:11;:24;;;;;;;;:50;;55715:28;;;;-1:-1:-1;;;;;55673:70:0;-1:-1:-1;;;55673:70:0;-1:-1:-1;;;;;;55673:70:0;;;-1:-1:-1;;;;;55600:50:0;;;55673:70;;;;;;;55544:219;54810:979;55825:7;55821:2;-1:-1:-1;;;;;55806:27:0;55815:4;-1:-1:-1;;;;;55806:27:0;;;;;;;;;;;55844:42;53886:2008;;53782:2112;;;:::o;51227:104::-;51296:27;51306:2;51310:8;51296:27;;;;;;;;;;;;:9;:27::i;46265:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;46431:13:0;;46375:7;;46424:20;;46420:861;;;46465:31;46499:17;;;:11;:17;;;;;;;;;46465:51;;;;;;;;;-1:-1:-1;;;;;46465:51:0;;;;-1:-1:-1;;;46465:51:0;;-1:-1:-1;;;;;46465:51:0;;;;;;;;-1:-1:-1;;;46465:51:0;;;;;;;;;;;;;;46535:731;;46585:14;;-1:-1:-1;;;;;46585:28:0;;46581:101;;46649:9;46265:1083;-1:-1:-1;;;46265:1083:0:o;46581:101::-;-1:-1:-1;;;47026:6:0;47071:17;;;;:11;:17;;;;;;;;;47059:29;;;;;;;;;-1:-1:-1;;;;;47059:29:0;;;;;-1:-1:-1;;;47059:29:0;;-1:-1:-1;;;;;47059:29:0;;;;;;;;-1:-1:-1;;;47059:29:0;;;;;;;;;;;;;47119:28;47115:109;;47187:9;46265:1083;-1:-1:-1;;;46265:1083:0:o;47115:109::-;46986:261;;;46446:835;46420:861;47309:31;;-1:-1:-1;;;47309:31:0;;;;;;;;;;;59042:790;59197:4;-1:-1:-1;;;;;59218:13:0;;9307:19;:23;59214:611;;59254:72;;-1:-1:-1;;;59254:72:0;;-1:-1:-1;;;;;59254:36:0;;;;;:72;;16928:10;;59305:4;;59311:7;;59320:5;;59254:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59254:72:0;;;;;;;;-1:-1:-1;;59254:72:0;;;;;;;;;;;;:::i;:::-;;;59250:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59500:13:0;;59496:259;;59550:40;;-1:-1:-1;;;59550:40:0;;;;;;;;;;;59496:259;59705:6;59699:13;59690:6;59686:2;59682:15;59675:38;59250:520;-1:-1:-1;;;;;;59377:55:0;-1:-1:-1;;;59377:55:0;;-1:-1:-1;59370:62:0;;59214:611;-1:-1:-1;59809:4:0;59214:611;59042:790;;;;;;:::o;72303:100::-;72355:13;72388:7;72381:14;;;;;:::i;24650:723::-;24706:13;24927:10;24923:53;;-1:-1:-1;;24954:10:0;;;;;;;;;;;;-1:-1:-1;;;24954:10:0;;;;;24650:723::o;24923:53::-;25001:5;24986:12;25042:78;25049:9;;25042:78;;25075:8;;;;:::i;:::-;;-1:-1:-1;25098:10:0;;-1:-1:-1;25106:2:0;25098:10;;:::i;:::-;;;25042:78;;;25130:19;25162:6;-1:-1:-1;;;;;25152:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25152:17:0;;25130:39;;25180:154;25187:10;;25180:154;;25214:11;25224:1;25214:11;;:::i;:::-;;-1:-1:-1;25283:10:0;25291:2;25283:5;:10;:::i;:::-;25270:24;;:2;:24;:::i;:::-;25257:39;;25240:6;25247;25240:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25240:56:0;;;;;;;;-1:-1:-1;25311:11:0;25320:2;25311:11;;:::i;:::-;;;25180:154;;56123:2040;56183:35;56221:20;56233:7;56221:11;:20::i;:::-;56183:58;-1:-1:-1;56384:49:0;56401:1;56405:7;56414:13;:18;;;56384:8;:49::i;:::-;56742:18;;-1:-1:-1;;;;;56729:32:0;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;56729:45:0;;-1:-1:-1;;;;;56729:45:0;;;-1:-1:-1;;56729:45:0;;;;;;;56802:18;;56789:32;;;;;;;:50;;-1:-1:-1;;;;56789:50:0;;-1:-1:-1;;;56789:50:0;;;;;;-1:-1:-1;56789:50:0;;;;;;;;;;;;56966:18;;56938:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;56938:46:0;;;-1:-1:-1;;;;;;56999:61:0;;;;-1:-1:-1;;;57044:15:0;56999:61;;;;;;;;;;;-1:-1:-1;;;;57075:34:0;;;;;;;57379:11;;;57409:24;;;;;:29;57379:11;;57409:29;57405:445;;57634:13;;57620:11;:27;57616:219;;;57704:18;;;57672:24;;;:11;:24;;;;;;;;:50;;57787:28;;;;-1:-1:-1;;;;;57745:70:0;-1:-1:-1;;;57745:70:0;-1:-1:-1;;;;;;57745:70:0;;;-1:-1:-1;;;;;57672:50:0;;;57745:70;;;;;;;57616:219;-1:-1:-1;57887:18:0;;57878:49;;57919:7;;57915:1;;-1:-1:-1;;;;;57878:49:0;;;;;;57915:1;;57878:49;-1:-1:-1;;58130:12:0;:14;;;;;;56123:2040::o;51694:163::-;51817:32;51823:2;51827:8;51837:5;51844:4;52278:13;;-1:-1:-1;;;;;52306:16:0;;52302:48;;52331:19;;-1:-1:-1;;;52331:19:0;;;;;;;;;;;52302:48;52365:13;52361:44;;52387:18;;-1:-1:-1;;;52387:18:0;;;;;;;;;;;52361:44;-1:-1:-1;;;;;52756:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;52815:49:0;;-1:-1:-1;;;;;52756:44:0;;;;;;;52815:49;;;;-1:-1:-1;;52756:44:0;;;;;;52815:49;;;;;;;;;;;;;;;;52881:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;52931:66:0;;;;-1:-1:-1;;;52981:15:0;52931:66;;;;;;;;;;;52881:25;;53066:328;53086:8;53082:1;:12;53066:328;;;53125:38;;53150:12;;-1:-1:-1;;;;;53125:38:0;;;53142:1;;53125:38;;53142:1;;53125:38;53186:4;:68;;;;;53195:59;53226:1;53230:2;53234:12;53248:5;53195:22;:59::i;:::-;53194:60;53186:68;53182:164;;;53286:40;;-1:-1:-1;;;53286:40:0;;;;;;;;;;;53182:164;53364:14;;;;;53096:3;53066:328;;;-1:-1:-1;53410:13:0;:28;53460:60;64310:949;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:347::-;866:8;876:6;930:3;923:4;915:6;911:17;907:27;897:55;;948:1;945;938:12;897:55;-1:-1:-1;971:20:1;;-1:-1:-1;;;;;1003:30:1;;1000:50;;;1046:1;1043;1036:12;1000:50;1083:4;1075:6;1071:17;1059:29;;1135:3;1128:4;1119:6;1111;1107:19;1103:30;1100:39;1097:59;;;1152:1;1149;1142:12;1097:59;815:347;;;;;:::o;1167:220::-;1209:5;1262:3;1255:4;1247:6;1243:17;1239:27;1229:55;;1280:1;1277;1270:12;1229:55;1302:79;1377:3;1368:6;1355:20;1348:4;1340:6;1336:17;1302:79;:::i;1392:159::-;1459:20;;1519:6;1508:18;;1498:29;;1488:57;;1541:1;1538;1531:12;1556:171;1623:20;;-1:-1:-1;;;;;1672:30:1;;1662:41;;1652:69;;1717:1;1714;1707:12;1732:247;1791:6;1844:2;1832:9;1823:7;1819:23;1815:32;1812:52;;;1860:1;1857;1850:12;1812:52;1899:9;1886:23;1918:31;1943:5;1918:31;:::i;1984:320::-;2071:6;2079;2132:2;2120:9;2111:7;2107:23;2103:32;2100:52;;;2148:1;2145;2138:12;2100:52;2180:9;2174:16;2199:31;2224:5;2199:31;:::i;:::-;2294:2;2279:18;;;;2273:25;2249:5;;2273:25;;-1:-1:-1;;;1984:320:1:o;2309:388::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2493:9;2480:23;2512:31;2537:5;2512:31;:::i;:::-;2562:5;-1:-1:-1;2619:2:1;2604:18;;2591:32;2632:33;2591:32;2632:33;:::i;:::-;2684:7;2674:17;;;2309:388;;;;;:::o;2702:456::-;2779:6;2787;2795;2848:2;2836:9;2827:7;2823:23;2819:32;2816:52;;;2864:1;2861;2854:12;2816:52;2903:9;2890:23;2922:31;2947:5;2922:31;:::i;:::-;2972:5;-1:-1:-1;3029:2:1;3014:18;;3001:32;3042:33;3001:32;3042:33;:::i;:::-;2702:456;;3094:7;;-1:-1:-1;;;3148:2:1;3133:18;;;;3120:32;;2702:456::o;3163:665::-;3258:6;3266;3274;3282;3335:3;3323:9;3314:7;3310:23;3306:33;3303:53;;;3352:1;3349;3342:12;3303:53;3391:9;3378:23;3410:31;3435:5;3410:31;:::i;:::-;3460:5;-1:-1:-1;3517:2:1;3502:18;;3489:32;3530:33;3489:32;3530:33;:::i;:::-;3582:7;-1:-1:-1;3636:2:1;3621:18;;3608:32;;-1:-1:-1;3691:2:1;3676:18;;3663:32;-1:-1:-1;;;;;3707:30:1;;3704:50;;;3750:1;3747;3740:12;3704:50;3773:49;3814:7;3805:6;3794:9;3790:22;3773:49;:::i;:::-;3763:59;;;3163:665;;;;;;;:::o;3833:315::-;3898:6;3906;3959:2;3947:9;3938:7;3934:23;3930:32;3927:52;;;3975:1;3972;3965:12;3927:52;4014:9;4001:23;4033:31;4058:5;4033:31;:::i;:::-;4083:5;-1:-1:-1;4107:35:1;4138:2;4123:18;;4107:35;:::i;:::-;4097:45;;3833:315;;;;;:::o;4153:::-;4221:6;4229;4282:2;4270:9;4261:7;4257:23;4253:32;4250:52;;;4298:1;4295;4288:12;4250:52;4337:9;4324:23;4356:31;4381:5;4356:31;:::i;:::-;4406:5;4458:2;4443:18;;;;4430:32;;-1:-1:-1;;;4153:315:1:o;4473:180::-;4529:6;4582:2;4570:9;4561:7;4557:23;4553:32;4550:52;;;4598:1;4595;4588:12;4550:52;4621:26;4637:9;4621:26;:::i;4658:245::-;4716:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:52;;;4785:1;4782;4775:12;4737:52;4824:9;4811:23;4843:30;4867:5;4843:30;:::i;4908:249::-;4977:6;5030:2;5018:9;5009:7;5005:23;5001:32;4998:52;;;5046:1;5043;5036:12;4998:52;5078:9;5072:16;5097:30;5121:5;5097:30;:::i;5162:450::-;5231:6;5284:2;5272:9;5263:7;5259:23;5255:32;5252:52;;;5300:1;5297;5290:12;5252:52;5340:9;5327:23;-1:-1:-1;;;;;5365:6:1;5362:30;5359:50;;;5405:1;5402;5395:12;5359:50;5428:22;;5481:4;5473:13;;5469:27;-1:-1:-1;5459:55:1;;5510:1;5507;5500:12;5459:55;5533:73;5598:7;5593:2;5580:16;5575:2;5571;5567:11;5533:73;:::i;5617:184::-;5675:6;5728:2;5716:9;5707:7;5703:23;5699:32;5696:52;;;5744:1;5741;5734:12;5696:52;5767:28;5785:9;5767:28;:::i;5806:481::-;5884:6;5892;5900;5953:2;5941:9;5932:7;5928:23;5924:32;5921:52;;;5969:1;5966;5959:12;5921:52;5992:28;6010:9;5992:28;:::i;:::-;5982:38;;6071:2;6060:9;6056:18;6043:32;-1:-1:-1;;;;;6090:6:1;6087:30;6084:50;;;6130:1;6127;6120:12;6084:50;6169:58;6219:7;6210:6;6199:9;6195:22;6169:58;:::i;:::-;5806:481;;6246:8;;-1:-1:-1;6143:84:1;;-1:-1:-1;;;;5806:481:1:o;6292:460::-;6377:6;6385;6393;6446:2;6434:9;6425:7;6421:23;6417:32;6414:52;;;6462:1;6459;6452:12;6414:52;6485:28;6503:9;6485:28;:::i;:::-;6475:38;;6564:2;6553:9;6549:18;6536:32;-1:-1:-1;;;;;6583:6:1;6580:30;6577:50;;;6623:1;6620;6613:12;6577:50;6646:49;6687:7;6678:6;6667:9;6663:22;6646:49;:::i;:::-;6636:59;;;6742:2;6731:9;6727:18;6714:32;6704:42;;6292:460;;;;;:::o;6757:773::-;6861:6;6869;6877;6885;6893;6946:3;6934:9;6925:7;6921:23;6917:33;6914:53;;;6963:1;6960;6953:12;6914:53;6986:28;7004:9;6986:28;:::i;:::-;6976:38;;7065:2;7054:9;7050:18;7037:32;-1:-1:-1;;;;;7129:2:1;7121:6;7118:14;7115:34;;;7145:1;7142;7135:12;7115:34;7168:49;7209:7;7200:6;7189:9;7185:22;7168:49;:::i;:::-;7158:59;;7236:37;7269:2;7258:9;7254:18;7236:37;:::i;:::-;7226:47;;7326:2;7315:9;7311:18;7298:32;7282:48;;7355:2;7345:8;7342:16;7339:36;;;7371:1;7368;7361:12;7339:36;;7410:60;7462:7;7451:8;7440:9;7436:24;7410:60;:::i;:::-;6757:773;;;;-1:-1:-1;6757:773:1;;-1:-1:-1;7489:8:1;;7384:86;6757:773;-1:-1:-1;;;6757:773:1:o;7535:684::-;7637:6;7645;7653;7661;7714:3;7702:9;7693:7;7689:23;7685:33;7682:53;;;7731:1;7728;7721:12;7682:53;7754:28;7772:9;7754:28;:::i;:::-;7744:38;;7833:2;7822:9;7818:18;7805:32;-1:-1:-1;;;;;7897:2:1;7889:6;7886:14;7883:34;;;7913:1;7910;7903:12;7883:34;7936:49;7977:7;7968:6;7957:9;7953:22;7936:49;:::i;:::-;7926:59;;8004:37;8037:2;8026:9;8022:18;8004:37;:::i;:::-;7994:47;;8094:2;8083:9;8079:18;8066:32;8050:48;;8123:2;8113:8;8110:16;8107:36;;;8139:1;8136;8129:12;8107:36;;8162:51;8205:7;8194:8;8183:9;8179:24;8162:51;:::i;8224:252::-;8291:6;8299;8352:2;8340:9;8331:7;8327:23;8323:32;8320:52;;;8368:1;8365;8358:12;8320:52;8391:28;8409:9;8391:28;:::i;8481:180::-;8540:6;8593:2;8581:9;8572:7;8568:23;8564:32;8561:52;;;8609:1;8606;8599:12;8561:52;-1:-1:-1;8632:23:1;;8481:180;-1:-1:-1;8481:180:1:o;8666:245::-;8745:6;8753;8806:2;8794:9;8785:7;8781:23;8777:32;8774:52;;;8822:1;8819;8812:12;8774:52;-1:-1:-1;;8845:16:1;;8901:2;8886:18;;;8880:25;8845:16;;8880:25;;-1:-1:-1;8666:245:1:o;9033:257::-;9074:3;9112:5;9106:12;9139:6;9134:3;9127:19;9155:63;9211:6;9204:4;9199:3;9195:14;9188:4;9181:5;9177:16;9155:63;:::i;:::-;9272:2;9251:15;-1:-1:-1;;9247:29:1;9238:39;;;;9279:4;9234:50;;9033:257;-1:-1:-1;;9033:257:1:o;9295:271::-;9478:6;9470;9465:3;9452:33;9434:3;9504:16;;9529:13;;;9504:16;9295:271;-1:-1:-1;9295:271:1:o;9571:274::-;9700:3;9738:6;9732:13;9754:53;9800:6;9795:3;9788:4;9780:6;9776:17;9754:53;:::i;:::-;9823:16;;;;;9571:274;-1:-1:-1;;9571:274:1:o;9850:811::-;9976:3;10005:1;10038:6;10032:13;10068:36;10094:9;10068:36;:::i;:::-;10123:1;10140:18;;;10167:104;;;;10285:1;10280:356;;;;10133:503;;10167:104;-1:-1:-1;;10200:24:1;;10188:37;;10245:16;;;;-1:-1:-1;10167:104:1;;10280:356;10311:6;10308:1;10301:17;10341:4;10386:2;10383:1;10373:16;10411:1;10425:165;10439:6;10436:1;10433:13;10425:165;;;10517:14;;10504:11;;;10497:35;10560:16;;;;10454:10;;10425:165;;;10429:3;;;10619:6;10614:3;10610:16;10603:23;;10133:503;-1:-1:-1;10652:3:1;;9850:811;-1:-1:-1;;;;;;9850:811:1:o;10666:470::-;10845:3;10883:6;10877:13;10899:53;10945:6;10940:3;10933:4;10925:6;10921:17;10899:53;:::i;:::-;11015:13;;10974:16;;;;11037:57;11015:13;10974:16;11071:4;11059:17;;11037:57;:::i;:::-;11110:20;;10666:470;-1:-1:-1;;;;10666:470:1:o;11840:488::-;-1:-1:-1;;;;;12109:15:1;;;12091:34;;12161:15;;12156:2;12141:18;;12134:43;12208:2;12193:18;;12186:34;;;12256:3;12251:2;12236:18;;12229:31;;;12034:4;;12277:45;;12302:19;;12294:6;12277:45;:::i;:::-;12269:53;11840:488;-1:-1:-1;;;;;;11840:488:1:o;12804:217::-;12951:2;12940:9;12933:21;12914:4;12971:44;13011:2;13000:9;12996:18;12988:6;12971:44;:::i;17315:356::-;17517:2;17499:21;;;17536:18;;;17529:30;17595:34;17590:2;17575:18;;17568:62;17662:2;17647:18;;17315:356::o;19212:640::-;19493:6;19481:19;;19463:38;;-1:-1:-1;;;;;19537:32:1;;19532:2;19517:18;;19510:60;19557:3;19601:2;19586:18;;19579:31;;;-1:-1:-1;;19633:45:1;;19658:19;;19650:6;19633:45;:::i;:::-;19728:6;19721:14;19714:22;19709:2;19698:9;19694:18;19687:50;19786:9;19778:6;19774:22;19768:3;19757:9;19753:19;19746:51;19814:32;19839:6;19831;19814:32;:::i;:::-;19806:40;19212:640;-1:-1:-1;;;;;;;;19212:640:1:o;19857:717::-;20124:6;20116;20112:19;20101:9;20094:38;20168:3;20163:2;20152:9;20148:18;20141:31;20075:4;20195:45;20235:3;20224:9;20220:19;20212:6;20195:45;:::i;:::-;-1:-1:-1;;;;;20280:6:1;20276:31;20271:2;20260:9;20256:18;20249:59;20356:9;20348:6;20344:22;20339:2;20328:9;20324:18;20317:50;20391:6;20383;20376:22;20445:6;20437;20432:2;20424:6;20420:15;20407:45;20498:1;20493:2;20484:6;20476;20472:19;20468:28;20461:39;20565:2;20558;20554:7;20549:2;20541:6;20537:15;20533:29;20525:6;20521:42;20517:51;20509:59;;;19857:717;;;;;;;;:::o;20579:555::-;20836:6;20828;20824:19;20813:9;20806:38;20880:3;20875:2;20864:9;20860:18;20853:31;20787:4;20907:45;20947:3;20936:9;20932:19;20924:6;20907:45;:::i;:::-;-1:-1:-1;;;;;20992:6:1;20988:31;20983:2;20972:9;20968:18;20961:59;21068:9;21060:6;21056:22;21051:2;21040:9;21036:18;21029:50;21096:32;21121:6;21113;21096:32;:::i;:::-;21088:40;20579:555;-1:-1:-1;;;;;;;20579:555:1:o;21139:1498::-;21485:6;21477;21473:19;21462:9;21455:38;21436:4;21512:2;21550:3;21545:2;21534:9;21530:18;21523:31;21574:1;21607:6;21601:13;21637:36;21663:9;21637:36;:::i;:::-;21710:6;21704:3;21693:9;21689:19;21682:35;21736:3;21758:1;21790:2;21779:9;21775:18;21807:1;21802:122;;;;21938:1;21933:354;;;;21768:519;;21802:122;-1:-1:-1;;21850:24:1;;21830:18;;;21823:52;21910:3;21895:19;;;-1:-1:-1;21802:122:1;;21933:354;21964:6;21961:1;21954:17;22012:2;22009:1;21999:16;22037:1;22051:180;22065:6;22062:1;22059:13;22051:180;;;22158:14;;22134:17;;;22130:26;;22123:50;22201:16;;;;22080:10;;22051:180;;;22255:17;;22251:26;;;-1:-1:-1;;21768:519:1;;;;;;22332:9;22327:3;22323:19;22318:2;22307:9;22303:18;22296:47;22366:29;22391:3;22383:6;22366:29;:::i;:::-;22352:43;;;22404:54;22454:2;22443:9;22439:18;22431:6;-1:-1:-1;;;;;8990:31:1;8978:44;;8916:112;22404:54;-1:-1:-1;;;;;8990:31:1;;22517:3;22502:19;;8978:44;22571:9;22563:6;22559:22;22553:3;22542:9;22538:19;22531:51;22599:32;22624:6;22616;22599:32;:::i;:::-;22591:40;21139:1498;-1:-1:-1;;;;;;;;;21139:1498:1:o;23077:128::-;23117:3;23148:1;23144:6;23141:1;23138:13;23135:39;;;23154:18;;:::i;:::-;-1:-1:-1;23190:9:1;;23077:128::o;23210:120::-;23250:1;23276;23266:35;;23281:18;;:::i;:::-;-1:-1:-1;23315:9:1;;23210:120::o;23335:168::-;23375:7;23441:1;23437;23433:6;23429:14;23426:1;23423:21;23418:1;23411:9;23404:17;23400:45;23397:71;;;23448:18;;:::i;:::-;-1:-1:-1;23488:9:1;;23335:168::o;23508:125::-;23548:4;23576:1;23573;23570:8;23567:34;;;23581:18;;:::i;:::-;-1:-1:-1;23618:9:1;;23508:125::o;23638:258::-;23710:1;23720:113;23734:6;23731:1;23728:13;23720:113;;;23810:11;;;23804:18;23791:11;;;23784:39;23756:2;23749:10;23720:113;;;23851:6;23848:1;23845:13;23842:48;;;-1:-1:-1;;23886:1:1;23868:16;;23861:27;23638:258::o;23901:380::-;23980:1;23976:12;;;;24023;;;24044:61;;24098:4;24090:6;24086:17;24076:27;;24044:61;24151:2;24143:6;24140:14;24120:18;24117:38;24114:161;;;24197:10;24192:3;24188:20;24185:1;24178:31;24232:4;24229:1;24222:15;24260:4;24257:1;24250:15;24114:161;;23901:380;;;:::o;24286:135::-;24325:3;-1:-1:-1;;24346:17:1;;24343:43;;;24366:18;;:::i;:::-;-1:-1:-1;24413:1:1;24402:13;;24286:135::o;24426:112::-;24458:1;24484;24474:35;;24489:18;;:::i;:::-;-1:-1:-1;24523:9:1;;24426:112::o;24543:127::-;24604:10;24599:3;24595:20;24592:1;24585:31;24635:4;24632:1;24625:15;24659:4;24656:1;24649:15;24675:127;24736:10;24731:3;24727:20;24724:1;24717:31;24767:4;24764:1;24757:15;24791:4;24788:1;24781:15;24807:127;24868:10;24863:3;24859:20;24856:1;24849:31;24899:4;24896:1;24889:15;24923:4;24920:1;24913:15;24939:127;25000:10;24995:3;24991:20;24988:1;24981:31;25031:4;25028:1;25021:15;25055:4;25052:1;25045:15;25071:131;-1:-1:-1;;;;;25146:31:1;;25136:42;;25126:70;;25192:1;25189;25182:12;25126:70;25071:131;:::o;25207:::-;-1:-1:-1;;;;;;25281:32:1;;25271:43;;25261:71;;25328:1;25325;25318:12

Swarm Source

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