ETH Price: $2,974.65 (+1.87%)
Gas: 2 Gwei

Token

PillowCats (PC)
 

Overview

Max Total Supply

0 PC

Holders

1,181

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PC
0xdf4cb6f6272c013c13da84231b099c4098bbe623
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:
pillowcats

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol

pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _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,
        uint256 _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 (uint256 nativeFee, uint256 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,
        uint256 _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;

    string public hiddenMetadataUri;
    
    string public uriSuffix = ".json";

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

    bool public revealed = false;

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

        if (revealed == false) {
         return hiddenMetadataUri;
         }

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

    /**
     * @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 {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint256 => 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
    ) internal virtual;

    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/pillowcats-eth.sol

pragma solidity ^0.8.7;

contract pillowcats is Ownable, ERC721, NonblockingReceiver {
    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 700;
    uint256 MAX_MINT_ETHEREUM = 4000;
    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory hiddenMetadataUri_, address _layerZeroEndpoint)
        ERC721("PillowCats", "PC")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        hiddenMetadataUri = hiddenMetadataUri_;
    }

    // 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, "pillowcats: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETHEREUM,
            "pillowcats: 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, uint256 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
        (uint256 messageFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= messageFee,
            "pillowcats: msg.value not enough to cover messageFee. Send gas for message fees"
        );

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

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }
    
    function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
    }

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

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

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

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"hiddenMetadataUri_","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":[],"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160039190620001a2565b506009805460ff191690556102bc600e55610fa0600f55620557306010553480156200005357600080fd5b5060405162003ddf38038062003ddf83398101604081905262000076916200027b565b6040518060400160405280600a81526020016950696c6c6f774361747360b01b81525060405180604001604052806002815260200161504360f01b815250620000ce620000c86200014e60201b60201c565b62000152565b8151620000e3906001906020850190620001a2565b508051620000f9906004906020840190620001a2565b5050600c80546001600160a01b0319163317905550600980546001600160a01b03831661010002610100600160a81b0319909116179055815162000145906002906020850190620001a2565b505050620003a9565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001b0906200036c565b90600052602060002090601f016020900481019282620001d457600085556200021f565b82601f10620001ef57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021f57825182559160200191906001019062000202565b506200022d92915062000231565b5090565b5b808211156200022d576000815560010162000232565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200027657600080fd5b919050565b600080604083850312156200028f57600080fd5b82516001600160401b0380821115620002a757600080fd5b818501915085601f830112620002bc57600080fd5b815181811115620002d157620002d162000248565b604051601f8201601f19908116603f01168101908382118183101715620002fc57620002fc62000248565b816040528281526020935088848487010111156200031957600080fd5b600091505b828210156200033d57848201840151818301850152908301906200031e565b828211156200034f5760008484830101525b9550620003619150508582016200025e565b925050509250929050565b600181811c908216806200038157607f821691505b60208210811415620003a357634e487b7160e01b600052602260045260246000fd5b50919050565b613a2680620003b96000396000f3fe6080604052600436106102185760003560e01c80637533d7881161011d578063b88d4fde116100b0578063e0a808531161007f578063eb8d72b711610064578063eb8d72b714610689578063ed88c68e1461023d578063f2fde38b146106a957600080fd5b8063e0a8085314610613578063e985e9c51461063357600080fd5b8063b88d4fde146105ad578063c87b56dd146105cd578063cf89fa03146105ed578063d1deba1f1461060057600080fd5b806395d89b41116100ec57806395d89b4114610536578063a22cb4651461054b578063a45ba8e71461056b578063b2bdfa7b1461058057600080fd5b80637533d788146104605780638da5cb5b146104805780638ee74912146104ab578063943fb8721461051657600080fd5b80632e1a7d4d116101b057806355f804b31161017f5780636ecd2306116101645780636ecd23061461040a57806370a082311461041d578063715018a61461044b57600080fd5b806355f804b3146103ca5780636352211e146103ea57600080fd5b80632e1a7d4d1461035b57806342842e0e1461037b578063518302271461039b5780635503a0e8146103b557600080fd5b8063095ea7b3116101ec578063095ea7b3146102db57806316ba10e0146102fb5780631c37a8221461031b57806323b872dd1461033b57600080fd5b80621d35671461021d57806301ffc9a71461023f57806306fdde0314610274578063081812fc14610296575b600080fd5b34801561022957600080fd5b5061023d610238366004612f56565b6106c9565b005b34801561024b57600080fd5b5061025f61025a366004613009565b610912565b60405190151581526020015b60405180910390f35b34801561028057600080fd5b506102896109f7565b60405161026b919061309c565b3480156102a257600080fd5b506102b66102b13660046130af565b610a89565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026b565b3480156102e757600080fd5b5061023d6102f63660046130ea565b610b63565b34801561030757600080fd5b5061023d610316366004613116565b610cf0565b34801561032757600080fd5b5061023d610336366004612f56565b610d88565b34801561034757600080fd5b5061023d61035636600461315f565b610e23565b34801561036757600080fd5b5061023d6103763660046130af565b610ec4565b34801561038757600080fd5b5061023d61039636600461315f565b611034565b3480156103a757600080fd5b5060095461025f9060ff1681565b3480156103c157600080fd5b5061028961104f565b3480156103d657600080fd5b5061023d6103e5366004613116565b6110dd565b3480156103f657600080fd5b506102b66104053660046130af565b611171565b61023d6104183660046131a0565b611223565b34801561042957600080fd5b5061043d6104383660046131c3565b611371565b60405190815260200161026b565b34801561045757600080fd5b5061023d61143f565b34801561046c57600080fd5b5061028961047b3660046131e0565b6114cc565b34801561048c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166102b6565b3480156104b757600080fd5b506105016104c63660046131fb565b600a60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161026b565b34801561052257600080fd5b5061023d6105313660046130af565b6114e5565b34801561054257600080fd5b5061028961156b565b34801561055757600080fd5b5061023d610566366004613262565b61157a565b34801561057757600080fd5b50610289611585565b34801561058c57600080fd5b50600c546102b69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105b957600080fd5b5061023d6105c8366004613297565b611592565b3480156105d957600080fd5b506102896105e83660046130af565b611634565b61023d6105fb3660046132f7565b6117e3565b61023d61060e36600461335c565b611bce565b34801561061f57600080fd5b5061023d61062e3660046133e8565b611dc0565b34801561063f57600080fd5b5061025f61064e366004613403565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b5061023d6106a436600461343c565b611e72565b3480156106b557600080fd5b5061023d6106c43660046131c3565b611f11565b600954610100900473ffffffffffffffffffffffffffffffffffffffff1633146106f257600080fd5b61ffff84166000908152600b6020526040902080546107109061348f565b9050835114801561074f575061ffff84166000908152600b602052604090819020905161073d9190613570565b60405180910390208380519060200120145b6107e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061082290879087908790879060040161357c565b600060405180830381600087803b15801561083c57600080fd5b505af192505050801561084d575060015b61090c576040518060400160405280825181526020018280519060200120815250600a60008661ffff1661ffff1681526020019081526020016000208460405161089791906135c6565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061090390869086908690869061357c565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806109a557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109f157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610a069061348f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a329061348f565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b6e82611171565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c555750610c55813361064e565b610ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d7565b610ceb838361203e565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d84906003906020840190612d19565b5050565b333014610e17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016107d7565b61090c848484846120de565b610e2d338261210b565b610eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b610ceb83838361227b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600c5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610f9f576040519150601f19603f3d011682016040523d82523d6000602084013e610fa4565b606091505b5050905080610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f70696c6c6f77636174733a204661696c656420746f207769746864726177204560448201527f746865720000000000000000000000000000000000000000000000000000000060648201526084016107d7565b610ceb83838360405180602001604052806000815250611592565b6003805461105c9061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546110889061348f565b80156110d55780601f106110aa576101008083540402835291602001916110d5565b820191906000526020600020905b8154815290600101906020018083116110b857829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d8490600d906020840190612d19565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107d7565b60038160ff16106112b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f70696c6c6f77636174733a204d61782032204e46547320706572207472616e7360448201527f616374696f6e000000000000000000000000000000000000000000000000000060648201526084016107d7565b600f548160ff16600e546112ca9190613611565b1115611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f70696c6c6f77636174733a204d696e74206578636565647320737570706c790060448201526064016107d7565b61134f33600e6000815461134590613629565b91829055506124e2565b8060ff166002141561136e5761136e33600e6000815461134590613629565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107d7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b6114ca60006124fc565b565b600b602052600090815260409020805461105c9061348f565b60005473ffffffffffffffffffffffffffffffffffffffff163314611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b601055565b606060048054610a069061348f565b610d84338383612571565b6002805461105c9061348f565b61159c338361210b565b611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b61090c8484848461269f565b60008181526005602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166116e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107d7565b60095460ff1661178457600280546116ff9061348f565b80601f016020809104026020016040519081016040528092919081815260200182805461172b9061348f565b80156117785780601f1061174d57610100808354040283529160200191611778565b820191906000526020600020905b81548152906001019060200180831161175b57829003601f168201915b50505050509050919050565b600061178e612742565b905060008151116117ae57604051806020016040528060008152506117dc565b806117b884612751565b60036040516020016117cc93929190613662565b6040516020818303038152906040525b9392505050565b6117ec81611171565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b61ffff82166000908152600b6020526040812080546118c49061348f565b905011611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016107d7565b61195c81612883565b604080513360208201528082018390528151808203830181526060820183526010547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526009547f40a7bb10000000000000000000000000000000000000000000000000000000009094529092600192600091610100900473ffffffffffffffffffffffffffffffffffffffff16906340a7bb1090611a25908990309089908790899060a601613694565b6040805180830381865afa158015611a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6591906136f3565b50905080341015611b1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604f60248201527f70696c6c6f77636174733a206d73672e76616c7565206e6f7420656e6f75676860448201527f20746f20636f766572206d6573736167654665652e2053656e6420676173206660648201527f6f72206d65737361676520666565730000000000000000000000000000000000608482015260a4016107d7565b60095461ffff87166000908152600b602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815261010090930473ffffffffffffffffffffffffffffffffffffffff169263c5803100923492611b94928c928b913391908b90600401613717565b6000604051808303818588803b158015611bad57600080fd5b505af1158015611bc1573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600a60205260408082209051611bef9087906135c6565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016107d7565b805482148015611cd2575080600101548383604051611cc892919061382f565b6040518091039020145b611d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016107d7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611d86908990899089908990899060040161383f565b600060405180830381600087803b158015611da057600080fd5b505af1158015611db4573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b61ffff83166000908152600b6020526040902061090c908383612d9d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff8116612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107d7565b61136e816124fc565b600081815260076020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061209882611171565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906120f591906138bf565b9150915061210382826124e2565b505050505050565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff166121bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b60006121c783611171565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223657508373ffffffffffffffffffffffffffffffffffffffff1661221e84610a89565b73ffffffffffffffffffffffffffffffffffffffff16145b80612273575073ffffffffffffffffffffffffffffffffffffffff80821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661229b82611171565b73ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107d7565b73ffffffffffffffffffffffffffffffffffffffff82166123e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107d7565b6123eb60008261203e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604081208054600192906124219084906138ed565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080546001929061245c908490613611565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d84828260405180602001604052806000815250612950565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6126aa84848461227b565b6126b6848484846129f3565b61090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b6060600d8054610a069061348f565b60608161279157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127bb57806127a581613629565b91506127b49050600a83613933565b9150612795565b60008167ffffffffffffffff8111156127d6576127d6612e5b565b6040519080825280601f01601f191660200182016040528015612800576020820181803683370190505b5090505b8415612273576128156001836138ed565b9150612822600a86613947565b61282d906030613611565b60f81b8183815181106128425761284261395b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061287c600a86613933565b9450612804565b600061288e82611171565b905061289b60008361203e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081208054600192906128d19084906138ed565b909155505060008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61295a8383612be3565b61296760008484846129f3565b610ceb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612bd8576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a6a90339089908890889060040161398a565b6020604051808303816000875af1925050508015612ac3575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612ac0918101906139d3565b60015b612b8d573d808015612af1576040519150601f19603f3d011682016040523d82523d6000602084013e612af6565b606091505b508051612b85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612273565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260408120805460019290612c96908490613611565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d259061348f565b90600052602060002090601f016020900481019282612d475760008555612d8d565b82601f10612d6057805160ff1916838001178555612d8d565b82800160010185558215612d8d579182015b82811115612d8d578251825591602001919060010190612d72565b50612d99929150612e2f565b5090565b828054612da99061348f565b90600052602060002090601f016020900481019282612dcb5760008555612d8d565b82601f10612e02578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612d8d565b82800160010185558215612d8d579182015b82811115612d8d578235825591602001919060010190612e14565b5b80821115612d995760008155600101612e30565b803561ffff81168114612e5657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612ea557612ea5612e5b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612eeb57612eeb612e5b565b81604052809350858152868686011115612f0457600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612f2f57600080fd5b6117dc83833560208501612e8a565b803567ffffffffffffffff81168114612e5657600080fd5b60008060008060808587031215612f6c57600080fd5b612f7585612e44565b9350602085013567ffffffffffffffff80821115612f9257600080fd5b612f9e88838901612f1e565b9450612fac60408801612f3e565b93506060870135915080821115612fc257600080fd5b50612fcf87828801612f1e565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461136e57600080fd5b60006020828403121561301b57600080fd5b81356117dc81612fdb565b60005b83811015613041578181015183820152602001613029565b8381111561090c5750506000910152565b6000815180845261306a816020860160208601613026565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117dc6020830184613052565b6000602082840312156130c157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461136e57600080fd5b600080604083850312156130fd57600080fd5b8235613108816130c8565b946020939093013593505050565b60006020828403121561312857600080fd5b813567ffffffffffffffff81111561313f57600080fd5b8201601f8101841361315057600080fd5b61227384823560208401612e8a565b60008060006060848603121561317457600080fd5b833561317f816130c8565b9250602084013561318f816130c8565b929592945050506040919091013590565b6000602082840312156131b257600080fd5b813560ff811681146117dc57600080fd5b6000602082840312156131d557600080fd5b81356117dc816130c8565b6000602082840312156131f257600080fd5b6117dc82612e44565b60008060006060848603121561321057600080fd5b61321984612e44565b9250602084013567ffffffffffffffff81111561323557600080fd5b61324186828701612f1e565b925050604084013590509250925092565b80358015158114612e5657600080fd5b6000806040838503121561327557600080fd5b8235613280816130c8565b915061328e60208401613252565b90509250929050565b600080600080608085870312156132ad57600080fd5b84356132b8816130c8565b935060208501356132c8816130c8565b925060408501359150606085013567ffffffffffffffff8111156132eb57600080fd5b612fcf87828801612f1e565b6000806040838503121561330a57600080fd5b61310883612e44565b60008083601f84011261332557600080fd5b50813567ffffffffffffffff81111561333d57600080fd5b60208301915083602082850101111561335557600080fd5b9250929050565b60008060008060006080868803121561337457600080fd5b61337d86612e44565b9450602086013567ffffffffffffffff8082111561339a57600080fd5b6133a689838a01612f1e565b95506133b460408901612f3e565b945060608801359150808211156133ca57600080fd5b506133d788828901613313565b969995985093965092949392505050565b6000602082840312156133fa57600080fd5b6117dc82613252565b6000806040838503121561341657600080fd5b8235613421816130c8565b91506020830135613431816130c8565b809150509250929050565b60008060006040848603121561345157600080fd5b61345a84612e44565b9250602084013567ffffffffffffffff81111561347657600080fd5b61348286828701613313565b9497909650939450505050565b600181811c908216806134a357607f821691505b602082108114156134dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600081546134f08161348f565b60018281168015613508576001811461353757613566565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613566565b8560005260208060002060005b8581101561355d5781548a820152908401908201613544565b50505082870194505b5050505092915050565b60006117dc82846134e3565b61ffff851681526080602082015260006135996080830186613052565b67ffffffffffffffff8516604084015282810360608401526135bb8185613052565b979650505050505050565b600082516135d8818460208701613026565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613624576136246135e2565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561365b5761365b6135e2565b5060010190565b60008451613674818460208901613026565b845190830190613688818360208901613026565b6135bb818301866134e3565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006136cd60a0830186613052565b841515606084015282810360808401526136e78185613052565b98975050505050505050565b6000806040838503121561370657600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546137358161348f565b8060c087015260e0600180841660008114613757576001811461378a576137b8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a0152610100890195506137b8565b8d6000528660002060005b858110156137b05781548b8201860152908301908801613795565b8a0184019650505b505050505083810360408501526137cf8189613052565b9150506137f4606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526138228185613052565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061385c6080830187613052565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156138d257600080fd5b82516138dd816130c8565b6020939093015192949293505050565b6000828210156138ff576138ff6135e2565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261394257613942613904565b500490565b60008261395657613956613904565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526139c96080830184613052565b9695505050505050565b6000602082840312156139e557600080fd5b81516117dc81612fdb56fea2646970667358221220511b6f4ba3ee4cf5b9dd4261be4c499ffd6cc63b9e8021611c41208cf856043c64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d50476b7877314a4e726141364556674a57395173396b76684559575365444857555979466e337266483139632f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102185760003560e01c80637533d7881161011d578063b88d4fde116100b0578063e0a808531161007f578063eb8d72b711610064578063eb8d72b714610689578063ed88c68e1461023d578063f2fde38b146106a957600080fd5b8063e0a8085314610613578063e985e9c51461063357600080fd5b8063b88d4fde146105ad578063c87b56dd146105cd578063cf89fa03146105ed578063d1deba1f1461060057600080fd5b806395d89b41116100ec57806395d89b4114610536578063a22cb4651461054b578063a45ba8e71461056b578063b2bdfa7b1461058057600080fd5b80637533d788146104605780638da5cb5b146104805780638ee74912146104ab578063943fb8721461051657600080fd5b80632e1a7d4d116101b057806355f804b31161017f5780636ecd2306116101645780636ecd23061461040a57806370a082311461041d578063715018a61461044b57600080fd5b806355f804b3146103ca5780636352211e146103ea57600080fd5b80632e1a7d4d1461035b57806342842e0e1461037b578063518302271461039b5780635503a0e8146103b557600080fd5b8063095ea7b3116101ec578063095ea7b3146102db57806316ba10e0146102fb5780631c37a8221461031b57806323b872dd1461033b57600080fd5b80621d35671461021d57806301ffc9a71461023f57806306fdde0314610274578063081812fc14610296575b600080fd5b34801561022957600080fd5b5061023d610238366004612f56565b6106c9565b005b34801561024b57600080fd5b5061025f61025a366004613009565b610912565b60405190151581526020015b60405180910390f35b34801561028057600080fd5b506102896109f7565b60405161026b919061309c565b3480156102a257600080fd5b506102b66102b13660046130af565b610a89565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026b565b3480156102e757600080fd5b5061023d6102f63660046130ea565b610b63565b34801561030757600080fd5b5061023d610316366004613116565b610cf0565b34801561032757600080fd5b5061023d610336366004612f56565b610d88565b34801561034757600080fd5b5061023d61035636600461315f565b610e23565b34801561036757600080fd5b5061023d6103763660046130af565b610ec4565b34801561038757600080fd5b5061023d61039636600461315f565b611034565b3480156103a757600080fd5b5060095461025f9060ff1681565b3480156103c157600080fd5b5061028961104f565b3480156103d657600080fd5b5061023d6103e5366004613116565b6110dd565b3480156103f657600080fd5b506102b66104053660046130af565b611171565b61023d6104183660046131a0565b611223565b34801561042957600080fd5b5061043d6104383660046131c3565b611371565b60405190815260200161026b565b34801561045757600080fd5b5061023d61143f565b34801561046c57600080fd5b5061028961047b3660046131e0565b6114cc565b34801561048c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166102b6565b3480156104b757600080fd5b506105016104c63660046131fb565b600a60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161026b565b34801561052257600080fd5b5061023d6105313660046130af565b6114e5565b34801561054257600080fd5b5061028961156b565b34801561055757600080fd5b5061023d610566366004613262565b61157a565b34801561057757600080fd5b50610289611585565b34801561058c57600080fd5b50600c546102b69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105b957600080fd5b5061023d6105c8366004613297565b611592565b3480156105d957600080fd5b506102896105e83660046130af565b611634565b61023d6105fb3660046132f7565b6117e3565b61023d61060e36600461335c565b611bce565b34801561061f57600080fd5b5061023d61062e3660046133e8565b611dc0565b34801561063f57600080fd5b5061025f61064e366004613403565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b5061023d6106a436600461343c565b611e72565b3480156106b557600080fd5b5061023d6106c43660046131c3565b611f11565b600954610100900473ffffffffffffffffffffffffffffffffffffffff1633146106f257600080fd5b61ffff84166000908152600b6020526040902080546107109061348f565b9050835114801561074f575061ffff84166000908152600b602052604090819020905161073d9190613570565b60405180910390208380519060200120145b6107e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061082290879087908790879060040161357c565b600060405180830381600087803b15801561083c57600080fd5b505af192505050801561084d575060015b61090c576040518060400160405280825181526020018280519060200120815250600a60008661ffff1661ffff1681526020019081526020016000208460405161089791906135c6565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061090390869086908690869061357c565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806109a557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109f157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610a069061348f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a329061348f565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b6e82611171565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c555750610c55813361064e565b610ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d7565b610ceb838361203e565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d84906003906020840190612d19565b5050565b333014610e17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016107d7565b61090c848484846120de565b610e2d338261210b565b610eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b610ceb83838361227b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600c5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610f9f576040519150601f19603f3d011682016040523d82523d6000602084013e610fa4565b606091505b5050905080610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f70696c6c6f77636174733a204661696c656420746f207769746864726177204560448201527f746865720000000000000000000000000000000000000000000000000000000060648201526084016107d7565b610ceb83838360405180602001604052806000815250611592565b6003805461105c9061348f565b80601f01602080910402602001604051908101604052809291908181526020018280546110889061348f565b80156110d55780601f106110aa576101008083540402835291602001916110d5565b820191906000526020600020905b8154815290600101906020018083116110b857829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d8490600d906020840190612d19565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107d7565b60038160ff16106112b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f70696c6c6f77636174733a204d61782032204e46547320706572207472616e7360448201527f616374696f6e000000000000000000000000000000000000000000000000000060648201526084016107d7565b600f548160ff16600e546112ca9190613611565b1115611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f70696c6c6f77636174733a204d696e74206578636565647320737570706c790060448201526064016107d7565b61134f33600e6000815461134590613629565b91829055506124e2565b8060ff166002141561136e5761136e33600e6000815461134590613629565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107d7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b6114ca60006124fc565b565b600b602052600090815260409020805461105c9061348f565b60005473ffffffffffffffffffffffffffffffffffffffff163314611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b601055565b606060048054610a069061348f565b610d84338383612571565b6002805461105c9061348f565b61159c338361210b565b611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b61090c8484848461269f565b60008181526005602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166116e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107d7565b60095460ff1661178457600280546116ff9061348f565b80601f016020809104026020016040519081016040528092919081815260200182805461172b9061348f565b80156117785780601f1061174d57610100808354040283529160200191611778565b820191906000526020600020905b81548152906001019060200180831161175b57829003601f168201915b50505050509050919050565b600061178e612742565b905060008151116117ae57604051806020016040528060008152506117dc565b806117b884612751565b60036040516020016117cc93929190613662565b6040516020818303038152906040525b9392505050565b6117ec81611171565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b61ffff82166000908152600b6020526040812080546118c49061348f565b905011611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016107d7565b61195c81612883565b604080513360208201528082018390528151808203830181526060820183526010547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526009547f40a7bb10000000000000000000000000000000000000000000000000000000009094529092600192600091610100900473ffffffffffffffffffffffffffffffffffffffff16906340a7bb1090611a25908990309089908790899060a601613694565b6040805180830381865afa158015611a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6591906136f3565b50905080341015611b1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604f60248201527f70696c6c6f77636174733a206d73672e76616c7565206e6f7420656e6f75676860448201527f20746f20636f766572206d6573736167654665652e2053656e6420676173206660648201527f6f72206d65737361676520666565730000000000000000000000000000000000608482015260a4016107d7565b60095461ffff87166000908152600b602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815261010090930473ffffffffffffffffffffffffffffffffffffffff169263c5803100923492611b94928c928b913391908b90600401613717565b6000604051808303818588803b158015611bad57600080fd5b505af1158015611bc1573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600a60205260408082209051611bef9087906135c6565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016107d7565b805482148015611cd2575080600101548383604051611cc892919061382f565b6040518091039020145b611d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016107d7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611d86908990899089908990899060040161383f565b600060405180830381600087803b158015611da057600080fd5b505af1158015611db4573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b61ffff83166000908152600b6020526040902061090c908383612d9d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff8116612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107d7565b61136e816124fc565b600081815260076020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061209882611171565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906120f591906138bf565b9150915061210382826124e2565b505050505050565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff166121bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b60006121c783611171565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223657508373ffffffffffffffffffffffffffffffffffffffff1661221e84610a89565b73ffffffffffffffffffffffffffffffffffffffff16145b80612273575073ffffffffffffffffffffffffffffffffffffffff80821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661229b82611171565b73ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107d7565b73ffffffffffffffffffffffffffffffffffffffff82166123e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107d7565b6123eb60008261203e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604081208054600192906124219084906138ed565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080546001929061245c908490613611565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d84828260405180602001604052806000815250612950565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6126aa84848461227b565b6126b6848484846129f3565b61090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b6060600d8054610a069061348f565b60608161279157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127bb57806127a581613629565b91506127b49050600a83613933565b9150612795565b60008167ffffffffffffffff8111156127d6576127d6612e5b565b6040519080825280601f01601f191660200182016040528015612800576020820181803683370190505b5090505b8415612273576128156001836138ed565b9150612822600a86613947565b61282d906030613611565b60f81b8183815181106128425761284261395b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061287c600a86613933565b9450612804565b600061288e82611171565b905061289b60008361203e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081208054600192906128d19084906138ed565b909155505060008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61295a8383612be3565b61296760008484846129f3565b610ceb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612bd8576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a6a90339089908890889060040161398a565b6020604051808303816000875af1925050508015612ac3575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612ac0918101906139d3565b60015b612b8d573d808015612af1576040519150601f19603f3d011682016040523d82523d6000602084013e612af6565b606091505b508051612b85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612273565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260408120805460019290612c96908490613611565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d259061348f565b90600052602060002090601f016020900481019282612d475760008555612d8d565b82601f10612d6057805160ff1916838001178555612d8d565b82800160010185558215612d8d579182015b82811115612d8d578251825591602001919060010190612d72565b50612d99929150612e2f565b5090565b828054612da99061348f565b90600052602060002090601f016020900481019282612dcb5760008555612d8d565b82601f10612e02578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612d8d565b82800160010185558215612d8d579182015b82811115612d8d578235825591602001919060010190612e14565b5b80821115612d995760008155600101612e30565b803561ffff81168114612e5657600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612ea557612ea5612e5b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612eeb57612eeb612e5b565b81604052809350858152868686011115612f0457600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612f2f57600080fd5b6117dc83833560208501612e8a565b803567ffffffffffffffff81168114612e5657600080fd5b60008060008060808587031215612f6c57600080fd5b612f7585612e44565b9350602085013567ffffffffffffffff80821115612f9257600080fd5b612f9e88838901612f1e565b9450612fac60408801612f3e565b93506060870135915080821115612fc257600080fd5b50612fcf87828801612f1e565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461136e57600080fd5b60006020828403121561301b57600080fd5b81356117dc81612fdb565b60005b83811015613041578181015183820152602001613029565b8381111561090c5750506000910152565b6000815180845261306a816020860160208601613026565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117dc6020830184613052565b6000602082840312156130c157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461136e57600080fd5b600080604083850312156130fd57600080fd5b8235613108816130c8565b946020939093013593505050565b60006020828403121561312857600080fd5b813567ffffffffffffffff81111561313f57600080fd5b8201601f8101841361315057600080fd5b61227384823560208401612e8a565b60008060006060848603121561317457600080fd5b833561317f816130c8565b9250602084013561318f816130c8565b929592945050506040919091013590565b6000602082840312156131b257600080fd5b813560ff811681146117dc57600080fd5b6000602082840312156131d557600080fd5b81356117dc816130c8565b6000602082840312156131f257600080fd5b6117dc82612e44565b60008060006060848603121561321057600080fd5b61321984612e44565b9250602084013567ffffffffffffffff81111561323557600080fd5b61324186828701612f1e565b925050604084013590509250925092565b80358015158114612e5657600080fd5b6000806040838503121561327557600080fd5b8235613280816130c8565b915061328e60208401613252565b90509250929050565b600080600080608085870312156132ad57600080fd5b84356132b8816130c8565b935060208501356132c8816130c8565b925060408501359150606085013567ffffffffffffffff8111156132eb57600080fd5b612fcf87828801612f1e565b6000806040838503121561330a57600080fd5b61310883612e44565b60008083601f84011261332557600080fd5b50813567ffffffffffffffff81111561333d57600080fd5b60208301915083602082850101111561335557600080fd5b9250929050565b60008060008060006080868803121561337457600080fd5b61337d86612e44565b9450602086013567ffffffffffffffff8082111561339a57600080fd5b6133a689838a01612f1e565b95506133b460408901612f3e565b945060608801359150808211156133ca57600080fd5b506133d788828901613313565b969995985093965092949392505050565b6000602082840312156133fa57600080fd5b6117dc82613252565b6000806040838503121561341657600080fd5b8235613421816130c8565b91506020830135613431816130c8565b809150509250929050565b60008060006040848603121561345157600080fd5b61345a84612e44565b9250602084013567ffffffffffffffff81111561347657600080fd5b61348286828701613313565b9497909650939450505050565b600181811c908216806134a357607f821691505b602082108114156134dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600081546134f08161348f565b60018281168015613508576001811461353757613566565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613566565b8560005260208060002060005b8581101561355d5781548a820152908401908201613544565b50505082870194505b5050505092915050565b60006117dc82846134e3565b61ffff851681526080602082015260006135996080830186613052565b67ffffffffffffffff8516604084015282810360608401526135bb8185613052565b979650505050505050565b600082516135d8818460208701613026565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613624576136246135e2565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561365b5761365b6135e2565b5060010190565b60008451613674818460208901613026565b845190830190613688818360208901613026565b6135bb818301866134e3565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006136cd60a0830186613052565b841515606084015282810360808401526136e78185613052565b98975050505050505050565b6000806040838503121561370657600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546137358161348f565b8060c087015260e0600180841660008114613757576001811461378a576137b8565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a0152610100890195506137b8565b8d6000528660002060005b858110156137b05781548b8201860152908301908801613795565b8a0184019650505b505050505083810360408501526137cf8189613052565b9150506137f4606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526138228185613052565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061385c6080830187613052565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156138d257600080fd5b82516138dd816130c8565b6020939093015192949293505050565b6000828210156138ff576138ff6135e2565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261394257613942613904565b500490565b60008261395657613956613904565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526139c96080830184613052565b9695505050505050565b6000602082840312156139e557600080fd5b81516117dc81612fdb56fea2646970667358221220511b6f4ba3ee4cf5b9dd4261be4c499ffd6cc63b9e8021611c41208cf856043c64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d50476b7877314a4e726141364556674a57395173396b76684559575365444857555979466e337266483139632f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : hiddenMetadataUri_ (string): ipfs://QmPGkxw1JNraA6EVgJW9Qs9kvhEYWSeDHWUYyFn3rfH19c/hidden.json
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [3] : 697066733a2f2f516d50476b7877314a4e726141364556674a57395173396b76
Arg [4] : 684559575365444857555979466e337266483139632f68696464656e2e6a736f
Arg [5] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50385:4331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47004:1098;;;;;;;;;;-1:-1:-1;47004:1098:0;;;;;:::i;:::-;;:::i;:::-;;32972:355;;;;;;;;;;-1:-1:-1;32972:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32972:355:0;;;;;;;;34141:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35929:308::-;;;;;;;;;;-1:-1:-1;35929:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35929:308:0;3903:226:1;35452:411:0;;;;;;;;;;-1:-1:-1;35452:411:0;;;;;:::i;:::-;;:::i;53990:100::-;;;;;;;;;;-1:-1:-1;53990:100:0;;;;;:::i;:::-;;:::i;48110:435::-;;;;;;;;;;-1:-1:-1;48110:435:0;;;;;:::i;:::-;;:::i;36848:376::-;;;;;;;;;;-1:-1:-1;36848:376:0;;;;;:::i;:::-;;:::i;53585:185::-;;;;;;;;;;-1:-1:-1;53585:185:0;;;;;:::i;:::-;;:::i;37295:::-;;;;;;;;;;-1:-1:-1;37295:185:0;;;;;:::i;:::-;;:::i;32631:28::-;;;;;;;;;;-1:-1:-1;32631:28:0;;;;;;;;32100:33;;;;;;;;;;;;;:::i;53264:90::-;;;;;;;;;;-1:-1:-1;53264:90:0;;;;;:::i;:::-;;:::i;33748:326::-;;;;;;;;;;-1:-1:-1;33748:326:0;;;;;:::i;:::-;;:::i;51010:407::-;;;;;;:::i;:::-;;:::i;33391:295::-;;;;;;;;;;-1:-1:-1;33391:295:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;33391:295:0;6055:177:1;13161:103:0;;;;;;;;;;;;;:::i;46803:51::-;;;;;;;;;;-1:-1:-1;46803:51:0;;;;;:::i;:::-;;:::i;12510:87::-;;;;;;;;;;-1:-1:-1;12556:7:0;12583:6;;;12510:87;;46694:102;;;;;;;;;;-1:-1:-1;46694:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;46694:102:0;7114:248:1;53854:128:0;;;;;;;;;;-1:-1:-1;53854:128:0;;;;;:::i;:::-;;:::i;34310:104::-;;;;;;;;;;;;;:::i;36309:187::-;;;;;;;;;;-1:-1:-1;36309:187:0;;;;;:::i;:::-;;:::i;32056:31::-;;;;;;;;;;;;;:::i;50452:21::-;;;;;;;;;;-1:-1:-1;50452:21:0;;;;;;;;37551:365;;;;;;;;;;-1:-1:-1;37551:365:0;;;;;:::i;:::-;;:::i;34485:563::-;;;;;;;;;;-1:-1:-1;34485:563:0;;;;;:::i;:::-;;:::i;51556:1700::-;;;;;;:::i;:::-;;:::i;49205:916::-;;;;;;:::i;:::-;;:::i;53366:83::-;;;;;;;;;;-1:-1:-1;53366:83:0;;;;;:::i;:::-;;:::i;36567:214::-;;;;;;;;;;-1:-1:-1;36567:214:0;;;;;:::i;:::-;36738:25;;;;36709:4;36738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36567:214;50129:181;;;;;;;;;;-1:-1:-1;50129:181:0;;;;;:::i;:::-;;:::i;13419:238::-;;;;;;;;;;-1:-1:-1;13419:238:0;;;;;:::i;:::-;;:::i;47004:1098::-;47209:8;;;;;;;47187:10;:31;47179:40;;;;;;47344:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47322:11;:18;:61;:168;;;;-1:-1:-1;47457:32:0;;;;;;;:19;:32;;;;;;;47447:43;;;;47457:32;47447:43;:::i;:::-;;;;;;;;47414:11;47404:22;;;;;;:86;47322:168;47300:270;;;;;;;12571:2:1;47300:270:0;;;12553:21:1;12610:2;12590:18;;;12583:30;12649:34;12629:18;;;12622:62;12720:22;12700:18;;;12693:50;12760:19;;47300:270:0;;;;;;;;;47698:60;;;;;:4;;:16;;:60;;47715:11;;47728;;47741:6;;47749:8;;47698:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47694:401;;47905:101;;;;;;;;47938:8;:15;47905:101;;;;47982:8;47972:19;;;;;;47905:101;;;47854:14;:27;47869:11;47854:27;;;;;;;;;;;;;;;47882:11;47854:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;48026:57;;;;48040:11;;48053;;47895:6;;48074:8;;48026:57;:::i;:::-;;;;;;;;47694:401;47004:1098;;;;:::o;32972:355::-;33119:4;33161:40;;;33176:25;33161:40;;:105;;-1:-1:-1;33218:48:0;;;33233:33;33218:48;33161:105;:158;;;-1:-1:-1;25610:25:0;25595:40;;;;33283:36;33141:178;32972:355;-1:-1:-1;;32972:355:0:o;34141:100::-;34195:13;34228:5;34221:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34141:100;:::o;35929:308::-;36050:7;39552:16;;;:7;:16;;;;;;:30;:16;36075:110;;;;;;;13833:2:1;36075:110:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;13982:14;13962:18;;;13955:42;14014:19;;36075:110:0;13631:408:1;36075:110:0;-1:-1:-1;36205:24:0;;;;:15;:24;;;;;;;;;35929:308::o;35452:411::-;35533:13;35549:23;35564:7;35549:14;:23::i;:::-;35533:39;;35597:5;35591:11;;:2;:11;;;;35583:57;;;;;;;14246:2:1;35583:57:0;;;14228:21:1;14285:2;14265:18;;;14258:30;14324:34;14304:18;;;14297:62;14395:3;14375:18;;;14368:31;14416:19;;35583:57:0;14044:397:1;35583:57:0;11293:10;35675:21;;;;;:62;;-1:-1:-1;35700:37:0;35717:5;11293:10;36567:214;:::i;35700:37::-;35653:168;;;;;;;14648:2:1;35653:168:0;;;14630:21:1;14687:2;14667:18;;;14660:30;14726:34;14706:18;;;14699:62;14797:26;14777:18;;;14770:54;14841:19;;35653:168:0;14446:420:1;35653:168:0;35834:21;35843:2;35847:7;35834:8;:21::i;:::-;35522:341;35452:411;;:::o;53990:100::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;54062:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53990:100:::0;:::o;48110:435::-;48336:10;48358:4;48336:27;48314:120;;;;;;;15434:2:1;48314:120:0;;;15416:21:1;15473:2;15453:18;;;15446:30;15512:34;15492:18;;;15485:62;15583:13;15563:18;;;15556:41;15614:19;;48314:120:0;15232:407:1;48314:120:0;48483:54;48494:11;48507;48520:6;48528:8;48483:10;:54::i;36848:376::-;37057:41;11293:10;37090:7;37057:18;:41::i;:::-;37035:140;;;;;;;15846:2:1;37035:140:0;;;15828:21:1;15885:2;15865:18;;;15858:30;15924:34;15904:18;;;15897:62;15995:19;15975:18;;;15968:47;16032:19;;37035:140:0;15644:413:1;37035:140:0;37188:28;37198:4;37204:2;37208:7;37188:9;:28::i;53585:185::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53670:6:::1;::::0;53662:36:::1;::::0;53647:9:::1;::::0;53670:6:::1;;::::0;53690:3;;53647:9;53662:36;53647:9;53662:36;53690:3;53670:6;53662:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53646:52;;;53717:4;53709:53;;;::::0;::::1;::::0;;16474:2:1;53709:53:0::1;::::0;::::1;16456:21:1::0;16513:2;16493:18;;;16486:30;16552:34;16532:18;;;16525:62;16623:6;16603:18;;;16596:34;16647:19;;53709:53:0::1;16272:400:1::0;37295:185:0;37433:39;37450:4;37456:2;37460:7;37433:39;;;;;;;;;;;;:16;:39::i;32100:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53264:90::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53333:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33748:326::-:0;33865:7;33906:16;;;:7;:16;;;;;;;;33955:19;33933:110;;;;;;;16879:2:1;33933:110:0;;;16861:21:1;16918:2;16898:18;;;16891:30;16957:34;16937:18;;;16930:62;17028:11;17008:18;;;17001:39;17057:19;;33933:110:0;16677:405:1;51010:407:0;51089:1;51077:9;:13;;;51069:64;;;;;;;17289:2:1;51069:64:0;;;17271:21:1;17328:2;17308:18;;;17301:30;17367:34;17347:18;;;17340:62;17438:8;17418:18;;;17411:36;17464:19;;51069:64:0;17087:402:1;51069:64:0;51193:17;;51180:9;51166:23;;:11;;:23;;;;:::i;:::-;:44;;51144:125;;;;;;;18018:2:1;51144:125:0;;;18000:21:1;18057:2;18037:18;;;18030:30;18096:33;18076:18;;;18069:61;18147:18;;51144:125:0;17816:355:1;51144:125:0;51280:36;51290:10;51304:11;;51302:13;;;;;:::i;:::-;;;;;-1:-1:-1;51280:9:0;:36::i;:::-;51331:9;:14;;51344:1;51331:14;51327:83;;;51362:36;51372:10;51386:11;;51384:13;;;;;:::i;51362:36::-;51010:407;:::o;33391:295::-;33508:7;33555:19;;;33533:111;;;;;;;18578:2:1;33533:111:0;;;18560:21:1;18617:2;18597:18;;;18590:30;18656:34;18636:18;;;18629:62;18727:12;18707:18;;;18700:40;18757:19;;33533:111:0;18376:406:1;33533:111:0;-1:-1:-1;33662:16:0;;;;;;:9;:16;;;;;;;33391:295::o;13161:103::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;13226:30:::1;13253:1;13226:18;:30::i;:::-;13161:103::o:0;46803:51::-;;;;;;;;;;;;;;;;:::i;53854:128::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53939:26:::1;:35:::0;53854:128::o;34310:104::-;34366:13;34399:7;34392:14;;;;;:::i;36309:187::-;36436:52;11293:10;36469:8;36479;36436:18;:52::i;32056:31::-;;;;;;;:::i;37551:365::-;37740:41;11293:10;37773:7;37740:18;:41::i;:::-;37718:140;;;;;;;15846:2:1;37718:140:0;;;15828:21:1;15885:2;15865:18;;;15858:30;15924:34;15904:18;;;15897:62;15995:19;15975:18;;;15968:47;16032:19;;37718:140:0;15644:413:1;37718:140:0;37869:39;37883:4;37889:2;37893:7;37902:5;37869:13;:39::i;34485:563::-;39528:4;39552:16;;;:7;:16;;;;;;34603:13;;39552:30;:16;34634:113;;;;;;;18989:2:1;34634:113:0;;;18971:21:1;19028:2;19008:18;;;19001:30;19067:34;19047:18;;;19040:62;19138:17;19118:18;;;19111:45;19173:19;;34634:113:0;18787:411:1;34634:113:0;34764:8;;;;34760:72;;34802:17;34795:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34485:563;;;:::o;34760:72::-;34844:21;34868:10;:8;:10::i;:::-;34844:34;;34933:1;34915:7;34909:21;:25;:131;;;;;;;;;;;;;;;;;34978:7;34987:18;:7;:16;:18::i;:::-;35007:9;34961:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34909:131;34889:151;34485:563;-1:-1:-1;;;34485:563:0:o;51556:1700::-;51676:16;51684:7;51676;:16::i;:::-;51662:30;;:10;:30;;;51640:114;;;;;;;19959:2:1;51640:114:0;;;19941:21:1;19998:2;19978:18;;;19971:30;20037:34;20017:18;;;20010:62;20108:4;20088:18;;;20081:32;20130:19;;51640:114:0;19757:398:1;51640:114:0;51787:29;;;51826:1;51787:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;51765:136;;;;;;;20362:2:1;51765:136:0;;;20344:21:1;20401:2;20381:18;;;20374:30;20440:34;20420:18;;;20413:62;20511:16;20491:18;;;20484:44;20545:19;;51765:136:0;20160:410:1;51765:136:0;51981:14;51987:7;51981:5;:14::i;:::-;52092:31;;;52103:10;52092:31;;;20749:74:1;20839:18;;;20832:34;;;52092:31:0;;;;;;;;;20722:18:1;;;52092:31:0;;52320:26;;21048:16:1;52267:90:0;;;21032:102:1;21150:11;;;;21143:27;;;;52267:90:0;;;;;;;;;;21186:12:1;;;52267:90:0;;;;52536:8;;:153;;;;52092:31;;52226:1;;-1:-1:-1;;52536:8:0;;;;;;:21;;:153;;52572:8;;52603:4;;52092:31;;-1:-1:-1;;52267:90:0;;52536:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52511:178;;;52737:10;52724:9;:23;;52702:152;;;;;;;22331:2:1;52702:152:0;;;22313:21:1;22370:2;22350:18;;;22343:30;22409:34;22389:18;;;22382:62;22480:34;22460:18;;;22453:62;22552:17;22531:19;;;22524:46;22587:19;;52702:152:0;22129:483:1;52702:152:0;52867:8;;52959:29;;;;;;;:19;:29;;;;;;52867:381;;;;;:8;;;;;;;:13;;52888:9;;52867:381;;52959:29;;53042:7;;53098:10;;52959:29;53208:13;;52867:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51629:1627;;;;51556:1700;;:::o;49205:916::-;49464:27;;;49429:32;49464:27;;;:14;:27;;;;;;:64;;;;49506:11;;49464:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49569:21;;;;49464:72;;-1:-1:-1;49547:123:0;;;;;;;24366:2:1;49547:123:0;;;24348:21:1;24405:2;24385:18;;;24378:30;24444:34;24424:18;;;24417:62;24515:8;24495:18;;;24488:36;24541:19;;49547:123:0;24164:402:1;49547:123:0;49722:23;;49703:42;;:107;;;;;49789:9;:21;;;49776:8;;49766:19;;;;;;;:::i;:::-;;;;;;;;:44;49703:107;49681:183;;;;;;;25049:2:1;49681:183:0;;;25031:21:1;25088:2;25068:18;;;25061:30;25127:28;25107:18;;;25100:56;25173:18;;49681:183:0;24847:350:1;49681:183:0;49938:1;49912:27;;;49950:21;;;:34;50053:60;;;;;:4;;:16;;:60;;50070:11;;50083;;50096:6;;50104:8;;;;50053:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49373:748;49205:916;;;;;:::o;53366:83::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53424:8:::1;:17:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;53366:83::o;50129:181::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;50256:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50288:14;;50256:46:::1;:::i;13419:238::-:0;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;13522:22:::1;::::0;::::1;13500:110;;;::::0;::::1;::::0;;26186:2:1;13500:110:0::1;::::0;::::1;26168:21:1::0;26225:2;26205:18;;;26198:30;26264:34;26244:18;;;26237:62;26335:8;26315:18;;;26308:36;26361:19;;13500:110:0::1;25984:402:1::0;13500:110:0::1;13621:28;13640:8;13621:18;:28::i;43519:174::-:0;43594:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43648:23;43594:24;43648:14;:23::i;:::-;43639:46;;;;;;;;;;;;43519:174;;:::o;54181:424::-;54377:14;54393:15;54437:8;54412:77;;;;;;;;;;;;:::i;:::-;54376:113;;;;54571:26;54581:6;54589:7;54571:9;:26::i;:::-;54346:259;;54181:424;;;;:::o;39757:452::-;39886:4;39552:16;;;:7;:16;;;;;;:30;:16;39908:110;;;;;;;26918:2:1;39908:110:0;;;26900:21:1;26957:2;26937:18;;;26930:30;26996:34;26976:18;;;26969:62;27067:14;27047:18;;;27040:42;27099:19;;39908:110:0;26716:408:1;39908:110:0;40029:13;40045:23;40060:7;40045:14;:23::i;:::-;40029:39;;40098:5;40087:16;;:7;:16;;;:64;;;;40144:7;40120:31;;:20;40132:7;40120:11;:20::i;:::-;:31;;;40087:64;:113;;;-1:-1:-1;36738:25:0;;;;36709:4;36738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40168:32;40079:122;39757:452;-1:-1:-1;;;;39757:452:0:o;42786:615::-;42959:4;42932:31;;:23;42947:7;42932:14;:23::i;:::-;:31;;;42910:122;;;;;;;27331:2:1;42910:122:0;;;27313:21:1;27370:2;27350:18;;;27343:30;27409:34;27389:18;;;27382:62;27480:11;27460:18;;;27453:39;27509:19;;42910:122:0;27129:405:1;42910:122:0;43051:16;;;43043:65;;;;;;;27741:2:1;43043:65:0;;;27723:21:1;27780:2;27760:18;;;27753:30;27819:34;27799:18;;;27792:62;27890:6;27870:18;;;27863:34;27914:19;;43043:65:0;27539:400:1;43043:65:0;43225:29;43242:1;43246:7;43225:8;:29::i;:::-;43267:15;;;;;;;:9;:15;;;;;:20;;43286:1;;43267:15;:20;;43286:1;;43267:20;:::i;:::-;;;;-1:-1:-1;;43298:13:0;;;;;;;:9;:13;;;;;:18;;43315:1;;43298:13;:18;;43315:1;;43298:18;:::i;:::-;;;;-1:-1:-1;;43327:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43366:27;;43327:16;;43366:27;;;;;;;42786:615;;;:::o;40551:110::-;40627:26;40637:2;40641:7;40627:26;;;;;;;;;;;;:9;:26::i;13817:191::-;13891:16;13910:6;;;13927:17;;;;;;;;;;13960:40;;13910:6;;;;;;;13960:40;;13891:16;13960:40;13880:128;13817:191;:::o;43835:315::-;43990:8;43981:17;;:5;:17;;;;43973:55;;;;;;;28276:2:1;43973:55:0;;;28258:21:1;28315:2;28295:18;;;28288:30;28354:27;28334:18;;;28327:55;28399:18;;43973:55:0;28074:349:1;43973:55:0;44039:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;44101:41;;2724::1;;;44101::0;;2697:18:1;44101:41:0;;;;;;;43835:315;;;:::o;38798:352::-;38955:28;38965:4;38971:2;38975:7;38955:9;:28::i;:::-;39016:48;39039:4;39045:2;39049:7;39058:5;39016:22;:48::i;:::-;38994:148;;;;;;;28630:2:1;38994:148:0;;;28612:21:1;28669:2;28649:18;;;28642:30;28708:34;28688:18;;;28681:62;28779:20;28759:18;;;28752:48;28817:19;;38994:148:0;28428:414:1;54613:100:0;54665:13;54698:7;54691:14;;;;;:::i;8745:723::-;8801:13;9022:10;9018:53;;-1:-1:-1;;9049:10:0;;;;;;;;;;;;;;;;;;8745:723::o;9018:53::-;9096:5;9081:12;9137:78;9144:9;;9137:78;;9170:8;;;;:::i;:::-;;-1:-1:-1;9193:10:0;;-1:-1:-1;9201:2:0;9193:10;;:::i;:::-;;;9137:78;;;9225:19;9257:6;9247:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9247:17:0;;9225:39;;9275:154;9282:10;;9275:154;;9309:11;9319:1;9309:11;;:::i;:::-;;-1:-1:-1;9378:10:0;9386:2;9378:5;:10;:::i;:::-;9365:24;;:2;:24;:::i;:::-;9352:39;;9335:6;9342;9335:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9406:11:0;9415:2;9406:11;;:::i;:::-;;;9275:154;;42089:360;42149:13;42165:23;42180:7;42165:14;:23::i;:::-;42149:39;;42290:29;42307:1;42311:7;42290:8;:29::i;:::-;42332:16;;;;;;;:9;:16;;;;;:21;;42352:1;;42332:16;:21;;42352:1;;42332:21;:::i;:::-;;;;-1:-1:-1;;42371:16:0;;;;:7;:16;;;;;;42364:23;;;;;;42405:36;42379:7;;42371:16;42364:23;42405:36;;;;;42371:16;;42405:36;42138:311;42089:360;:::o;40888:321::-;41018:18;41024:2;41028:7;41018:5;:18::i;:::-;41069:54;41100:1;41104:2;41108:7;41117:5;41069:22;:54::i;:::-;41047:154;;;;;;;28630:2:1;41047:154:0;;;28612:21:1;28669:2;28649:18;;;28642:30;28708:34;28688:18;;;28681:62;28779:20;28759:18;;;28752:48;28817:19;;41047:154:0;28428:414:1;44715:980:0;44870:4;44891:13;;;15156:20;15204:8;44887:801;;44944:175;;;;;:36;;;;;;:175;;11293:10;;45038:4;;45065:7;;45095:5;;44944:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44944:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44923:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45302:13:0;;45298:320;;45345:108;;;;;28630:2:1;45345:108:0;;;28612:21:1;28669:2;28649:18;;;28642:30;28708:34;28688:18;;;28681:62;28779:20;28759:18;;;28752:48;28817:19;;45345:108:0;28428:414:1;45298:320:0;45568:6;45562:13;45553:6;45549:2;45545:15;45538:38;44923:710;45183:51;;45193:41;45183:51;;-1:-1:-1;45176:58:0;;44887:801;-1:-1:-1;45672:4:0;44715:980;;;;;;:::o;41547:313::-;41627:16;;;41619:61;;;;;;;30440:2:1;41619:61:0;;;30422:21:1;;;30459:18;;;30452:30;30518:34;30498:18;;;30491:62;30570:18;;41619:61:0;30238:356:1;41619:61:0;41751:13;;;;;;;:9;:13;;;;;:18;;41768:1;;41751:13;:18;;41768:1;;41751:18;:::i;:::-;;;;-1:-1:-1;;41780:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41819:33;;41780:16;;;41819:33;;41780:16;;41819:33;41547:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:450::-;4682:6;4735:2;4723:9;4714:7;4710:23;4706:32;4703:52;;;4751:1;4748;4741:12;4703:52;4791:9;4778:23;4824:18;4816:6;4813:30;4810:50;;;4856:1;4853;4846:12;4810:50;4879:22;;4932:4;4924:13;;4920:27;-1:-1:-1;4910:55:1;;4961:1;4958;4951:12;4910:55;4984:73;5049:7;5044:2;5031:16;5026:2;5022;5018:11;4984:73;:::i;5068:456::-;5145:6;5153;5161;5214:2;5202:9;5193:7;5189:23;5185:32;5182:52;;;5230:1;5227;5220:12;5182:52;5269:9;5256:23;5288:31;5313:5;5288:31;:::i;:::-;5338:5;-1:-1:-1;5395:2:1;5380:18;;5367:32;5408:33;5367:32;5408:33;:::i;:::-;5068:456;;5460:7;;-1:-1:-1;;;5514:2:1;5499:18;;;;5486:32;;5068:456::o;5529:269::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5744:4;5737:5;5733:16;5726:5;5723:27;5713:55;;5764:1;5761;5754:12;5803:247;5862:6;5915:2;5903:9;5894:7;5890:23;5886:32;5883:52;;;5931:1;5928;5921:12;5883:52;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;6237:184::-;6295:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:52;;;6364:1;6361;6354:12;6316:52;6387:28;6405:9;6387:28;:::i;6649:460::-;6734:6;6742;6750;6803:2;6791:9;6782:7;6778:23;6774:32;6771:52;;;6819:1;6816;6809:12;6771:52;6842:28;6860:9;6842:28;:::i;:::-;6832:38;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:49;7044:7;7035:6;7024:9;7020:22;7003:49;:::i;:::-;6993:59;;;7099:2;7088:9;7084:18;7071:32;7061:42;;6649:460;;;;;:::o;7367:160::-;7432:20;;7488:13;;7481:21;7471:32;;7461:60;;7517:1;7514;7507:12;7532:315;7597:6;7605;7658:2;7646:9;7637:7;7633:23;7629:32;7626:52;;;7674:1;7671;7664:12;7626:52;7713:9;7700:23;7732:31;7757:5;7732:31;:::i;:::-;7782:5;-1:-1:-1;7806:35:1;7837:2;7822:18;;7806:35;:::i;:::-;7796:45;;7532:315;;;;;:::o;7852:665::-;7947:6;7955;7963;7971;8024:3;8012:9;8003:7;7999:23;7995:33;7992:53;;;8041:1;8038;8031:12;7992:53;8080:9;8067:23;8099:31;8124:5;8099:31;:::i;:::-;8149:5;-1:-1:-1;8206:2:1;8191:18;;8178:32;8219:33;8178:32;8219:33;:::i;:::-;8271:7;-1:-1:-1;8325:2:1;8310:18;;8297:32;;-1:-1:-1;8380:2:1;8365:18;;8352:32;8407:18;8396:30;;8393:50;;;8439:1;8436;8429:12;8393:50;8462:49;8503:7;8494:6;8483:9;8479:22;8462:49;:::i;8522:252::-;8589:6;8597;8650:2;8638:9;8629:7;8625:23;8621:32;8618:52;;;8666:1;8663;8656:12;8618:52;8689:28;8707:9;8689:28;:::i;8779:347::-;8830:8;8840:6;8894:3;8887:4;8879:6;8875:17;8871:27;8861:55;;8912:1;8909;8902:12;8861:55;-1:-1:-1;8935:20:1;;8978:18;8967:30;;8964:50;;;9010:1;9007;9000:12;8964:50;9047:4;9039:6;9035:17;9023:29;;9099:3;9092:4;9083:6;9075;9071:19;9067:30;9064:39;9061:59;;;9116:1;9113;9106:12;9061:59;8779:347;;;;;:::o;9131:773::-;9235:6;9243;9251;9259;9267;9320:3;9308:9;9299:7;9295:23;9291:33;9288:53;;;9337:1;9334;9327:12;9288:53;9360:28;9378:9;9360:28;:::i;:::-;9350:38;;9439:2;9428:9;9424:18;9411:32;9462:18;9503:2;9495:6;9492:14;9489:34;;;9519:1;9516;9509:12;9489:34;9542:49;9583:7;9574:6;9563:9;9559:22;9542:49;:::i;:::-;9532:59;;9610:37;9643:2;9632:9;9628:18;9610:37;:::i;:::-;9600:47;;9700:2;9689:9;9685:18;9672:32;9656:48;;9729:2;9719:8;9716:16;9713:36;;;9745:1;9742;9735:12;9713:36;;9784:60;9836:7;9825:8;9814:9;9810:24;9784:60;:::i;:::-;9131:773;;;;-1:-1:-1;9131:773:1;;-1:-1:-1;9863:8:1;;9758:86;9131:773;-1:-1:-1;;;9131:773:1:o;9909:180::-;9965:6;10018:2;10006:9;9997:7;9993:23;9989:32;9986:52;;;10034:1;10031;10024:12;9986:52;10057:26;10073:9;10057:26;:::i;10094:388::-;10162:6;10170;10223:2;10211:9;10202:7;10198:23;10194:32;10191:52;;;10239:1;10236;10229:12;10191:52;10278:9;10265:23;10297:31;10322:5;10297:31;:::i;:::-;10347:5;-1:-1:-1;10404:2:1;10389:18;;10376:32;10417:33;10376:32;10417:33;:::i;:::-;10469:7;10459:17;;;10094:388;;;;;:::o;10487:481::-;10565:6;10573;10581;10634:2;10622:9;10613:7;10609:23;10605:32;10602:52;;;10650:1;10647;10640:12;10602:52;10673:28;10691:9;10673:28;:::i;:::-;10663:38;;10752:2;10741:9;10737:18;10724:32;10779:18;10771:6;10768:30;10765:50;;;10811:1;10808;10801:12;10765:50;10850:58;10900:7;10891:6;10880:9;10876:22;10850:58;:::i;:::-;10487:481;;10927:8;;-1:-1:-1;10824:84:1;;-1:-1:-1;;;;10487:481:1:o;10973:437::-;11052:1;11048:12;;;;11095;;;11116:61;;11170:4;11162:6;11158:17;11148:27;;11116:61;11223:2;11215:6;11212:14;11192:18;11189:38;11186:218;;;11260:77;11257:1;11250:88;11361:4;11358:1;11351:15;11389:4;11386:1;11379:15;11186:218;;10973:437;;;:::o;11415:750::-;11464:3;11505:5;11499:12;11534:36;11560:9;11534:36;:::i;:::-;11589:1;11606:18;;;11633:162;;;;11809:1;11804:355;;;;11599:560;;11633:162;11681:66;11670:9;11666:82;11661:3;11654:95;11778:6;11773:3;11769:16;11762:23;;11633:162;;11804:355;11835:5;11832:1;11825:16;11864:4;11909:2;11906:1;11896:16;11934:1;11948:165;11962:6;11959:1;11956:13;11948:165;;;12040:14;;12027:11;;;12020:35;12083:16;;;;11977:10;;11948:165;;;11952:3;;;12142:6;12137:3;12133:16;12126:23;;11599:560;;;;;11415:750;;;;:::o;12170:194::-;12296:3;12321:37;12354:3;12346:6;12321:37;:::i;12790:557::-;13047:6;13039;13035:19;13024:9;13017:38;13091:3;13086:2;13075:9;13071:18;13064:31;12998:4;13118:46;13159:3;13148:9;13144:19;13136:6;13118:46;:::i;:::-;13212:18;13204:6;13200:31;13195:2;13184:9;13180:18;13173:59;13280:9;13272:6;13268:22;13263:2;13252:9;13248:18;13241:50;13308:33;13334:6;13326;13308:33;:::i;:::-;13300:41;12790:557;-1:-1:-1;;;;;;;12790:557:1:o;13352:274::-;13481:3;13519:6;13513:13;13535:53;13581:6;13576:3;13569:4;13561:6;13557:17;13535:53;:::i;:::-;13604:16;;;;;13352:274;-1:-1:-1;;13352:274:1:o;17494:184::-;17546:77;17543:1;17536:88;17643:4;17640:1;17633:15;17667:4;17664:1;17657:15;17683:128;17723:3;17754:1;17750:6;17747:1;17744:13;17741:39;;;17760:18;;:::i;:::-;-1:-1:-1;17796:9:1;;17683:128::o;18176:195::-;18215:3;18246:66;18239:5;18236:77;18233:103;;;18316:18;;:::i;:::-;-1:-1:-1;18363:1:1;18352:13;;18176:195::o;19203:549::-;19427:3;19465:6;19459:13;19481:53;19527:6;19522:3;19515:4;19507:6;19503:17;19481:53;:::i;:::-;19597:13;;19556:16;;;;19619:57;19597:13;19556:16;19653:4;19641:17;;19619:57;:::i;:::-;19692:54;19736:8;19729:5;19725:20;19717:6;19692:54;:::i;21209:665::-;21490:6;21482;21478:19;21467:9;21460:38;21546:42;21538:6;21534:55;21529:2;21518:9;21514:18;21507:83;21626:3;21621:2;21610:9;21606:18;21599:31;21441:4;21653:46;21694:3;21683:9;21679:19;21671:6;21653:46;:::i;:::-;21749:6;21742:14;21735:22;21730:2;21719:9;21715:18;21708:50;21807:9;21799:6;21795:22;21789:3;21778:9;21774:19;21767:51;21835:33;21861:6;21853;21835:33;:::i;:::-;21827:41;21209:665;-1:-1:-1;;;;;;;;21209:665:1:o;21879:245::-;21958:6;21966;22019:2;22007:9;21998:7;21994:23;21990:32;21987:52;;;22035:1;22032;22025:12;21987:52;-1:-1:-1;;22058:16:1;;22114:2;22099:18;;;22093:25;22058:16;;22093:25;;-1:-1:-1;21879:245:1:o;22617:1542::-;22963:6;22955;22951:19;22940:9;22933:38;22914:4;22990:2;23028:3;23023:2;23012:9;23008:18;23001:31;23052:1;23085:6;23079:13;23115:36;23141:9;23115:36;:::i;:::-;23188:6;23182:3;23171:9;23167:19;23160:35;23214:3;23236:1;23268:2;23257:9;23253:18;23285:1;23280:180;;;;23474:1;23469:354;;;;23246:577;;23280:180;23343:66;23332:9;23328:82;23323:2;23312:9;23308:18;23301:110;23446:3;23435:9;23431:19;23424:26;;23280:180;;23469:354;23500:6;23497:1;23490:17;23548:2;23545:1;23535:16;23573:1;23587:180;23601:6;23598:1;23595:13;23587:180;;;23694:14;;23670:17;;;23666:26;;23659:50;23737:16;;;;23616:10;;23587:180;;;23791:17;;23787:26;;;-1:-1:-1;;23246:577:1;;;;;;23868:9;23863:3;23859:19;23854:2;23843:9;23839:18;23832:47;23902:30;23928:3;23920:6;23902:30;:::i;:::-;23888:44;;;23941:46;23983:2;23972:9;23968:18;23960:6;3848:42;3837:54;3825:67;;3771:127;23941:46;3848:42;3837:54;;24038:3;24023:19;;3825:67;24092:9;24084:6;24080:22;24074:3;24063:9;24059:19;24052:51;24120:33;24146:6;24138;24120:33;:::i;:::-;24112:41;22617:1542;-1:-1:-1;;;;;;;;;22617:1542:1:o;24571:271::-;24754:6;24746;24741:3;24728:33;24710:3;24780:16;;24805:13;;;24780:16;24571:271;-1:-1:-1;24571:271:1:o;25202:777::-;25469:6;25461;25457:19;25446:9;25439:38;25513:3;25508:2;25497:9;25493:18;25486:31;25420:4;25540:46;25581:3;25570:9;25566:19;25558:6;25540:46;:::i;:::-;25634:18;25626:6;25622:31;25617:2;25606:9;25602:18;25595:59;25702:9;25694:6;25690:22;25685:2;25674:9;25670:18;25663:50;25737:6;25729;25722:22;25791:6;25783;25778:2;25770:6;25766:15;25753:45;25844:1;25839:2;25830:6;25822;25818:19;25814:28;25807:39;25970:2;25900:66;25895:2;25887:6;25883:15;25879:88;25871:6;25867:101;25863:110;25855:118;;;25202:777;;;;;;;;:::o;26391:320::-;26478:6;26486;26539:2;26527:9;26518:7;26514:23;26510:32;26507:52;;;26555:1;26552;26545:12;26507:52;26587:9;26581:16;26606:31;26631:5;26606:31;:::i;:::-;26701:2;26686:18;;;;26680:25;26656:5;;26680:25;;-1:-1:-1;;;26391:320:1:o;27944:125::-;27984:4;28012:1;28009;28006:8;28003:34;;;28017:18;;:::i;:::-;-1:-1:-1;28054:9:1;;27944:125::o;28847:184::-;28899:77;28896:1;28889:88;28996:4;28993:1;28986:15;29020:4;29017:1;29010:15;29036:120;29076:1;29102;29092:35;;29107:18;;:::i;:::-;-1:-1:-1;29141:9:1;;29036:120::o;29161:112::-;29193:1;29219;29209:35;;29224:18;;:::i;:::-;-1:-1:-1;29258:9:1;;29161:112::o;29278:184::-;29330:77;29327:1;29320:88;29427:4;29424:1;29417:15;29451:4;29448:1;29441:15;29467:512;29661:4;29690:42;29771:2;29763:6;29759:15;29748:9;29741:34;29823:2;29815:6;29811:15;29806:2;29795:9;29791:18;29784:43;;29863:6;29858:2;29847:9;29843:18;29836:34;29906:3;29901:2;29890:9;29886:18;29879:31;29927:46;29968:3;29957:9;29953:19;29945:6;29927:46;:::i;:::-;29919:54;29467:512;-1:-1:-1;;;;;;29467:512:1:o;29984:249::-;30053:6;30106:2;30094:9;30085:7;30081:23;30077:32;30074:52;;;30122:1;30119;30112:12;30074:52;30154:9;30148:16;30173:30;30197:5;30173:30;:::i

Swarm Source

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