ETH Price: $3,153.84 (+1.09%)
Gas: 2 Gwei

Token

OmniFrank (OF)
 

Overview

Max Total Supply

0 OF

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mosiah.eth
Balance
2 OF
0x11d42966bb1921faec8744b71f64e5ed762308fd
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:
OmniFrank

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : OmniFrank.sol
// 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;
}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// 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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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");

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/OmniFrank.sol

pragma solidity ^0.8.7;

contract OmniFrank is Ownable, ERC721, NonblockingReceiver {

    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 0;
    uint256 MAX_MINT_ETHEREUM = 1000;

    bool public isRevealed = false;
    uint gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("OmniFrank", "OF") { 
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }

    // mint function
    // you can choose to mint 1 or 2
    // mint is free, but payments are accepted
    function mint(uint8 numTokens) external payable {
        require(numTokens < 3, "OF: Max 2 NFTs per transaction");
        require(nextTokenId + numTokens <= MAX_MINT_ETHEREUM, "OF: Mint exceeds supply");

        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    // 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, "OF: 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 doReveal(bool is_revealed, string memory URI) external onlyOwner {
        isRevealed = is_revealed;
        baseURI = URI;
    }

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

    // This allows the devs to receive kind donations
    function withdraw(uint amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "OF: 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;
    }

    using Strings for uint256;

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

        if (!isRevealed) {
            return _baseURI();
        }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":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":[{"internalType":"bool","name":"is_revealed","type":"bool"},{"internalType":"string","name":"URI","type":"string"}],"name":"doReveal","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","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":"uint8","name":"numTokens","type":"uint8"}],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"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":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c556103e8600d556000600e60006101000a81548160ff02191690831515021790555062055730600f553480156200003e57600080fd5b506040516200543338038062005433833981810160405281019062000064919062000545565b6040518060400160405280600981526020017f4f6d6e694672616e6b00000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f46000000000000000000000000000000000000000000000000000000000000815250620000f0620000e4620001c760201b60201c565b620001cf60201b60201c565b81600190805190602001906200010892919062000293565b5080600290805190602001906200012192919062000293565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001be92919062000293565b5050506200060f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a190620005da565b90600052602060002090601f016020900481019282620002c5576000855562000311565b82601f10620002e057805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000310578251825591602001919060010190620002f3565b5b50905062000320919062000324565b5090565b5b808211156200033f57600081600090555060010162000325565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ac8262000361565b810181811067ffffffffffffffff82111715620003ce57620003cd62000372565b5b80604052505050565b6000620003e362000343565b9050620003f18282620003a1565b919050565b600067ffffffffffffffff82111562000414576200041362000372565b5b6200041f8262000361565b9050602081019050919050565b60005b838110156200044c5780820151818401526020810190506200042f565b838111156200045c576000848401525b50505050565b6000620004796200047384620003f6565b620003d7565b9050828152602081018484840111156200049857620004976200035c565b5b620004a58482856200042c565b509392505050565b600082601f830112620004c557620004c462000357565b5b8151620004d784826020860162000462565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200050d82620004e0565b9050919050565b6200051f8162000500565b81146200052b57600080fd5b50565b6000815190506200053f8162000514565b92915050565b600080604083850312156200055f576200055e6200034d565b5b600083015167ffffffffffffffff81111562000580576200057f62000352565b5b6200058e85828601620004ad565b9250506020620005a1858286016200052e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f357607f821691505b602082108103620006095762000608620005ab565b5b50919050565b614e14806200061f6000396000f3fe6080604052600436106101d75760003560e01c80637533d78811610102578063c87b56dd11610095578063e985e9c511610064578063e985e9c51461068d578063eb8d72b7146106ca578063ed88c68e146106f3578063f2fde38b146106fd576101d7565b8063c87b56dd146105ef578063cc54dd791461062c578063cf89fa0314610655578063d1deba1f14610671576101d7565b806395d89b41116100d157806395d89b4114610547578063a22cb46514610572578063b2bdfa7b1461059b578063b88d4fde146105c6576101d7565b80637533d788146104785780638da5cb5b146104b55780638ee74912146104e0578063943fb8721461051e576101d7565b80632e1a7d4d1161017a5780636352211e116101495780636352211e146103cb5780636ecd23061461040857806370a0823114610424578063715018a614610461576101d7565b80632e1a7d4d1461032557806342842e0e1461034e57806354214f691461037757806355f804b3146103a2576101d7565b8063081812fc116101b6578063081812fc1461026d578063095ea7b3146102aa5780631c37a822146102d357806323b872dd146102fc576101d7565b80621d3567146101dc57806301ffc9a71461020557806306fdde0314610242575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe9190612e75565b610726565b005b34801561021157600080fd5b5061022c60048036038101906102279190612f6c565b610968565b6040516102399190612fb4565b60405180910390f35b34801561024e57600080fd5b50610257610a4a565b6040516102649190613057565b60405180910390f35b34801561027957600080fd5b50610294600480360381019061028f91906130af565b610adc565b6040516102a1919061311d565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190613164565b610b61565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612e75565b610c78565b005b34801561030857600080fd5b50610323600480360381019061031e91906131a4565b610cf8565b005b34801561033157600080fd5b5061034c600480360381019061034791906130af565b610d58565b005b34801561035a57600080fd5b50610375600480360381019061037091906131a4565b610ea6565b005b34801561038357600080fd5b5061038c610ec6565b6040516103999190612fb4565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613298565b610ed9565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906130af565b610f6f565b6040516103ff919061311d565b60405180910390f35b610422600480360381019061041d919061331a565b611020565b005b34801561043057600080fd5b5061044b60048036038101906104469190613347565b611106565b6040516104589190613383565b60405180910390f35b34801561046d57600080fd5b506104766111bd565b005b34801561048457600080fd5b5061049f600480360381019061049a919061339e565b611245565b6040516104ac9190613420565b60405180910390f35b3480156104c157600080fd5b506104ca6112e5565b6040516104d7919061311d565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613442565b61130e565b6040516105159291906134ca565b60405180910390f35b34801561052a57600080fd5b50610545600480360381019061054091906130af565b611362565b005b34801561055357600080fd5b5061055c6113e8565b6040516105699190613057565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061351f565b61147a565b005b3480156105a757600080fd5b506105b0611490565b6040516105bd919061311d565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e8919061355f565b6114b6565b005b3480156105fb57600080fd5b50610616600480360381019061061191906130af565b611518565b6040516106239190613057565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906135e2565b6115e3565b005b61066f600480360381019061066a919061363e565b611694565b005b61068b600480360381019061068691906136de565b611978565b005b34801561069957600080fd5b506106b460048036038101906106af9190613782565b611b17565b6040516106c19190612fb4565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec91906137c2565b611bab565b005b6106fb611c57565b005b34801561070957600080fd5b50610724600480360381019061071f9190613347565b611c59565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078057600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546107a690613851565b905083511480156107ec5750600960008561ffff1661ffff1681526020019081526020016000206040516107da9190613921565b60405180910390208380519060200120145b61082b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610822906139aa565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161086a94939291906139e8565b600060405180830381600087803b15801561088457600080fd5b505af1925050508015610895575060015b610961576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108df9190613a6c565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161095494939291906139e8565b60405180910390a1610962565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a435750610a4282611d50565b5b9050919050565b606060018054610a5990613851565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590613851565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae782611dba565b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613af5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6c82610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613b87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e26565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e26565b611b17565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613c19565b60405180910390fd5b610c738383611e2e565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613cab565b60405180910390fd5b610cf284848484611ee7565b50505050565b610d09610d03611e26565b82611f14565b610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90613d3d565b60405180910390fd5b610d53838383611ff2565b505050565b610d60611e26565b73ffffffffffffffffffffffffffffffffffffffff16610d7e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613da9565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e1c90613def565b60006040518083038185875af1925050503d8060008114610e59576040519150601f19603f3d011682016040523d82523d6000602084013e610e5e565b606091505b5050905080610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613e50565b60405180910390fd5b5050565b610ec1838383604051806020016040528060008152506114b6565b505050565b600e60009054906101000a900460ff1681565b610ee1611e26565b73ffffffffffffffffffffffffffffffffffffffff16610eff6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613da9565b60405180910390fd5b80600b9080519060200190610f6b929190612b78565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613ee2565b60405180910390fd5b80915050919050565b60038160ff1610611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613f4e565b60405180910390fd5b600d548160ff16600c5461107a9190613f9d565b11156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061403f565b60405180910390fd5b6110d933600c600081546110ce9061405f565b91905081905561224d565b60028160ff16036111035761110233600c600081546110f79061405f565b91905081905561224d565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614119565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111c5611e26565b73ffffffffffffffffffffffffffffffffffffffff166111e36112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090613da9565b60405180910390fd5b611243600061226b565b565b6009602052806000526040600020600091509050805461126490613851565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613851565b80156112dd5780601f106112b2576101008083540402835291602001916112dd565b820191906000526020600020905b8154815290600101906020018083116112c057829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b61136a611e26565b73ffffffffffffffffffffffffffffffffffffffff166113886112e5565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613da9565b60405180910390fd5b80600f8190555050565b6060600280546113f790613851565b80601f016020809104026020016040519081016040528092919081815260200182805461142390613851565b80156114705780601f1061144557610100808354040283529160200191611470565b820191906000526020600020905b81548152906001019060200180831161145357829003601f168201915b5050505050905090565b61148c611485611e26565b838361232f565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114c76114c1611e26565b83611f14565b611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613d3d565b60405180910390fd5b6115128484848461249b565b50505050565b606061152382611dba565b611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906141ab565b60405180910390fd5b600e60009054906101000a900460ff166115855761157e6124f7565b90506115de565b600061158f6124f7565b905060008151116115af57604051806020016040528060008152506115da565b806115b984612589565b6040516020016115ca929190614207565b6040516020818303038152906040525b9150505b919050565b6115eb611e26565b73ffffffffffffffffffffffffffffffffffffffff166116096112e5565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613da9565b60405180910390fd5b81600e60006101000a81548160ff02191690831515021790555080600b908051906020019061168f929190612b78565b505050565b61169d81610f6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117019061429d565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461173290613851565b905011611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b9061432f565b60405180910390fd5b61177d816126e9565b6000338260405160200161179292919061434f565b6040516020818303038152906040529050600060019050600081600f546040516020016117c09291906143cf565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016118379594939291906143fb565b6040805180830381865afa158015611853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118779190614471565b509050803410156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490614549565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161193e9695949392919061460a565b6000604051808303818588803b15801561195757600080fd5b505af115801561196b573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516119a39190613a6c565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015403611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e906146f2565b60405180910390fd5b806000015483839050148015611a47575080600101548383604051611a3d929190614737565b6040518091039020145b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d9061479c565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611add9594939291906147e9565b600060405180830381600087803b158015611af757600080fd5b505af1158015611b0b573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bb3611e26565b73ffffffffffffffffffffffffffffffffffffffff16611bd16112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613da9565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611c51929190612bfe565b50505050565b565b611c61611e26565b73ffffffffffffffffffffffffffffffffffffffff16611c7f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b906148b0565b60405180910390fd5b611d4d8161226b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ea183610f6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611efe91906148fc565b91509150611f0c828261224d565b505050505050565b6000611f1f82611dba565b611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f55906149ae565b60405180910390fd5b6000611f6983610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd857508373ffffffffffffffffffffffffffffffffffffffff16611fc084610adc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe95750611fe88185611b17565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201282610f6f565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614a40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614ad2565b60405180910390fd5b6120e28383836127fa565b6120ed600082611e2e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213d9190614af2565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121949190613f9d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122678282604051806020016040528060008152506127ff565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614b72565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161248e9190612fb4565b60405180910390a3505050565b6124a6848484611ff2565b6124b28484848461285a565b6124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890614c04565b60405180910390fd5b50505050565b6060600b805461250690613851565b80601f016020809104026020016040519081016040528092919081815260200182805461253290613851565b801561257f5780601f106125545761010080835404028352916020019161257f565b820191906000526020600020905b81548152906001019060200180831161256257829003601f168201915b5050505050905090565b6060600082036125d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e4565b600082905060005b600082146126025780806125eb9061405f565b915050600a826125fb9190614c53565b91506125d8565b60008167ffffffffffffffff81111561261e5761261d612d0a565b5b6040519080825280601f01601f1916602001820160405280156126505781602001600182028036833780820191505090505b5090505b600085146126dd576001826126699190614af2565b9150600a856126789190614c84565b60306126849190613f9d565b60f81b81838151811061269a57612699614cb5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d69190614c53565b9450612654565b8093505050505b919050565b60006126f482610f6f565b9050612702816000846127fa565b61270d600083611e2e565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275d9190614af2565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b61280983836129e1565b612816600084848461285a565b612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c90614c04565b60405180910390fd5b505050565b600061287b8473ffffffffffffffffffffffffffffffffffffffff16612b65565b156129d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a4611e26565b8786866040518563ffffffff1660e01b81526004016128c69493929190614ce4565b6020604051808303816000875af192505050801561290257506040513d601f19601f820116820180604052508101906128ff9190614d45565b60015b612984573d8060008114612932576040519150601f19603f3d011682016040523d82523d6000602084013e612937565b606091505b50600081510361297c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297390614c04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129d9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790614dbe565b60405180910390fd5b612a5c600083836127fa565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aac9190613f9d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b8490613851565b90600052602060002090601f016020900481019282612ba65760008555612bed565b82601f10612bbf57805160ff1916838001178555612bed565b82800160010185558215612bed579182015b82811115612bec578251825591602001919060010190612bd1565b5b509050612bfa9190612c84565b5090565b828054612c0a90613851565b90600052602060002090601f016020900481019282612c2c5760008555612c73565b82601f10612c4557803560ff1916838001178555612c73565b82800160010185558215612c73579182015b82811115612c72578235825591602001919060010190612c57565b5b509050612c809190612c84565b5090565b5b80821115612c9d576000816000905550600101612c85565b5090565b6000604051905090565b600080fd5b600080fd5b600061ffff82169050919050565b612ccc81612cb5565b8114612cd757600080fd5b50565b600081359050612ce981612cc3565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4282612cf9565b810181811067ffffffffffffffff82111715612d6157612d60612d0a565b5b80604052505050565b6000612d74612ca1565b9050612d808282612d39565b919050565b600067ffffffffffffffff821115612da057612d9f612d0a565b5b612da982612cf9565b9050602081019050919050565b82818337600083830152505050565b6000612dd8612dd384612d85565b612d6a565b905082815260208101848484011115612df457612df3612cf4565b5b612dff848285612db6565b509392505050565b600082601f830112612e1c57612e1b612cef565b5b8135612e2c848260208601612dc5565b91505092915050565b600067ffffffffffffffff82169050919050565b612e5281612e35565b8114612e5d57600080fd5b50565b600081359050612e6f81612e49565b92915050565b60008060008060808587031215612e8f57612e8e612cab565b5b6000612e9d87828801612cda565b945050602085013567ffffffffffffffff811115612ebe57612ebd612cb0565b5b612eca87828801612e07565b9350506040612edb87828801612e60565b925050606085013567ffffffffffffffff811115612efc57612efb612cb0565b5b612f0887828801612e07565b91505092959194509250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f4981612f14565b8114612f5457600080fd5b50565b600081359050612f6681612f40565b92915050565b600060208284031215612f8257612f81612cab565b5b6000612f9084828501612f57565b91505092915050565b60008115159050919050565b612fae81612f99565b82525050565b6000602082019050612fc96000830184612fa5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613009578082015181840152602081019050612fee565b83811115613018576000848401525b50505050565b600061302982612fcf565b6130338185612fda565b9350613043818560208601612feb565b61304c81612cf9565b840191505092915050565b60006020820190508181036000830152613071818461301e565b905092915050565b6000819050919050565b61308c81613079565b811461309757600080fd5b50565b6000813590506130a981613083565b92915050565b6000602082840312156130c5576130c4612cab565b5b60006130d38482850161309a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613107826130dc565b9050919050565b613117816130fc565b82525050565b6000602082019050613132600083018461310e565b92915050565b613141816130fc565b811461314c57600080fd5b50565b60008135905061315e81613138565b92915050565b6000806040838503121561317b5761317a612cab565b5b60006131898582860161314f565b925050602061319a8582860161309a565b9150509250929050565b6000806000606084860312156131bd576131bc612cab565b5b60006131cb8682870161314f565b93505060206131dc8682870161314f565b92505060406131ed8682870161309a565b9150509250925092565b600067ffffffffffffffff82111561321257613211612d0a565b5b61321b82612cf9565b9050602081019050919050565b600061323b613236846131f7565b612d6a565b90508281526020810184848401111561325757613256612cf4565b5b613262848285612db6565b509392505050565b600082601f83011261327f5761327e612cef565b5b813561328f848260208601613228565b91505092915050565b6000602082840312156132ae576132ad612cab565b5b600082013567ffffffffffffffff8111156132cc576132cb612cb0565b5b6132d88482850161326a565b91505092915050565b600060ff82169050919050565b6132f7816132e1565b811461330257600080fd5b50565b600081359050613314816132ee565b92915050565b6000602082840312156133305761332f612cab565b5b600061333e84828501613305565b91505092915050565b60006020828403121561335d5761335c612cab565b5b600061336b8482850161314f565b91505092915050565b61337d81613079565b82525050565b60006020820190506133986000830184613374565b92915050565b6000602082840312156133b4576133b3612cab565b5b60006133c284828501612cda565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006133f2826133cb565b6133fc81856133d6565b935061340c818560208601612feb565b61341581612cf9565b840191505092915050565b6000602082019050818103600083015261343a81846133e7565b905092915050565b60008060006060848603121561345b5761345a612cab565b5b600061346986828701612cda565b935050602084013567ffffffffffffffff81111561348a57613489612cb0565b5b61349686828701612e07565b92505060406134a78682870161309a565b9150509250925092565b6000819050919050565b6134c4816134b1565b82525050565b60006040820190506134df6000830185613374565b6134ec60208301846134bb565b9392505050565b6134fc81612f99565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b6000806040838503121561353657613535612cab565b5b60006135448582860161314f565b92505060206135558582860161350a565b9150509250929050565b6000806000806080858703121561357957613578612cab565b5b60006135878782880161314f565b94505060206135988782880161314f565b93505060406135a98782880161309a565b925050606085013567ffffffffffffffff8111156135ca576135c9612cb0565b5b6135d687828801612e07565b91505092959194509250565b600080604083850312156135f9576135f8612cab565b5b60006136078582860161350a565b925050602083013567ffffffffffffffff81111561362857613627612cb0565b5b6136348582860161326a565b9150509250929050565b6000806040838503121561365557613654612cab565b5b600061366385828601612cda565b92505060206136748582860161309a565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261369e5761369d612cef565b5b8235905067ffffffffffffffff8111156136bb576136ba61367e565b5b6020830191508360018202830111156136d7576136d6613683565b5b9250929050565b6000806000806000608086880312156136fa576136f9612cab565b5b600061370888828901612cda565b955050602086013567ffffffffffffffff81111561372957613728612cb0565b5b61373588828901612e07565b945050604061374688828901612e60565b935050606086013567ffffffffffffffff81111561376757613766612cb0565b5b61377388828901613688565b92509250509295509295909350565b6000806040838503121561379957613798612cab565b5b60006137a78582860161314f565b92505060206137b88582860161314f565b9150509250929050565b6000806000604084860312156137db576137da612cab565b5b60006137e986828701612cda565b935050602084013567ffffffffffffffff81111561380a57613809612cb0565b5b61381686828701613688565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061386957607f821691505b60208210810361387c5761387b613822565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138af81613851565b6138b98186613882565b945060018216600081146138d457600181146138e557613918565b60ff19831686528186019350613918565b6138ee8561388d565b60005b83811015613910578154818901526001820191506020810190506138f1565b838801955050505b50505092915050565b600061392d82846138a2565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b6000613994603483612fda565b915061399f82613938565b604082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b6139d381612cb5565b82525050565b6139e281612e35565b82525050565b60006080820190506139fd60008301876139ca565b8181036020830152613a0f81866133e7565b9050613a1e60408301856139d9565b8181036060830152613a3081846133e7565b905095945050505050565b6000613a46826133cb565b613a508185613882565b9350613a60818560208601612feb565b80840191505092915050565b6000613a788284613a3b565b915081905092915050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613adf602c83612fda565b9150613aea82613a83565b604082019050919050565b60006020820190508181036000830152613b0e81613ad2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b71602183612fda565b9150613b7c82613b15565b604082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613c03603883612fda565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b6000613c95602b83612fda565b9150613ca082613c39565b604082019050919050565b60006020820190508181036000830152613cc481613c88565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613d27603183612fda565b9150613d3282613ccb565b604082019050919050565b60006020820190508181036000830152613d5681613d1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d93602083612fda565b9150613d9e82613d5d565b602082019050919050565b60006020820190508181036000830152613dc281613d86565b9050919050565b50565b6000613dd9600083613882565b9150613de482613dc9565b600082019050919050565b6000613dfa82613dcc565b9150819050919050565b7f4f463a204661696c656420746f20776974686472617720457468657200000000600082015250565b6000613e3a601c83612fda565b9150613e4582613e04565b602082019050919050565b60006020820190508181036000830152613e6981613e2d565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613ecc602983612fda565b9150613ed782613e70565b604082019050919050565b60006020820190508181036000830152613efb81613ebf565b9050919050565b7f4f463a204d61782032204e46547320706572207472616e73616374696f6e0000600082015250565b6000613f38601e83612fda565b9150613f4382613f02565b602082019050919050565b60006020820190508181036000830152613f6781613f2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fa882613079565b9150613fb383613079565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fe857613fe7613f6e565b5b828201905092915050565b7f4f463a204d696e74206578636565647320737570706c79000000000000000000600082015250565b6000614029601783612fda565b915061403482613ff3565b602082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b600061406a82613079565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361409c5761409b613f6e565b5b600182019050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614103602a83612fda565b915061410e826140a7565b604082019050919050565b60006020820190508181036000830152614132816140f6565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614195602f83612fda565b91506141a082614139565b604082019050919050565b600060208201905081810360008301526141c481614188565b9050919050565b600081905092915050565b60006141e182612fcf565b6141eb81856141cb565b93506141fb818560208601612feb565b80840191505092915050565b600061421382856141d6565b915061421f82846141d6565b91508190509392505050565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614287602283612fda565b91506142928261422b565b604082019050919050565b600060208201905081810360008301526142b68161427a565b9050919050565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b6000614319602e83612fda565b9150614324826142bd565b604082019050919050565b600060208201905081810360008301526143488161430c565b9050919050565b6000604082019050614364600083018561310e565b6143716020830184613374565b9392505050565b60008160f01b9050919050565b600061439082614378565b9050919050565b6143a86143a382612cb5565b614385565b82525050565b6000819050919050565b6143c96143c482613079565b6143ae565b82525050565b60006143db8285614397565b6002820191506143eb82846143b8565b6020820191508190509392505050565b600060a08201905061441060008301886139ca565b61441d602083018761310e565b818103604083015261442f81866133e7565b905061443e6060830185612fa5565b818103608083015261445081846133e7565b90509695505050505050565b60008151905061446b81613083565b92915050565b6000806040838503121561448857614487612cab565b5b60006144968582860161445c565b92505060206144a78582860161445c565b9150509250929050565b7f4f463a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560008201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b6000614533604783612fda565b915061453e826144b1565b606082019050919050565b6000602082019050818103600083015261456281614526565b9050919050565b6000815461457681613851565b61458081866133d6565b9450600182166000811461459b57600181146145ad576145e0565b60ff19831686526020860193506145e0565b6145b68561388d565b60005b838110156145d8578154818901526001820191506020810190506145b9565b808801955050505b50505092915050565b60006145f4826130dc565b9050919050565b614604816145e9565b82525050565b600060c08201905061461f60008301896139ca565b81810360208301526146318188614569565b9050818103604083015261464581876133e7565b905061465460608301866145fb565b614661608083018561310e565b81810360a083015261467381846133e7565b9050979650505050505050565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b60006146dc602683612fda565b91506146e782614680565b604082019050919050565b6000602082019050818103600083015261470b816146cf565b9050919050565b600061471e8385613882565b935061472b838584612db6565b82840190509392505050565b6000614744828486614712565b91508190509392505050565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b6000614786601a83612fda565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b60006147c883856133d6565b93506147d5838584612db6565b6147de83612cf9565b840190509392505050565b60006080820190506147fe60008301886139ca565b818103602083015261481081876133e7565b905061481f60408301866139d9565b81810360608301526148328184866147bc565b90509695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061489a602683612fda565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b6148d9816145e9565b81146148e457600080fd5b50565b6000815190506148f6816148d0565b92915050565b6000806040838503121561491357614912612cab565b5b6000614921858286016148e7565b92505060206149328582860161445c565b9150509250929050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614998602c83612fda565b91506149a38261493c565b604082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614a2a602983612fda565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614abc602483612fda565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b6000614afd82613079565b9150614b0883613079565b925082821015614b1b57614b1a613f6e565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b5c601983612fda565b9150614b6782614b26565b602082019050919050565b60006020820190508181036000830152614b8b81614b4f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614bee603283612fda565b9150614bf982614b92565b604082019050919050565b60006020820190508181036000830152614c1d81614be1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c5e82613079565b9150614c6983613079565b925082614c7957614c78614c24565b5b828204905092915050565b6000614c8f82613079565b9150614c9a83613079565b925082614caa57614ca9614c24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000608082019050614cf9600083018761310e565b614d06602083018661310e565b614d136040830185613374565b8181036060830152614d2581846133e7565b905095945050505050565b600081519050614d3f81612f40565b92915050565b600060208284031215614d5b57614d5a612cab565b5b6000614d6984828501614d30565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614da8602083612fda565b9150614db382614d72565b602082019050919050565b60006020820190508181036000830152614dd781614d9b565b905091905056fea264697066735822122097ab6768babf4719aec74d8babdb8e2acfa850eaac5c6134df1d1bb2c5dd234164736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6269394d51325356687a6d4c7479546636363673323257724d35655a336e5a6d72787a6d583747616a706b732f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d75760003560e01c80637533d78811610102578063c87b56dd11610095578063e985e9c511610064578063e985e9c51461068d578063eb8d72b7146106ca578063ed88c68e146106f3578063f2fde38b146106fd576101d7565b8063c87b56dd146105ef578063cc54dd791461062c578063cf89fa0314610655578063d1deba1f14610671576101d7565b806395d89b41116100d157806395d89b4114610547578063a22cb46514610572578063b2bdfa7b1461059b578063b88d4fde146105c6576101d7565b80637533d788146104785780638da5cb5b146104b55780638ee74912146104e0578063943fb8721461051e576101d7565b80632e1a7d4d1161017a5780636352211e116101495780636352211e146103cb5780636ecd23061461040857806370a0823114610424578063715018a614610461576101d7565b80632e1a7d4d1461032557806342842e0e1461034e57806354214f691461037757806355f804b3146103a2576101d7565b8063081812fc116101b6578063081812fc1461026d578063095ea7b3146102aa5780631c37a822146102d357806323b872dd146102fc576101d7565b80621d3567146101dc57806301ffc9a71461020557806306fdde0314610242575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe9190612e75565b610726565b005b34801561021157600080fd5b5061022c60048036038101906102279190612f6c565b610968565b6040516102399190612fb4565b60405180910390f35b34801561024e57600080fd5b50610257610a4a565b6040516102649190613057565b60405180910390f35b34801561027957600080fd5b50610294600480360381019061028f91906130af565b610adc565b6040516102a1919061311d565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190613164565b610b61565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612e75565b610c78565b005b34801561030857600080fd5b50610323600480360381019061031e91906131a4565b610cf8565b005b34801561033157600080fd5b5061034c600480360381019061034791906130af565b610d58565b005b34801561035a57600080fd5b50610375600480360381019061037091906131a4565b610ea6565b005b34801561038357600080fd5b5061038c610ec6565b6040516103999190612fb4565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613298565b610ed9565b005b3480156103d757600080fd5b506103f260048036038101906103ed91906130af565b610f6f565b6040516103ff919061311d565b60405180910390f35b610422600480360381019061041d919061331a565b611020565b005b34801561043057600080fd5b5061044b60048036038101906104469190613347565b611106565b6040516104589190613383565b60405180910390f35b34801561046d57600080fd5b506104766111bd565b005b34801561048457600080fd5b5061049f600480360381019061049a919061339e565b611245565b6040516104ac9190613420565b60405180910390f35b3480156104c157600080fd5b506104ca6112e5565b6040516104d7919061311d565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613442565b61130e565b6040516105159291906134ca565b60405180910390f35b34801561052a57600080fd5b50610545600480360381019061054091906130af565b611362565b005b34801561055357600080fd5b5061055c6113e8565b6040516105699190613057565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061351f565b61147a565b005b3480156105a757600080fd5b506105b0611490565b6040516105bd919061311d565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e8919061355f565b6114b6565b005b3480156105fb57600080fd5b50610616600480360381019061061191906130af565b611518565b6040516106239190613057565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906135e2565b6115e3565b005b61066f600480360381019061066a919061363e565b611694565b005b61068b600480360381019061068691906136de565b611978565b005b34801561069957600080fd5b506106b460048036038101906106af9190613782565b611b17565b6040516106c19190612fb4565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec91906137c2565b611bab565b005b6106fb611c57565b005b34801561070957600080fd5b50610724600480360381019061071f9190613347565b611c59565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078057600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546107a690613851565b905083511480156107ec5750600960008561ffff1661ffff1681526020019081526020016000206040516107da9190613921565b60405180910390208380519060200120145b61082b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610822906139aa565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161086a94939291906139e8565b600060405180830381600087803b15801561088457600080fd5b505af1925050508015610895575060015b610961576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108df9190613a6c565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161095494939291906139e8565b60405180910390a1610962565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a435750610a4282611d50565b5b9050919050565b606060018054610a5990613851565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590613851565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae782611dba565b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613af5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6c82610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613b87565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e26565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e26565b611b17565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613c19565b60405180910390fd5b610c738383611e2e565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613cab565b60405180910390fd5b610cf284848484611ee7565b50505050565b610d09610d03611e26565b82611f14565b610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90613d3d565b60405180910390fd5b610d53838383611ff2565b505050565b610d60611e26565b73ffffffffffffffffffffffffffffffffffffffff16610d7e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613da9565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e1c90613def565b60006040518083038185875af1925050503d8060008114610e59576040519150601f19603f3d011682016040523d82523d6000602084013e610e5e565b606091505b5050905080610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613e50565b60405180910390fd5b5050565b610ec1838383604051806020016040528060008152506114b6565b505050565b600e60009054906101000a900460ff1681565b610ee1611e26565b73ffffffffffffffffffffffffffffffffffffffff16610eff6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613da9565b60405180910390fd5b80600b9080519060200190610f6b929190612b78565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613ee2565b60405180910390fd5b80915050919050565b60038160ff1610611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613f4e565b60405180910390fd5b600d548160ff16600c5461107a9190613f9d565b11156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b29061403f565b60405180910390fd5b6110d933600c600081546110ce9061405f565b91905081905561224d565b60028160ff16036111035761110233600c600081546110f79061405f565b91905081905561224d565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614119565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111c5611e26565b73ffffffffffffffffffffffffffffffffffffffff166111e36112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090613da9565b60405180910390fd5b611243600061226b565b565b6009602052806000526040600020600091509050805461126490613851565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613851565b80156112dd5780601f106112b2576101008083540402835291602001916112dd565b820191906000526020600020905b8154815290600101906020018083116112c057829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b61136a611e26565b73ffffffffffffffffffffffffffffffffffffffff166113886112e5565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613da9565b60405180910390fd5b80600f8190555050565b6060600280546113f790613851565b80601f016020809104026020016040519081016040528092919081815260200182805461142390613851565b80156114705780601f1061144557610100808354040283529160200191611470565b820191906000526020600020905b81548152906001019060200180831161145357829003601f168201915b5050505050905090565b61148c611485611e26565b838361232f565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114c76114c1611e26565b83611f14565b611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613d3d565b60405180910390fd5b6115128484848461249b565b50505050565b606061152382611dba565b611562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611559906141ab565b60405180910390fd5b600e60009054906101000a900460ff166115855761157e6124f7565b90506115de565b600061158f6124f7565b905060008151116115af57604051806020016040528060008152506115da565b806115b984612589565b6040516020016115ca929190614207565b6040516020818303038152906040525b9150505b919050565b6115eb611e26565b73ffffffffffffffffffffffffffffffffffffffff166116096112e5565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613da9565b60405180910390fd5b81600e60006101000a81548160ff02191690831515021790555080600b908051906020019061168f929190612b78565b505050565b61169d81610f6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461170a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117019061429d565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461173290613851565b905011611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b9061432f565b60405180910390fd5b61177d816126e9565b6000338260405160200161179292919061434f565b6040516020818303038152906040529050600060019050600081600f546040516020016117c09291906143cf565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016118379594939291906143fb565b6040805180830381865afa158015611853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118779190614471565b509050803410156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490614549565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161193e9695949392919061460a565b6000604051808303818588803b15801561195757600080fd5b505af115801561196b573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516119a39190613a6c565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015403611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e906146f2565b60405180910390fd5b806000015483839050148015611a47575080600101548383604051611a3d929190614737565b6040518091039020145b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d9061479c565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611add9594939291906147e9565b600060405180830381600087803b158015611af757600080fd5b505af1158015611b0b573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bb3611e26565b73ffffffffffffffffffffffffffffffffffffffff16611bd16112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613da9565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611c51929190612bfe565b50505050565b565b611c61611e26565b73ffffffffffffffffffffffffffffffffffffffff16611c7f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b906148b0565b60405180910390fd5b611d4d8161226b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ea183610f6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611efe91906148fc565b91509150611f0c828261224d565b505050505050565b6000611f1f82611dba565b611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f55906149ae565b60405180910390fd5b6000611f6983610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd857508373ffffffffffffffffffffffffffffffffffffffff16611fc084610adc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe95750611fe88185611b17565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201282610f6f565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614a40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614ad2565b60405180910390fd5b6120e28383836127fa565b6120ed600082611e2e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213d9190614af2565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121949190613f9d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122678282604051806020016040528060008152506127ff565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490614b72565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161248e9190612fb4565b60405180910390a3505050565b6124a6848484611ff2565b6124b28484848461285a565b6124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890614c04565b60405180910390fd5b50505050565b6060600b805461250690613851565b80601f016020809104026020016040519081016040528092919081815260200182805461253290613851565b801561257f5780601f106125545761010080835404028352916020019161257f565b820191906000526020600020905b81548152906001019060200180831161256257829003601f168201915b5050505050905090565b6060600082036125d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e4565b600082905060005b600082146126025780806125eb9061405f565b915050600a826125fb9190614c53565b91506125d8565b60008167ffffffffffffffff81111561261e5761261d612d0a565b5b6040519080825280601f01601f1916602001820160405280156126505781602001600182028036833780820191505090505b5090505b600085146126dd576001826126699190614af2565b9150600a856126789190614c84565b60306126849190613f9d565b60f81b81838151811061269a57612699614cb5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d69190614c53565b9450612654565b8093505050505b919050565b60006126f482610f6f565b9050612702816000846127fa565b61270d600083611e2e565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275d9190614af2565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b61280983836129e1565b612816600084848461285a565b612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c90614c04565b60405180910390fd5b505050565b600061287b8473ffffffffffffffffffffffffffffffffffffffff16612b65565b156129d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128a4611e26565b8786866040518563ffffffff1660e01b81526004016128c69493929190614ce4565b6020604051808303816000875af192505050801561290257506040513d601f19601f820116820180604052508101906128ff9190614d45565b60015b612984573d8060008114612932576040519150601f19603f3d011682016040523d82523d6000602084013e612937565b606091505b50600081510361297c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297390614c04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129d9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790614dbe565b60405180910390fd5b612a5c600083836127fa565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aac9190613f9d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b8490613851565b90600052602060002090601f016020900481019282612ba65760008555612bed565b82601f10612bbf57805160ff1916838001178555612bed565b82800160010185558215612bed579182015b82811115612bec578251825591602001919060010190612bd1565b5b509050612bfa9190612c84565b5090565b828054612c0a90613851565b90600052602060002090601f016020900481019282612c2c5760008555612c73565b82601f10612c4557803560ff1916838001178555612c73565b82800160010185558215612c73579182015b82811115612c72578235825591602001919060010190612c57565b5b509050612c809190612c84565b5090565b5b80821115612c9d576000816000905550600101612c85565b5090565b6000604051905090565b600080fd5b600080fd5b600061ffff82169050919050565b612ccc81612cb5565b8114612cd757600080fd5b50565b600081359050612ce981612cc3565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4282612cf9565b810181811067ffffffffffffffff82111715612d6157612d60612d0a565b5b80604052505050565b6000612d74612ca1565b9050612d808282612d39565b919050565b600067ffffffffffffffff821115612da057612d9f612d0a565b5b612da982612cf9565b9050602081019050919050565b82818337600083830152505050565b6000612dd8612dd384612d85565b612d6a565b905082815260208101848484011115612df457612df3612cf4565b5b612dff848285612db6565b509392505050565b600082601f830112612e1c57612e1b612cef565b5b8135612e2c848260208601612dc5565b91505092915050565b600067ffffffffffffffff82169050919050565b612e5281612e35565b8114612e5d57600080fd5b50565b600081359050612e6f81612e49565b92915050565b60008060008060808587031215612e8f57612e8e612cab565b5b6000612e9d87828801612cda565b945050602085013567ffffffffffffffff811115612ebe57612ebd612cb0565b5b612eca87828801612e07565b9350506040612edb87828801612e60565b925050606085013567ffffffffffffffff811115612efc57612efb612cb0565b5b612f0887828801612e07565b91505092959194509250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f4981612f14565b8114612f5457600080fd5b50565b600081359050612f6681612f40565b92915050565b600060208284031215612f8257612f81612cab565b5b6000612f9084828501612f57565b91505092915050565b60008115159050919050565b612fae81612f99565b82525050565b6000602082019050612fc96000830184612fa5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613009578082015181840152602081019050612fee565b83811115613018576000848401525b50505050565b600061302982612fcf565b6130338185612fda565b9350613043818560208601612feb565b61304c81612cf9565b840191505092915050565b60006020820190508181036000830152613071818461301e565b905092915050565b6000819050919050565b61308c81613079565b811461309757600080fd5b50565b6000813590506130a981613083565b92915050565b6000602082840312156130c5576130c4612cab565b5b60006130d38482850161309a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613107826130dc565b9050919050565b613117816130fc565b82525050565b6000602082019050613132600083018461310e565b92915050565b613141816130fc565b811461314c57600080fd5b50565b60008135905061315e81613138565b92915050565b6000806040838503121561317b5761317a612cab565b5b60006131898582860161314f565b925050602061319a8582860161309a565b9150509250929050565b6000806000606084860312156131bd576131bc612cab565b5b60006131cb8682870161314f565b93505060206131dc8682870161314f565b92505060406131ed8682870161309a565b9150509250925092565b600067ffffffffffffffff82111561321257613211612d0a565b5b61321b82612cf9565b9050602081019050919050565b600061323b613236846131f7565b612d6a565b90508281526020810184848401111561325757613256612cf4565b5b613262848285612db6565b509392505050565b600082601f83011261327f5761327e612cef565b5b813561328f848260208601613228565b91505092915050565b6000602082840312156132ae576132ad612cab565b5b600082013567ffffffffffffffff8111156132cc576132cb612cb0565b5b6132d88482850161326a565b91505092915050565b600060ff82169050919050565b6132f7816132e1565b811461330257600080fd5b50565b600081359050613314816132ee565b92915050565b6000602082840312156133305761332f612cab565b5b600061333e84828501613305565b91505092915050565b60006020828403121561335d5761335c612cab565b5b600061336b8482850161314f565b91505092915050565b61337d81613079565b82525050565b60006020820190506133986000830184613374565b92915050565b6000602082840312156133b4576133b3612cab565b5b60006133c284828501612cda565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006133f2826133cb565b6133fc81856133d6565b935061340c818560208601612feb565b61341581612cf9565b840191505092915050565b6000602082019050818103600083015261343a81846133e7565b905092915050565b60008060006060848603121561345b5761345a612cab565b5b600061346986828701612cda565b935050602084013567ffffffffffffffff81111561348a57613489612cb0565b5b61349686828701612e07565b92505060406134a78682870161309a565b9150509250925092565b6000819050919050565b6134c4816134b1565b82525050565b60006040820190506134df6000830185613374565b6134ec60208301846134bb565b9392505050565b6134fc81612f99565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b6000806040838503121561353657613535612cab565b5b60006135448582860161314f565b92505060206135558582860161350a565b9150509250929050565b6000806000806080858703121561357957613578612cab565b5b60006135878782880161314f565b94505060206135988782880161314f565b93505060406135a98782880161309a565b925050606085013567ffffffffffffffff8111156135ca576135c9612cb0565b5b6135d687828801612e07565b91505092959194509250565b600080604083850312156135f9576135f8612cab565b5b60006136078582860161350a565b925050602083013567ffffffffffffffff81111561362857613627612cb0565b5b6136348582860161326a565b9150509250929050565b6000806040838503121561365557613654612cab565b5b600061366385828601612cda565b92505060206136748582860161309a565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261369e5761369d612cef565b5b8235905067ffffffffffffffff8111156136bb576136ba61367e565b5b6020830191508360018202830111156136d7576136d6613683565b5b9250929050565b6000806000806000608086880312156136fa576136f9612cab565b5b600061370888828901612cda565b955050602086013567ffffffffffffffff81111561372957613728612cb0565b5b61373588828901612e07565b945050604061374688828901612e60565b935050606086013567ffffffffffffffff81111561376757613766612cb0565b5b61377388828901613688565b92509250509295509295909350565b6000806040838503121561379957613798612cab565b5b60006137a78582860161314f565b92505060206137b88582860161314f565b9150509250929050565b6000806000604084860312156137db576137da612cab565b5b60006137e986828701612cda565b935050602084013567ffffffffffffffff81111561380a57613809612cb0565b5b61381686828701613688565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061386957607f821691505b60208210810361387c5761387b613822565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138af81613851565b6138b98186613882565b945060018216600081146138d457600181146138e557613918565b60ff19831686528186019350613918565b6138ee8561388d565b60005b83811015613910578154818901526001820191506020810190506138f1565b838801955050505b50505092915050565b600061392d82846138a2565b915081905092915050565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b6000613994603483612fda565b915061399f82613938565b604082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b6139d381612cb5565b82525050565b6139e281612e35565b82525050565b60006080820190506139fd60008301876139ca565b8181036020830152613a0f81866133e7565b9050613a1e60408301856139d9565b8181036060830152613a3081846133e7565b905095945050505050565b6000613a46826133cb565b613a508185613882565b9350613a60818560208601612feb565b80840191505092915050565b6000613a788284613a3b565b915081905092915050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613adf602c83612fda565b9150613aea82613a83565b604082019050919050565b60006020820190508181036000830152613b0e81613ad2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b71602183612fda565b9150613b7c82613b15565b604082019050919050565b60006020820190508181036000830152613ba081613b64565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613c03603883612fda565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b6000613c95602b83612fda565b9150613ca082613c39565b604082019050919050565b60006020820190508181036000830152613cc481613c88565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613d27603183612fda565b9150613d3282613ccb565b604082019050919050565b60006020820190508181036000830152613d5681613d1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d93602083612fda565b9150613d9e82613d5d565b602082019050919050565b60006020820190508181036000830152613dc281613d86565b9050919050565b50565b6000613dd9600083613882565b9150613de482613dc9565b600082019050919050565b6000613dfa82613dcc565b9150819050919050565b7f4f463a204661696c656420746f20776974686472617720457468657200000000600082015250565b6000613e3a601c83612fda565b9150613e4582613e04565b602082019050919050565b60006020820190508181036000830152613e6981613e2d565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613ecc602983612fda565b9150613ed782613e70565b604082019050919050565b60006020820190508181036000830152613efb81613ebf565b9050919050565b7f4f463a204d61782032204e46547320706572207472616e73616374696f6e0000600082015250565b6000613f38601e83612fda565b9150613f4382613f02565b602082019050919050565b60006020820190508181036000830152613f6781613f2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fa882613079565b9150613fb383613079565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fe857613fe7613f6e565b5b828201905092915050565b7f4f463a204d696e74206578636565647320737570706c79000000000000000000600082015250565b6000614029601783612fda565b915061403482613ff3565b602082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b600061406a82613079565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361409c5761409b613f6e565b5b600182019050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614103602a83612fda565b915061410e826140a7565b604082019050919050565b60006020820190508181036000830152614132816140f6565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614195602f83612fda565b91506141a082614139565b604082019050919050565b600060208201905081810360008301526141c481614188565b9050919050565b600081905092915050565b60006141e182612fcf565b6141eb81856141cb565b93506141fb818560208601612feb565b80840191505092915050565b600061421382856141d6565b915061421f82846141d6565b91508190509392505050565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614287602283612fda565b91506142928261422b565b604082019050919050565b600060208201905081810360008301526142b68161427a565b9050919050565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b6000614319602e83612fda565b9150614324826142bd565b604082019050919050565b600060208201905081810360008301526143488161430c565b9050919050565b6000604082019050614364600083018561310e565b6143716020830184613374565b9392505050565b60008160f01b9050919050565b600061439082614378565b9050919050565b6143a86143a382612cb5565b614385565b82525050565b6000819050919050565b6143c96143c482613079565b6143ae565b82525050565b60006143db8285614397565b6002820191506143eb82846143b8565b6020820191508190509392505050565b600060a08201905061441060008301886139ca565b61441d602083018761310e565b818103604083015261442f81866133e7565b905061443e6060830185612fa5565b818103608083015261445081846133e7565b90509695505050505050565b60008151905061446b81613083565b92915050565b6000806040838503121561448857614487612cab565b5b60006144968582860161445c565b92505060206144a78582860161445c565b9150509250929050565b7f4f463a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560008201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b6000614533604783612fda565b915061453e826144b1565b606082019050919050565b6000602082019050818103600083015261456281614526565b9050919050565b6000815461457681613851565b61458081866133d6565b9450600182166000811461459b57600181146145ad576145e0565b60ff19831686526020860193506145e0565b6145b68561388d565b60005b838110156145d8578154818901526001820191506020810190506145b9565b808801955050505b50505092915050565b60006145f4826130dc565b9050919050565b614604816145e9565b82525050565b600060c08201905061461f60008301896139ca565b81810360208301526146318188614569565b9050818103604083015261464581876133e7565b905061465460608301866145fb565b614661608083018561310e565b81810360a083015261467381846133e7565b9050979650505050505050565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b60006146dc602683612fda565b91506146e782614680565b604082019050919050565b6000602082019050818103600083015261470b816146cf565b9050919050565b600061471e8385613882565b935061472b838584612db6565b82840190509392505050565b6000614744828486614712565b91508190509392505050565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b6000614786601a83612fda565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b60006147c883856133d6565b93506147d5838584612db6565b6147de83612cf9565b840190509392505050565b60006080820190506147fe60008301886139ca565b818103602083015261481081876133e7565b905061481f60408301866139d9565b81810360608301526148328184866147bc565b90509695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061489a602683612fda565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b6148d9816145e9565b81146148e457600080fd5b50565b6000815190506148f6816148d0565b92915050565b6000806040838503121561491357614912612cab565b5b6000614921858286016148e7565b92505060206149328582860161445c565b9150509250929050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614998602c83612fda565b91506149a38261493c565b604082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614a2a602983612fda565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614abc602483612fda565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b6000614afd82613079565b9150614b0883613079565b925082821015614b1b57614b1a613f6e565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b5c601983612fda565b9150614b6782614b26565b602082019050919050565b60006020820190508181036000830152614b8b81614b4f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614bee603283612fda565b9150614bf982614b92565b604082019050919050565b60006020820190508181036000830152614c1d81614be1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c5e82613079565b9150614c6983613079565b925082614c7957614c78614c24565b5b828204905092915050565b6000614c8f82613079565b9150614c9a83613079565b925082614caa57614ca9614c24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000608082019050614cf9600083018761310e565b614d06602083018661310e565b614d136040830185613374565b8181036060830152614d2581846133e7565b905095945050505050565b600081519050614d3f81612f40565b92915050565b600060208284031215614d5b57614d5a612cab565b5b6000614d6984828501614d30565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614da8602083612fda565b9150614db382614d72565b602082019050919050565b60006020820190508181036000830152614dd781614d9b565b905091905056fea264697066735822122097ab6768babf4719aec74d8babdb8e2acfa850eaac5c6134df1d1bb2c5dd234164736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6269394d51325356687a6d4c7479546636363673323257724d35655a336e5a6d72787a6d583747616a706b732f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://Qmbi9MQ2SVhzmLtyTf666s22WrM5eZ3nZmrxzmX7Gajpks/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d6269394d51325356687a6d4c7479546636363673323257
Arg [4] : 724d35655a336e5a6d72787a6d583747616a706b732f00000000000000000000


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.