ETH Price: $3,091.78 (+1.01%)
Gas: 4 Gwei

Token

OmniPepe (pepe)
 

Overview

Max Total Supply

0 pepe

Holders

291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 pepe
0xe4a1b0a5d6f52fd1998141ec7e22332b8cfb1c1e
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:
OmniPepe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at snowtrace.io on 2022-04-05
*/

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

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/NonblockingReceiver.sol

pragma solidity ^0.8.6;

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        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;
    }
}
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
// File: contracts/tinydinos-avax.sol

pragma solidity ^0.8.7;

contract OmniPepe is Pausable, Ownable, ERC721, NonblockingReceiver {
    string private baseURI;
    uint256 totalOwnerMint = 2000;
    uint256 nextTokenId = 0;
    uint256 MAX_MINT_SUPPLY = 1000;
    uint256 gasForDestinationLzReceive = 350000;
    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("OmniPepe", "pepe")
    {
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
        _pause();
    }
    // mint function
    // you can choose from mint 1 to 3
    // mint is free, but donations are also accepted
    function mint(uint8 numTokens) external payable whenNotPaused {
        require(numTokens < 3, "OmniPepe: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_SUPPLY,
            "OmniPepe: Mint exceeds supply"
        );
        
        for (uint256 i = 1; i <= numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    function ownerMint(address _user)external onlyOwner {
        require(totalOwnerMint <= 2220,'OmniPepe: you already give the 200 free mint');
        _safeMint(_user, ++totalOwnerMint);
    }
    function traverseChains(uint16 _chainId, uint256 tokenId) public payable {
        require(
            msg.sender == ownerOf(tokenId),
            "OmniPepe: You must own the token to traverse"
        );
        require(
            trustedRemoteLookup[_chainId].length > 0,
            "OmniPepe: 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,
            "OmniPepe: 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 getURI(uint256 _id)public view returns(string memory){
        return tokenURI(_id);
    }
    function donate() external payable {
        // thank you
    }
    function Start()external onlyOwner {
        _unpause();
    }
    // This allows the devs to receive kind donations
    function withdraw(uint256 amt) external onlyOwner {
        (bool sent, ) = payable(owner()).call{value: amt}("");
        require(sent, "OmniPepe: Failed to withdraw Ether");
    }

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

    // ------------------
    // 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":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"Start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getURI","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":"address","name":"_user","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526107d0600b556000600c556103e8600d5562055730600e553480156200002957600080fd5b506040516200308d3803806200308d8339810160408190526200004c91620002c7565b60408051808201825260088152674f6d6e695065706560c01b602080830191909152825180840190935260048352637065706560e01b908301526000805460ff19169055906200009c336200010d565b8151620000b190600190602085019062000204565b508051620000c790600290602084019062000204565b5050600780546001600160a01b0319166001600160a01b038416179055508151620000fa90600a90602085019062000204565b506200010562000166565b50506200040b565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b60005460ff1615620001b15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001e73390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200021290620003b8565b90600052602060002090601f01602090048101928262000236576000855562000281565b82601f106200025157805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028157825182559160200191906001019062000264565b506200028f92915062000293565b5090565b5b808211156200028f576000815560010162000294565b80516001600160a01b0381168114620002c257600080fd5b919050565b60008060408385031215620002db57600080fd5b82516001600160401b0380821115620002f357600080fd5b818501915085601f8301126200030857600080fd5b8151818111156200031d576200031d620003f5565b604051601f8201601f19908116603f01168101908382118183101715620003485762000348620003f5565b816040528281526020935088848487010111156200036557600080fd5b600091505b828210156200038957848201840151818301850152908301906200036a565b828211156200039b5760008484830101525b9550620003ad915050858201620002aa565b925050509250929050565b600181811c90821680620003cd57607f821691505b60208210811415620003ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c72806200041b6000396000f3fe6080604052600436106101e25760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146105a4578063eb8d72b7146105ed578063ed88c68e14610207578063f2fde38b1461060d57600080fd5b8063b88d4fde1461053e578063c87b56dd1461055e578063cf89fa031461057e578063d1deba1f1461059157600080fd5b80638ee74912116100d15780638ee749121461047e578063943fb872146104e957806395d89b4114610509578063a22cb4651461051e57600080fd5b806370a08231146103f8578063715018a6146104265780637533d7881461043b5780638da5cb5b1461045b57600080fd5b80631e3bcc8e1161017a57806355f804b31161014957806355f804b31461038d5780635c975abb146103ad5780636352211e146103c55780636ecd2306146103e557600080fd5b80631e3bcc8e1461030d57806323b872dd1461032d5780632e1a7d4d1461034d57806342842e0e1461036d57600080fd5b8063095ea7b3116101b6578063095ea7b3146102985780631aa347dc146102b85780631b55ba3a146102d85780631c37a822146102ed57600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b506102076102023660046125ed565b61062d565b005b34801561021557600080fd5b5061022961022436600461241d565b610827565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610879565b6040516102359190612817565b34801561026c57600080fd5b5061028061027b366004612681565b61090b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102076102b33660046123f1565b6109a0565b3480156102c457600080fd5b506102536102d3366004612681565b610ab6565b3480156102e457600080fd5b50610207610ac1565b3480156102f957600080fd5b506102076103083660046125ed565b610afb565b34801561031957600080fd5b5061020761032836600461228e565b610b6a565b34801561033957600080fd5b50610207610348366004612312565b610c23565b34801561035957600080fd5b50610207610368366004612681565b610c54565b34801561037957600080fd5b50610207610388366004612312565b610d45565b34801561039957600080fd5b506102076103a8366004612457565b610d60565b3480156103b957600080fd5b5060005460ff16610229565b3480156103d157600080fd5b506102806103e0366004612681565b610da3565b6102076103f33660046126be565b610e1a565b34801561040457600080fd5b5061041861041336600461228e565b610f53565b604051908152602001610235565b34801561043257600080fd5b50610207610fda565b34801561044757600080fd5b5061025361045636600461249f565b611014565b34801561046757600080fd5b5060005461010090046001600160a01b0316610280565b34801561048a57600080fd5b506104d461049936600461250c565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b3480156104f557600080fd5b50610207610504366004612681565b6110ae565b34801561051557600080fd5b506102536110e3565b34801561052a57600080fd5b506102076105393660046123be565b6110f2565b34801561054a57600080fd5b50610207610559366004612353565b6110fd565b34801561056a57600080fd5b50610253610579366004612681565b61112f565b61020761058c366004612665565b61120a565b61020761059f366004612562565b61150a565b3480156105b057600080fd5b506102296105bf3660046122d9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f957600080fd5b506102076106083660046124ba565b611697565b34801561061957600080fd5b5061020761062836600461228e565b6116e5565b6007546001600160a01b0316331461064457600080fd5b61ffff84166000908152600960205260409020805461066290612b4f565b905083511480156106a1575061ffff841660009081526009602052604090819020905161068f9190612739565b60405180910390208380519060200120145b61070f5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107389087908790879087906004016129b7565b600060405180830381600087803b15801561075257600080fd5b505af1925050508015610763575060015b610821576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107ad919061271d565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108189086908690869086906129b7565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b148061085857506001600160e01b03198216635b5e139f60e01b145b8061087357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088890612b4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490612b4f565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610706565b506000908152600560205260409020546001600160a01b031690565b60006109ab82610da3565b9050806001600160a01b0316836001600160a01b03161415610a195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610706565b336001600160a01b0382161480610a355750610a3581336105bf565b610aa75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610706565b610ab18383611783565b505050565b60606108738261112f565b6000546001600160a01b03610100909104163314610af15760405162461bcd60e51b81526004016107069061287c565b610af96117f1565b565b333014610b5e5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610706565b61082184848484611879565b6000546001600160a01b03610100909104163314610b9a5760405162461bcd60e51b81526004016107069061287c565b6108ac600b541115610c035760405162461bcd60e51b815260206004820152602c60248201527f4f6d6e69506570653a20796f7520616c7265616479206769766520746865203260448201526b0c0c08199c9959481b5a5b9d60a21b6064820152608401610706565b610c2081600b60008154610c1690612b8a565b91829055506118a6565b50565b610c2d33826118c0565b610c495760405162461bcd60e51b8152600401610706906128b1565b610ab18383836119b7565b6000546001600160a01b03610100909104163314610c845760405162461bcd60e51b81526004016107069061287c565b6000805461010090046001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d8060008114610ce0576040519150601f19603f3d011682016040523d82523d6000602084013e610ce5565b606091505b5050905080610d415760405162461bcd60e51b815260206004820152602260248201527f4f6d6e69506570653a204661696c656420746f2077697468647261772045746860448201526132b960f11b6064820152608401610706565b5050565b610ab1838383604051806020016040528060008152506110fd565b6000546001600160a01b03610100909104163314610d905760405162461bcd60e51b81526004016107069061287c565b8051610d4190600a906020840190612076565b6000818152600360205260408120546001600160a01b0316806108735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610706565b60005460ff1615610e605760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610706565b60038160ff1610610ebf5760405162461bcd60e51b8152602060048201526024808201527f4f6d6e69506570653a204d61782032204e46547320706572207472616e7361636044820152633a34b7b760e11b6064820152608401610706565b600d548160ff16600c54610ed39190612ae0565b1115610f215760405162461bcd60e51b815260206004820152601d60248201527f4f6d6e69506570653a204d696e74206578636565647320737570706c790000006044820152606401610706565b60015b8160ff168111610d4157610f4133600c60008154610c1690612b8a565b80610f4b81612b8a565b915050610f24565b60006001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610706565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0361010090910416331461100a5760405162461bcd60e51b81526004016107069061287c565b610af96000611b57565b6009602052600090815260409020805461102d90612b4f565b80601f016020809104026020016040519081016040528092919081815260200182805461105990612b4f565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b505050505081565b6000546001600160a01b036101009091041633146110de5760405162461bcd60e51b81526004016107069061287c565b600e55565b60606002805461088890612b4f565b610d41338383611bb0565b61110733836118c0565b6111235760405162461bcd60e51b8152600401610706906128b1565b61082184848484611c7f565b6000818152600360205260409020546060906001600160a01b03166111ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610706565b60006111b8611cb2565b905060008151116111d85760405180602001604052806000815250611203565b806111e284611cc1565b6040516020016111f39291906127ab565b6040516020818303038152906040525b9392505050565b61121381610da3565b6001600160a01b0316336001600160a01b0316146112885760405162461bcd60e51b815260206004820152602c60248201527f4f6d6e69506570653a20596f75206d757374206f776e2074686520746f6b656e60448201526b20746f20747261766572736560a01b6064820152608401610706565b61ffff8216600090815260096020526040812080546112a690612b4f565b90501161131b5760405162461bcd60e51b815260206004820152603860248201527f4f6d6e69506570653a205468697320636861696e2069732063757272656e746c60448201527f7920756e617661696c61626c6520666f722074726176656c00000000000000006064820152608401610706565b61132481611dbe565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906113a7908990309089908790899060a601612902565b604080518083038186803b1580156113be57600080fd5b505afa1580156113d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f6919061269a565b509050803410156114855760405162461bcd60e51b815260206004820152604d60248201527f4f6d6e69506570653a206d73672e76616c7565206e6f7420656e6f756768207460448201527f6f20636f766572206d6573736167654665652e2053656e642067617320666f7260648201526c206d657373616765206665657360981b608482015260a401610706565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926114d0928c928b913391908b90600401612a00565b6000604051808303818588803b1580156114e957600080fd5b505af11580156114fd573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161152b90879061271d565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506115b25760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610706565b8054821480156115dc5750806001015483836040516115d292919061270d565b6040518091039020145b6116285760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610706565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061165d9089908990899089908990600401612956565b600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b036101009091041633146116c75760405162461bcd60e51b81526004016107069061287c565b61ffff831660009081526009602052604090206108219083836120fa565b6000546001600160a01b036101009091041633146117155760405162461bcd60e51b81526004016107069061287c565b6001600160a01b03811661177a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610706565b610c2081611b57565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b882610da3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005460ff1661183a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610706565b6000805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6000808280602001905181019061189091906122ab565b9150915061189e82826118a6565b505050505050565b610d41828260405180602001604052806000815250611e59565b6000818152600360205260408120546001600160a01b03166119395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610706565b600061194483610da3565b9050806001600160a01b0316846001600160a01b0316148061197f5750836001600160a01b03166119748461090b565b6001600160a01b0316145b806119af57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ca82610da3565b6001600160a01b031614611a325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610706565b6001600160a01b038216611a945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610706565b611a9f600082611783565b6001600160a01b0383166000908152600460205260408120805460019290611ac8908490612b0c565b90915550506001600160a01b0382166000908152600460205260408120805460019290611af6908490612ae0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b816001600160a01b0316836001600160a01b03161415611c125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610706565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c8a8484846119b7565b611c9684848484611e8c565b6108215760405162461bcd60e51b81526004016107069061282a565b6060600a805461088890612b4f565b606081611ce55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0f5780611cf981612b8a565b9150611d089050600a83612af8565b9150611ce9565b6000816001600160401b03811115611d2957611d29612bfb565b6040519080825280601f01601f191660200182016040528015611d53576020820181803683370190505b5090505b84156119af57611d68600183612b0c565b9150611d75600a86612ba5565b611d80906030612ae0565b60f81b818381518110611d9557611d95612be5565b60200101906001600160f81b031916908160001a905350611db7600a86612af8565b9450611d57565b6000611dc982610da3565b9050611dd6600083611783565b6001600160a01b0381166000908152600460205260408120805460019290611dff908490612b0c565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e638383611f99565b611e706000848484611e8c565b610ab15760405162461bcd60e51b81526004016107069061282a565b60006001600160a01b0384163b15611f8e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed09033908990889088906004016127da565b602060405180830381600087803b158015611eea57600080fd5b505af1925050508015611f1a575060408051601f3d908101601f19168201909252611f179181019061243a565b60015b611f74573d808015611f48576040519150601f19603f3d011682016040523d82523d6000602084013e611f4d565b606091505b508051611f6c5760405162461bcd60e51b81526004016107069061282a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119af565b506001949350505050565b6001600160a01b038216611fef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610706565b6001600160a01b0382166000908152600460205260408120805460019290612018908490612ae0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461208290612b4f565b90600052602060002090601f0160209004810192826120a457600085556120ea565b82601f106120bd57805160ff19168380011785556120ea565b828001600101855582156120ea579182015b828111156120ea5782518255916020019190600101906120cf565b506120f692915061216e565b5090565b82805461210690612b4f565b90600052602060002090601f01602090048101928261212857600085556120ea565b82601f106121415782800160ff198235161785556120ea565b828001600101855582156120ea579182015b828111156120ea578235825591602001919060010190612153565b5b808211156120f6576000815560010161216f565b60006001600160401b038084111561219d5761219d612bfb565b604051601f8501601f19908116603f011681019082821181831017156121c5576121c5612bfb565b816040528093508581528686860111156121de57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261220a57600080fd5b5081356001600160401b0381111561222157600080fd5b60208301915083602082850101111561223957600080fd5b9250929050565b600082601f83011261225157600080fd5b61120383833560208501612183565b803561ffff8116811461227257600080fd5b919050565b80356001600160401b038116811461227257600080fd5b6000602082840312156122a057600080fd5b813561120381612c11565b600080604083850312156122be57600080fd5b82516122c981612c11565b6020939093015192949293505050565b600080604083850312156122ec57600080fd5b82356122f781612c11565b9150602083013561230781612c11565b809150509250929050565b60008060006060848603121561232757600080fd5b833561233281612c11565b9250602084013561234281612c11565b929592945050506040919091013590565b6000806000806080858703121561236957600080fd5b843561237481612c11565b9350602085013561238481612c11565b92506040850135915060608501356001600160401b038111156123a657600080fd5b6123b287828801612240565b91505092959194509250565b600080604083850312156123d157600080fd5b82356123dc81612c11565b91506020830135801515811461230757600080fd5b6000806040838503121561240457600080fd5b823561240f81612c11565b946020939093013593505050565b60006020828403121561242f57600080fd5b813561120381612c26565b60006020828403121561244c57600080fd5b815161120381612c26565b60006020828403121561246957600080fd5b81356001600160401b0381111561247f57600080fd5b8201601f8101841361249057600080fd5b6119af84823560208401612183565b6000602082840312156124b157600080fd5b61120382612260565b6000806000604084860312156124cf57600080fd5b6124d884612260565b925060208401356001600160401b038111156124f357600080fd5b6124ff868287016121f8565b9497909650939450505050565b60008060006060848603121561252157600080fd5b61252a84612260565b925060208401356001600160401b0381111561254557600080fd5b61255186828701612240565b925050604084013590509250925092565b60008060008060006080868803121561257a57600080fd5b61258386612260565b945060208601356001600160401b038082111561259f57600080fd5b6125ab89838a01612240565b95506125b960408901612277565b945060608801359150808211156125cf57600080fd5b506125dc888289016121f8565b969995985093965092949392505050565b6000806000806080858703121561260357600080fd5b61260c85612260565b935060208501356001600160401b038082111561262857600080fd5b61263488838901612240565b945061264260408801612277565b9350606087013591508082111561265857600080fd5b506123b287828801612240565b6000806040838503121561267857600080fd5b61240f83612260565b60006020828403121561269357600080fd5b5035919050565b600080604083850312156126ad57600080fd5b505080516020909101519092909150565b6000602082840312156126d057600080fd5b813560ff8116811461120357600080fd5b600081518084526126f9816020860160208601612b23565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b6000825161272f818460208701612b23565b9190910192915050565b600080835461274781612b4f565b6001828116801561275f57600181146127705761279f565b60ff1984168752828701945061279f565b8760005260208060002060005b858110156127965781548a82015290840190820161277d565b50505082870194505b50929695505050505050565b600083516127bd818460208801612b23565b8351908301906127d1818360208801612b23565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280d908301846126e1565b9695505050505050565b60208152600061120360208301846126e1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612930908301866126e1565b8415156060840152828103608084015261294a81856126e1565b98975050505050505050565b61ffff8616815260806020820152600061297360808301876126e1565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006129d460808301866126e1565b6001600160401b038516604084015282810360608401526129f581856126e1565b979650505050505050565b61ffff871681526000602060c08184015260008854612a1e81612b4f565b8060c087015260e0600180841660008114612a405760018114612a5557612a83565b60ff1985168984015261010089019550612a83565b8d6000528660002060005b85811015612a7b5781548b8201860152908301908801612a60565b8a0184019650505b50505050508381036040850152612a9a81896126e1565b915050612ab260608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612ad381856126e1565b9998505050505050505050565b60008219821115612af357612af3612bb9565b500190565b600082612b0757612b07612bcf565b500490565b600082821015612b1e57612b1e612bb9565b500390565b60005b83811015612b3e578181015183820152602001612b26565b838111156108215750506000910152565b600181811c90821680612b6357607f821691505b60208210811415612b8457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9e57612b9e612bb9565b5060010190565b600082612bb457612bb4612bcf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2057600080fd5b6001600160e01b031981168114610c2057600080fdfea2646970667358221220fc92cfca264197f27b82d975c1ce5e9d3c8686e161ffbdcf6ed637900596d8b764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d655458776b35784e79467550584c377154656b6370595559345445486d50727978624845755a614b425662452f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e25760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146105a4578063eb8d72b7146105ed578063ed88c68e14610207578063f2fde38b1461060d57600080fd5b8063b88d4fde1461053e578063c87b56dd1461055e578063cf89fa031461057e578063d1deba1f1461059157600080fd5b80638ee74912116100d15780638ee749121461047e578063943fb872146104e957806395d89b4114610509578063a22cb4651461051e57600080fd5b806370a08231146103f8578063715018a6146104265780637533d7881461043b5780638da5cb5b1461045b57600080fd5b80631e3bcc8e1161017a57806355f804b31161014957806355f804b31461038d5780635c975abb146103ad5780636352211e146103c55780636ecd2306146103e557600080fd5b80631e3bcc8e1461030d57806323b872dd1461032d5780632e1a7d4d1461034d57806342842e0e1461036d57600080fd5b8063095ea7b3116101b6578063095ea7b3146102985780631aa347dc146102b85780631b55ba3a146102d85780631c37a822146102ed57600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b506102076102023660046125ed565b61062d565b005b34801561021557600080fd5b5061022961022436600461241d565b610827565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610879565b6040516102359190612817565b34801561026c57600080fd5b5061028061027b366004612681565b61090b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102076102b33660046123f1565b6109a0565b3480156102c457600080fd5b506102536102d3366004612681565b610ab6565b3480156102e457600080fd5b50610207610ac1565b3480156102f957600080fd5b506102076103083660046125ed565b610afb565b34801561031957600080fd5b5061020761032836600461228e565b610b6a565b34801561033957600080fd5b50610207610348366004612312565b610c23565b34801561035957600080fd5b50610207610368366004612681565b610c54565b34801561037957600080fd5b50610207610388366004612312565b610d45565b34801561039957600080fd5b506102076103a8366004612457565b610d60565b3480156103b957600080fd5b5060005460ff16610229565b3480156103d157600080fd5b506102806103e0366004612681565b610da3565b6102076103f33660046126be565b610e1a565b34801561040457600080fd5b5061041861041336600461228e565b610f53565b604051908152602001610235565b34801561043257600080fd5b50610207610fda565b34801561044757600080fd5b5061025361045636600461249f565b611014565b34801561046757600080fd5b5060005461010090046001600160a01b0316610280565b34801561048a57600080fd5b506104d461049936600461250c565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b3480156104f557600080fd5b50610207610504366004612681565b6110ae565b34801561051557600080fd5b506102536110e3565b34801561052a57600080fd5b506102076105393660046123be565b6110f2565b34801561054a57600080fd5b50610207610559366004612353565b6110fd565b34801561056a57600080fd5b50610253610579366004612681565b61112f565b61020761058c366004612665565b61120a565b61020761059f366004612562565b61150a565b3480156105b057600080fd5b506102296105bf3660046122d9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f957600080fd5b506102076106083660046124ba565b611697565b34801561061957600080fd5b5061020761062836600461228e565b6116e5565b6007546001600160a01b0316331461064457600080fd5b61ffff84166000908152600960205260409020805461066290612b4f565b905083511480156106a1575061ffff841660009081526009602052604090819020905161068f9190612739565b60405180910390208380519060200120145b61070f5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107389087908790879087906004016129b7565b600060405180830381600087803b15801561075257600080fd5b505af1925050508015610763575060015b610821576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107ad919061271d565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108189086908690869086906129b7565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b148061085857506001600160e01b03198216635b5e139f60e01b145b8061087357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088890612b4f565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490612b4f565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610706565b506000908152600560205260409020546001600160a01b031690565b60006109ab82610da3565b9050806001600160a01b0316836001600160a01b03161415610a195760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610706565b336001600160a01b0382161480610a355750610a3581336105bf565b610aa75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610706565b610ab18383611783565b505050565b60606108738261112f565b6000546001600160a01b03610100909104163314610af15760405162461bcd60e51b81526004016107069061287c565b610af96117f1565b565b333014610b5e5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610706565b61082184848484611879565b6000546001600160a01b03610100909104163314610b9a5760405162461bcd60e51b81526004016107069061287c565b6108ac600b541115610c035760405162461bcd60e51b815260206004820152602c60248201527f4f6d6e69506570653a20796f7520616c7265616479206769766520746865203260448201526b0c0c08199c9959481b5a5b9d60a21b6064820152608401610706565b610c2081600b60008154610c1690612b8a565b91829055506118a6565b50565b610c2d33826118c0565b610c495760405162461bcd60e51b8152600401610706906128b1565b610ab18383836119b7565b6000546001600160a01b03610100909104163314610c845760405162461bcd60e51b81526004016107069061287c565b6000805461010090046001600160a01b03166001600160a01b03168260405160006040518083038185875af1925050503d8060008114610ce0576040519150601f19603f3d011682016040523d82523d6000602084013e610ce5565b606091505b5050905080610d415760405162461bcd60e51b815260206004820152602260248201527f4f6d6e69506570653a204661696c656420746f2077697468647261772045746860448201526132b960f11b6064820152608401610706565b5050565b610ab1838383604051806020016040528060008152506110fd565b6000546001600160a01b03610100909104163314610d905760405162461bcd60e51b81526004016107069061287c565b8051610d4190600a906020840190612076565b6000818152600360205260408120546001600160a01b0316806108735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610706565b60005460ff1615610e605760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610706565b60038160ff1610610ebf5760405162461bcd60e51b8152602060048201526024808201527f4f6d6e69506570653a204d61782032204e46547320706572207472616e7361636044820152633a34b7b760e11b6064820152608401610706565b600d548160ff16600c54610ed39190612ae0565b1115610f215760405162461bcd60e51b815260206004820152601d60248201527f4f6d6e69506570653a204d696e74206578636565647320737570706c790000006044820152606401610706565b60015b8160ff168111610d4157610f4133600c60008154610c1690612b8a565b80610f4b81612b8a565b915050610f24565b60006001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610706565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0361010090910416331461100a5760405162461bcd60e51b81526004016107069061287c565b610af96000611b57565b6009602052600090815260409020805461102d90612b4f565b80601f016020809104026020016040519081016040528092919081815260200182805461105990612b4f565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b505050505081565b6000546001600160a01b036101009091041633146110de5760405162461bcd60e51b81526004016107069061287c565b600e55565b60606002805461088890612b4f565b610d41338383611bb0565b61110733836118c0565b6111235760405162461bcd60e51b8152600401610706906128b1565b61082184848484611c7f565b6000818152600360205260409020546060906001600160a01b03166111ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610706565b60006111b8611cb2565b905060008151116111d85760405180602001604052806000815250611203565b806111e284611cc1565b6040516020016111f39291906127ab565b6040516020818303038152906040525b9392505050565b61121381610da3565b6001600160a01b0316336001600160a01b0316146112885760405162461bcd60e51b815260206004820152602c60248201527f4f6d6e69506570653a20596f75206d757374206f776e2074686520746f6b656e60448201526b20746f20747261766572736560a01b6064820152608401610706565b61ffff8216600090815260096020526040812080546112a690612b4f565b90501161131b5760405162461bcd60e51b815260206004820152603860248201527f4f6d6e69506570653a205468697320636861696e2069732063757272656e746c60448201527f7920756e617661696c61626c6520666f722074726176656c00000000000000006064820152608401610706565b61132481611dbe565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906113a7908990309089908790899060a601612902565b604080518083038186803b1580156113be57600080fd5b505afa1580156113d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f6919061269a565b509050803410156114855760405162461bcd60e51b815260206004820152604d60248201527f4f6d6e69506570653a206d73672e76616c7565206e6f7420656e6f756768207460448201527f6f20636f766572206d6573736167654665652e2053656e642067617320666f7260648201526c206d657373616765206665657360981b608482015260a401610706565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926114d0928c928b913391908b90600401612a00565b6000604051808303818588803b1580156114e957600080fd5b505af11580156114fd573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161152b90879061271d565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506115b25760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610706565b8054821480156115dc5750806001015483836040516115d292919061270d565b6040518091039020145b6116285760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610706565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061165d9089908990899089908990600401612956565b600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b036101009091041633146116c75760405162461bcd60e51b81526004016107069061287c565b61ffff831660009081526009602052604090206108219083836120fa565b6000546001600160a01b036101009091041633146117155760405162461bcd60e51b81526004016107069061287c565b6001600160a01b03811661177a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610706565b610c2081611b57565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b882610da3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005460ff1661183a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610706565b6000805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6000808280602001905181019061189091906122ab565b9150915061189e82826118a6565b505050505050565b610d41828260405180602001604052806000815250611e59565b6000818152600360205260408120546001600160a01b03166119395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610706565b600061194483610da3565b9050806001600160a01b0316846001600160a01b0316148061197f5750836001600160a01b03166119748461090b565b6001600160a01b0316145b806119af57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ca82610da3565b6001600160a01b031614611a325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610706565b6001600160a01b038216611a945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610706565b611a9f600082611783565b6001600160a01b0383166000908152600460205260408120805460019290611ac8908490612b0c565b90915550506001600160a01b0382166000908152600460205260408120805460019290611af6908490612ae0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b816001600160a01b0316836001600160a01b03161415611c125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610706565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c8a8484846119b7565b611c9684848484611e8c565b6108215760405162461bcd60e51b81526004016107069061282a565b6060600a805461088890612b4f565b606081611ce55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d0f5780611cf981612b8a565b9150611d089050600a83612af8565b9150611ce9565b6000816001600160401b03811115611d2957611d29612bfb565b6040519080825280601f01601f191660200182016040528015611d53576020820181803683370190505b5090505b84156119af57611d68600183612b0c565b9150611d75600a86612ba5565b611d80906030612ae0565b60f81b818381518110611d9557611d95612be5565b60200101906001600160f81b031916908160001a905350611db7600a86612af8565b9450611d57565b6000611dc982610da3565b9050611dd6600083611783565b6001600160a01b0381166000908152600460205260408120805460019290611dff908490612b0c565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e638383611f99565b611e706000848484611e8c565b610ab15760405162461bcd60e51b81526004016107069061282a565b60006001600160a01b0384163b15611f8e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed09033908990889088906004016127da565b602060405180830381600087803b158015611eea57600080fd5b505af1925050508015611f1a575060408051601f3d908101601f19168201909252611f179181019061243a565b60015b611f74573d808015611f48576040519150601f19603f3d011682016040523d82523d6000602084013e611f4d565b606091505b508051611f6c5760405162461bcd60e51b81526004016107069061282a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119af565b506001949350505050565b6001600160a01b038216611fef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610706565b6001600160a01b0382166000908152600460205260408120805460019290612018908490612ae0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461208290612b4f565b90600052602060002090601f0160209004810192826120a457600085556120ea565b82601f106120bd57805160ff19168380011785556120ea565b828001600101855582156120ea579182015b828111156120ea5782518255916020019190600101906120cf565b506120f692915061216e565b5090565b82805461210690612b4f565b90600052602060002090601f01602090048101928261212857600085556120ea565b82601f106121415782800160ff198235161785556120ea565b828001600101855582156120ea579182015b828111156120ea578235825591602001919060010190612153565b5b808211156120f6576000815560010161216f565b60006001600160401b038084111561219d5761219d612bfb565b604051601f8501601f19908116603f011681019082821181831017156121c5576121c5612bfb565b816040528093508581528686860111156121de57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261220a57600080fd5b5081356001600160401b0381111561222157600080fd5b60208301915083602082850101111561223957600080fd5b9250929050565b600082601f83011261225157600080fd5b61120383833560208501612183565b803561ffff8116811461227257600080fd5b919050565b80356001600160401b038116811461227257600080fd5b6000602082840312156122a057600080fd5b813561120381612c11565b600080604083850312156122be57600080fd5b82516122c981612c11565b6020939093015192949293505050565b600080604083850312156122ec57600080fd5b82356122f781612c11565b9150602083013561230781612c11565b809150509250929050565b60008060006060848603121561232757600080fd5b833561233281612c11565b9250602084013561234281612c11565b929592945050506040919091013590565b6000806000806080858703121561236957600080fd5b843561237481612c11565b9350602085013561238481612c11565b92506040850135915060608501356001600160401b038111156123a657600080fd5b6123b287828801612240565b91505092959194509250565b600080604083850312156123d157600080fd5b82356123dc81612c11565b91506020830135801515811461230757600080fd5b6000806040838503121561240457600080fd5b823561240f81612c11565b946020939093013593505050565b60006020828403121561242f57600080fd5b813561120381612c26565b60006020828403121561244c57600080fd5b815161120381612c26565b60006020828403121561246957600080fd5b81356001600160401b0381111561247f57600080fd5b8201601f8101841361249057600080fd5b6119af84823560208401612183565b6000602082840312156124b157600080fd5b61120382612260565b6000806000604084860312156124cf57600080fd5b6124d884612260565b925060208401356001600160401b038111156124f357600080fd5b6124ff868287016121f8565b9497909650939450505050565b60008060006060848603121561252157600080fd5b61252a84612260565b925060208401356001600160401b0381111561254557600080fd5b61255186828701612240565b925050604084013590509250925092565b60008060008060006080868803121561257a57600080fd5b61258386612260565b945060208601356001600160401b038082111561259f57600080fd5b6125ab89838a01612240565b95506125b960408901612277565b945060608801359150808211156125cf57600080fd5b506125dc888289016121f8565b969995985093965092949392505050565b6000806000806080858703121561260357600080fd5b61260c85612260565b935060208501356001600160401b038082111561262857600080fd5b61263488838901612240565b945061264260408801612277565b9350606087013591508082111561265857600080fd5b506123b287828801612240565b6000806040838503121561267857600080fd5b61240f83612260565b60006020828403121561269357600080fd5b5035919050565b600080604083850312156126ad57600080fd5b505080516020909101519092909150565b6000602082840312156126d057600080fd5b813560ff8116811461120357600080fd5b600081518084526126f9816020860160208601612b23565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b6000825161272f818460208701612b23565b9190910192915050565b600080835461274781612b4f565b6001828116801561275f57600181146127705761279f565b60ff1984168752828701945061279f565b8760005260208060002060005b858110156127965781548a82015290840190820161277d565b50505082870194505b50929695505050505050565b600083516127bd818460208801612b23565b8351908301906127d1818360208801612b23565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280d908301846126e1565b9695505050505050565b60208152600061120360208301846126e1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612930908301866126e1565b8415156060840152828103608084015261294a81856126e1565b98975050505050505050565b61ffff8616815260806020820152600061297360808301876126e1565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006129d460808301866126e1565b6001600160401b038516604084015282810360608401526129f581856126e1565b979650505050505050565b61ffff871681526000602060c08184015260008854612a1e81612b4f565b8060c087015260e0600180841660008114612a405760018114612a5557612a83565b60ff1985168984015261010089019550612a83565b8d6000528660002060005b85811015612a7b5781548b8201860152908301908801612a60565b8a0184019650505b50505050508381036040850152612a9a81896126e1565b915050612ab260608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612ad381856126e1565b9998505050505050505050565b60008219821115612af357612af3612bb9565b500190565b600082612b0757612b07612bcf565b500490565b600082821015612b1e57612b1e612bb9565b500390565b60005b83811015612b3e578181015183820152602001612b26565b838111156108215750506000910152565b600181811c90821680612b6357607f821691505b60208210811415612b8457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9e57612b9e612bb9565b5060010190565b600082612bb457612bb4612bcf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c2057600080fd5b6001600160e01b031981168114610c2057600080fdfea2646970667358221220fc92cfca264197f27b82d975c1ce5e9d3c8686e161ffbdcf6ed637900596d8b764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d655458776b35784e79467550584c377154656b6370595559345445486d50727978624845755a614b425662452f00000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d655458776b35784e79467550584c377154656b63705955
Arg [4] : 59345445486d50727978624845755a614b425662452f00000000000000000000


Deployed Bytecode Sourcemap

51919:4354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46822:1098;;;;;;;;;;-1:-1:-1;46822:1098:0;;;;;:::i;:::-;;:::i;:::-;;32887:355;;;;;;;;;;-1:-1:-1;32887:355:0;;;;;:::i;:::-;;:::i;:::-;;;12802:14:1;;12795:22;12777:41;;12765:2;12750:18;32887:355:0;;;;;;;;34056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35749:308::-;;;;;;;;;;-1:-1:-1;35749:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11821:32:1;;;11803:51;;11791:2;11776:18;35749:308:0;11657:203:1;35272:411:0;;;;;;;;;;-1:-1:-1;35272:411:0;;;;;:::i;:::-;;:::i;54948:101::-;;;;;;;;;;-1:-1:-1;54948:101:0;;;;;:::i;:::-;;:::i;55126:64::-;;;;;;;;;;;;;:::i;47928:435::-;;;;;;;;;;-1:-1:-1;47928:435:0;;;;;:::i;:::-;;:::i;52926:194::-;;;;;;;;;;-1:-1:-1;52926:194:0;;;;;:::i;:::-;;:::i;36668:376::-;;;;;;;;;;-1:-1:-1;36668:376:0;;;;;:::i;:::-;;:::i;55251:184::-;;;;;;;;;;-1:-1:-1;55251:184:0;;;;;:::i;:::-;;:::i;37115:185::-;;;;;;;;;;-1:-1:-1;37115:185:0;;;;;:::i;:::-;;:::i;54852:90::-;;;;;;;;;;-1:-1:-1;54852:90:0;;;;;:::i;:::-;;:::i;50667:86::-;;;;;;;;;;-1:-1:-1;50714:4:0;50738:7;;;50667:86;;33663:326;;;;;;;;;;-1:-1:-1;33663:326:0;;;;;:::i;:::-;;:::i;52519:399::-;;;;;;:::i;:::-;;:::i;33306:295::-;;;;;;;;;;-1:-1:-1;33306:295:0;;;;;:::i;:::-;;:::i;:::-;;;28068:25:1;;;28056:2;28041:18;33306:295:0;27922:177:1;13199:103:0;;;;;;;;;;;;;:::i;46621:51::-;;;;;;;;;;-1:-1:-1;46621:51:0;;;;;:::i;:::-;;:::i;12548:87::-;;;;;;;;;;-1:-1:-1;12594:7:0;12621:6;;;;-1:-1:-1;;;;;12621:6:0;12548:87;;46512:102;;;;;;;;;;-1:-1:-1;46512:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28278:25:1;;;28334:2;28319:18;;28312:34;;;;28251:18;46512:102:0;28104:248:1;55519:128:0;;;;;;;;;;-1:-1:-1;55519:128:0;;;;;:::i;:::-;;:::i;34225:104::-;;;;;;;;;;;;;:::i;36129:187::-;;;;;;;;;;-1:-1:-1;36129:187:0;;;;;:::i;:::-;;:::i;37371:365::-;;;;;;;;;;-1:-1:-1;37371:365:0;;;;;:::i;:::-;;:::i;34400:468::-;;;;;;;;;;-1:-1:-1;34400:468:0;;;;;:::i;:::-;;:::i;53126:1718::-;;;;;;:::i;:::-;;:::i;49023:916::-;;;;;;:::i;:::-;;:::i;36387:214::-;;;;;;;;;;-1:-1:-1;36387:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36558:25:0;;;36529:4;36558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36387:214;49947:181;;;;;;;;;;-1:-1:-1;49947:181:0;;;;;:::i;:::-;;:::i;13457:238::-;;;;;;;;;;-1:-1:-1;13457:238:0;;;;;:::i;:::-;;:::i;46822:1098::-;47027:8;;-1:-1:-1;;;;;47027:8:0;47005:10;:31;46997:40;;;;;;47162:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47140:11;:18;:61;:168;;;;-1:-1:-1;47275:32:0;;;;;;;:19;:32;;;;;;;47265:43;;;;47275:32;47265:43;:::i;:::-;;;;;;;;47232:11;47222:22;;;;;;:86;47140:168;47118:270;;;;-1:-1:-1;;;47118:270:0;;20989:2:1;47118:270:0;;;20971:21:1;21028:2;21008:18;;;21001:30;21067:34;21047:18;;;21040:62;-1:-1:-1;;;21118:18:1;;;21111:50;21178:19;;47118:270:0;;;;;;;;;47516:60;;-1:-1:-1;;;47516:60:0;;:4;;:16;;:60;;47533:11;;47546;;47559:6;;47567:8;;47516:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47512:401;;47723:101;;;;;;;;47756:8;:15;47723:101;;;;47800:8;47790:19;;;;;;47723:101;;;47672:14;:27;47687:11;47672:27;;;;;;;;;;;;;;;47700:11;47672:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47672:48:0;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47844:57;;;;47858:11;;47871;;47713:6;;47892:8;;47844:57;:::i;:::-;;;;;;;;47512:401;46822:1098;;;;:::o;32887:355::-;33034:4;-1:-1:-1;;;;;;33076:40:0;;-1:-1:-1;;;33076:40:0;;:105;;-1:-1:-1;;;;;;;33133:48:0;;-1:-1:-1;;;33133:48:0;33076:105;:158;;;-1:-1:-1;;;;;;;;;;25633:40:0;;;33198:36;33056:178;32887:355;-1:-1:-1;;32887:355:0:o;34056:100::-;34110:13;34143:5;34136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34056:100;:::o;35749:308::-;35870:7;39372:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39372:16:0;35895:110;;;;-1:-1:-1;;;35895:110:0;;20215:2:1;35895:110:0;;;20197:21:1;20254:2;20234:18;;;20227:30;20293:34;20273:18;;;20266:62;-1:-1:-1;;;20344:18:1;;;20337:42;20396:19;;35895:110:0;20013:408:1;35895:110:0;-1:-1:-1;36025:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36025:24:0;;35749:308::o;35272:411::-;35353:13;35369:23;35384:7;35369:14;:23::i;:::-;35353:39;;35417:5;-1:-1:-1;;;;;35411:11:0;:2;-1:-1:-1;;;;;35411:11:0;;;35403:57;;;;-1:-1:-1;;;35403:57:0;;22649:2:1;35403:57:0;;;22631:21:1;22688:2;22668:18;;;22661:30;22727:34;22707:18;;;22700:62;-1:-1:-1;;;22778:18:1;;;22771:31;22819:19;;35403:57:0;22447:397:1;35403:57:0;11331:10;-1:-1:-1;;;;;35495:21:0;;;;:62;;-1:-1:-1;35520:37:0;35537:5;11331:10;36387:214;:::i;35520:37::-;35473:168;;;;-1:-1:-1;;;35473:168:0;;17368:2:1;35473:168:0;;;17350:21:1;17407:2;17387:18;;;17380:30;17446:34;17426:18;;;17419:62;17517:26;17497:18;;;17490:54;17561:19;;35473:168:0;17166:420:1;35473:168:0;35654:21;35663:2;35667:7;35654:8;:21::i;:::-;35342:341;35272:411;;:::o;54948:101::-;54996:13;55028;55037:3;55028:8;:13::i;55126:64::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;55172:10:::1;:8;:10::i;:::-;55126:64::o:0;47928:435::-;48154:10;48176:4;48154:27;48132:120;;;;-1:-1:-1;;;48132:120:0;;19442:2:1;48132:120:0;;;19424:21:1;19481:2;19461:18;;;19454:30;19520:34;19500:18;;;19493:62;-1:-1:-1;;;19571:18:1;;;19564:41;19622:19;;48132:120:0;19240:407:1;48132:120:0;48301:54;48312:11;48325;48338:6;48346:8;48301:10;:54::i;52926:194::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;53015:4:::1;52997:14;;:22;;52989:78;;;::::0;-1:-1:-1;;;52989:78:0;;23051:2:1;52989:78:0::1;::::0;::::1;23033:21:1::0;23090:2;23070:18;;;23063:30;23129:34;23109:18;;;23102:62;-1:-1:-1;;;23180:18:1;;;23173:42;23232:19;;52989:78:0::1;22849:408:1::0;52989:78:0::1;53078:34;53088:5;53097:14;;53095:16;;;;;:::i;:::-;::::0;;;;-1:-1:-1;53078:9:0::1;:34::i;:::-;52926:194:::0;:::o;36668:376::-;36877:41;11331:10;36910:7;36877:18;:41::i;:::-;36855:140;;;;-1:-1:-1;;;36855:140:0;;;;;;;:::i;:::-;37008:28;37018:4;37024:2;37028:7;37008:9;:28::i;55251:184::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;55313:9:::1;12621:6:::0;;;;;-1:-1:-1;;;;;12621:6:0;-1:-1:-1;;;;;55328:21:0::1;55357:3;55328:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55312:53;;;55384:4;55376:51;;;::::0;-1:-1:-1;;;55376:51:0;;18614:2:1;55376:51:0::1;::::0;::::1;18596:21:1::0;18653:2;18633:18;;;18626:30;18692:34;18672:18;;;18665:62;-1:-1:-1;;;18743:18:1;;;18736:32;18785:19;;55376:51:0::1;18412:398:1::0;55376:51:0::1;55301:134;55251:184:::0;:::o;37115:185::-;37253:39;37270:4;37276:2;37280:7;37253:39;;;;;;;;;;;;:16;:39::i;54852:90::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;54921:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33663:326::-:0;33780:7;33821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33821:16:0;33870:19;33848:110;;;;-1:-1:-1;;;33848:110:0;;18204:2:1;33848:110:0;;;18186:21:1;18243:2;18223:18;;;18216:30;18282:34;18262:18;;;18255:62;-1:-1:-1;;;18333:18:1;;;18326:39;18382:19;;33848:110:0;18002:405:1;52519:399:0;50714:4;50738:7;;;50992:9;50984:38;;;;-1:-1:-1;;;50984:38:0;;17023:2:1;50984:38:0;;;17005:21:1;17062:2;17042:18;;;17035:30;-1:-1:-1;;;17081:18:1;;;17074:46;17137:18;;50984:38:0;16821:340:1;50984:38:0;52612:1:::1;52600:9;:13;;;52592:62;;;::::0;-1:-1:-1;;;52592:62:0;;23882:2:1;52592:62:0::1;::::0;::::1;23864:21:1::0;23921:2;23901:18;;;23894:30;23960:34;23940:18;;;23933:62;-1:-1:-1;;;24011:18:1;;;24004:34;24055:19;;52592:62:0::1;23680:400:1::0;52592:62:0::1;52714:15;;52701:9;52687:23;;:11;;:23;;;;:::i;:::-;:42;;52665:121;;;::::0;-1:-1:-1;;;52665:121:0;;15138:2:1;52665:121:0::1;::::0;::::1;15120:21:1::0;15177:2;15157:18;;;15150:30;15216:31;15196:18;;;15189:59;15265:18;;52665:121:0::1;14936:353:1::0;52665:121:0::1;52824:1;52807:104;52832:9;52827:14;;:1;:14;52807:104;;52863:36;52873:10;52887:11;;52885:13;;;;;:::i;52863:36::-;52843:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52807:104;;33306:295:::0;33423:7;-1:-1:-1;;;;;33470:19:0;;33448:111;;;;-1:-1:-1;;;33448:111:0;;17793:2:1;33448:111:0;;;17775:21:1;17832:2;17812:18;;;17805:30;17871:34;17851:18;;;17844:62;-1:-1:-1;;;17922:18:1;;;17915:40;17972:19;;33448:111:0;17591:406:1;33448:111:0;-1:-1:-1;;;;;;33577:16:0;;;;;:9;:16;;;;;;;33306:295::o;13199:103::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;13264:30:::1;13291:1;13264:18;:30::i;46621:51::-:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55519:128::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;55604:26:::1;:35:::0;55519:128::o;34225:104::-;34281:13;34314:7;34307:14;;;;;:::i;36129:187::-;36256:52;11331:10;36289:8;36299;36256:18;:52::i;37371:365::-;37560:41;11331:10;37593:7;37560:18;:41::i;:::-;37538:140;;;;-1:-1:-1;;;37538:140:0;;;;;;;:::i;:::-;37689:39;37703:4;37709:2;37713:7;37722:5;37689:13;:39::i;34400:468::-;39348:4;39372:16;;;:7;:16;;;;;;34518:13;;-1:-1:-1;;;;;39372:16:0;34549:113;;;;-1:-1:-1;;;34549:113:0;;22233:2:1;34549:113:0;;;22215:21:1;22272:2;22252:18;;;22245:30;22311:34;22291:18;;;22284:62;-1:-1:-1;;;22362:18:1;;;22355:45;22417:19;;34549:113:0;22031:411:1;34549:113:0;34675:21;34699:10;:8;:10::i;:::-;34675:34;;34764:1;34746:7;34740:21;:25;:120;;;;;;;;;;;;;;;;;34809:7;34818:18;:7;:16;:18::i;:::-;34792:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34740:120;34720:140;34400:468;-1:-1:-1;;;34400:468:0:o;53126:1718::-;53246:16;53254:7;53246;:16::i;:::-;-1:-1:-1;;;;;53232:30:0;:10;-1:-1:-1;;;;;53232:30:0;;53210:124;;;;-1:-1:-1;;;53210:124:0;;21820:2:1;53210:124:0;;;21802:21:1;21859:2;21839:18;;;21832:30;21898:34;21878:18;;;21871:62;-1:-1:-1;;;21949:18:1;;;21942:42;22001:19;;53210:124:0;21618:408:1;53210:124:0;53367:29;;;53406:1;53367:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;53345:146;;;;-1:-1:-1;;;53345:146:0;;19017:2:1;53345:146:0;;;18999:21:1;19056:2;19036:18;;;19029:30;19095:34;19075:18;;;19068:62;19166:26;19146:18;;;19139:54;19210:19;;53345:146:0;18815:420:1;53345:146:0;53571:14;53577:7;53571:5;:14::i;:::-;53682:31;;;53693:10;53682:31;;;12532:51:1;12599:18;;;12592:34;;;53682:31:0;;;;;;;;;12505:18:1;;;53682:31:0;;53910:26;;-1:-1:-1;;;53857:90:0;;;11531:51:1;11598:11;;;;11591:27;;;;53857:90:0;;;;;;;;;;11634:12:1;;;53857:90:0;;;;54126:8;;-1:-1:-1;;;54126:153:0;;;53682:31;;53816:1;;-1:-1:-1;;;;;;;54126:8:0;;:21;;:153;;54162:8;;54193:4;;53682:31;;-1:-1:-1;;53857:90:0;;54126:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54101:178;;;54327:10;54314:9;:23;;54292:150;;;;-1:-1:-1;;;54292:150:0;;14652:2:1;54292:150:0;;;14634:21:1;14691:2;14671:18;;;14664:30;14730:34;14710:18;;;14703:62;14801:34;14781:18;;;14774:62;-1:-1:-1;;;14852:19:1;;;14845:44;14906:19;;54292:150:0;14450:481:1;54292:150:0;54455:8;;54547:29;;;54455:8;54547:29;;;:19;:29;;;;;;54455:381;;-1:-1:-1;;;54455:381:0;;-1:-1:-1;;;;;54455:8:0;;;;:13;;54476:9;;54455:381;;54501:8;;54630:7;;54686:10;;54455:8;54796:13;;54455:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53199:1645;;;;53126:1718;;:::o;49023:916::-;49282:27;;;49247:32;49282:27;;;:14;:27;;;;;;:64;;;;49324:11;;49282:64;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49282:72:0;;;;;;;;;;49387:21;;;;49282:72;;-1:-1:-1;49365:123:0;;;;-1:-1:-1;;;49365:123:0;;24287:2:1;49365:123:0;;;24269:21:1;24326:2;24306:18;;;24299:30;24365:34;24345:18;;;24338:62;-1:-1:-1;;;24416:18:1;;;24409:36;24462:19;;49365:123:0;24085:402:1;49365:123:0;49540:23;;49521:42;;:107;;;;;49607:9;:21;;;49594:8;;49584:19;;;;;;;:::i;:::-;;;;;;;;:44;49521:107;49499:183;;;;-1:-1:-1;;;49499:183:0;;16255:2:1;49499:183:0;;;16237:21:1;16294:2;16274:18;;;16267:30;16333:28;16313:18;;;16306:56;16379:18;;49499:183:0;16053:350:1;49499:183:0;49756:1;49730:27;;;49768:21;;;:34;49871:60;;-1:-1:-1;;;49871:60:0;;:4;;:16;;:60;;49888:11;;49901;;49914:6;;49922:8;;;;49871:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49191:748;49023:916;;;;;:::o;49947:181::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;50074:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50106:14;;50074:46:::1;:::i;13457:238::-:0;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;;;;;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13560:22:0;::::1;13538:110;;;::::0;-1:-1:-1;;;13538:110:0;;14245:2:1;13538:110:0::1;::::0;::::1;14227:21:1::0;14284:2;14264:18;;;14257:30;14323:34;14303:18;;;14296:62;-1:-1:-1;;;14374:18:1;;;14367:36;14420:19;;13538:110:0::1;14043:402:1::0;13538:110:0::1;13659:28;13678:8;13659:18;:28::i;43337:174::-:0;43412:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43412:29:0;-1:-1:-1;;;;;43412:29:0;;;;;;;;:24;;43466:23;43412:24;43466:14;:23::i;:::-;-1:-1:-1;;;;;43457:46:0;;;;;;;;;;;43337:174;;:::o;51726:120::-;50714:4;50738:7;;;51262:41;;;;-1:-1:-1;;;51262:41:0;;13477:2:1;51262:41:0;;;13459:21:1;13516:2;13496:18;;;13489:30;-1:-1:-1;;;13535:18:1;;;13528:50;13595:18;;51262:41:0;13275:344:1;51262:41:0;51795:5:::1;51785:15:::0;;-1:-1:-1;;51785:15:0::1;::::0;;51816:22:::1;::::0;;11331:10;11803:51:1;;51816:22:0;;::::1;::::0;;;;11791:2:1;51816:22:0;;::::1;51726:120::o:0;55738:424::-;55934:14;55950:15;55994:8;55969:77;;;;;;;;;;;;:::i;:::-;55933:113;;;;56128:26;56138:6;56146:7;56128:9;:26::i;:::-;55903:259;;55738:424;;;;:::o;40371:110::-;40447:26;40457:2;40461:7;40447:26;;;;;;;;;;;;:9;:26::i;39577:452::-;39706:4;39372:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39372:16:0;39728:110;;;;-1:-1:-1;;;39728:110:0;;16610:2:1;39728:110:0;;;16592:21:1;16649:2;16629:18;;;16622:30;16688:34;16668:18;;;16661:62;-1:-1:-1;;;16739:18:1;;;16732:42;16791:19;;39728:110:0;16408:408:1;39728:110:0;39849:13;39865:23;39880:7;39865:14;:23::i;:::-;39849:39;;39918:5;-1:-1:-1;;;;;39907:16:0;:7;-1:-1:-1;;;;;39907:16:0;;:64;;;;39964:7;-1:-1:-1;;;;;39940:31:0;:20;39952:7;39940:11;:20::i;:::-;-1:-1:-1;;;;;39940:31:0;;39907:64;:113;;;-1:-1:-1;;;;;;36558:25:0;;;36529:4;36558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39988:32;39899:122;39577:452;-1:-1:-1;;;;39577:452:0:o;42604:615::-;42777:4;-1:-1:-1;;;;;42750:31:0;:23;42765:7;42750:14;:23::i;:::-;-1:-1:-1;;;;;42750:31:0;;42728:122;;;;-1:-1:-1;;;42728:122:0;;21410:2:1;42728:122:0;;;21392:21:1;21449:2;21429:18;;;21422:30;21488:34;21468:18;;;21461:62;-1:-1:-1;;;21539:18:1;;;21532:39;21588:19;;42728:122:0;21208:405:1;42728:122:0;-1:-1:-1;;;;;42869:16:0;;42861:65;;;;-1:-1:-1;;;42861:65:0;;15496:2:1;42861:65:0;;;15478:21:1;15535:2;15515:18;;;15508:30;15574:34;15554:18;;;15547:62;-1:-1:-1;;;15625:18:1;;;15618:34;15669:19;;42861:65:0;15294:400:1;42861:65:0;43043:29;43060:1;43064:7;43043:8;:29::i;:::-;-1:-1:-1;;;;;43085:15:0;;;;;;:9;:15;;;;;:20;;43104:1;;43085:15;:20;;43104:1;;43085:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43116:13:0;;;;;;:9;:13;;;;;:18;;43133:1;;43116:13;:18;;43133:1;;43116:18;:::i;:::-;;;;-1:-1:-1;;43145:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43145:21:0;-1:-1:-1;;;;;43145:21:0;;;;;;;;;43184:27;;43145:16;;43184:27;;;;;;;42604:615;;;:::o;13855:191::-;13929:16;13948:6;;-1:-1:-1;;;;;13965:17:0;;;13948:6;13965:17;;;-1:-1:-1;;;;;;13965:17:0;;;;;13998:40;;13948:6;;;;;;;13965:17;;13948:6;;13998:40;;;13918:128;13855:191;:::o;43653:315::-;43808:8;-1:-1:-1;;;;;43799:17:0;:5;-1:-1:-1;;;;;43799:17:0;;;43791:55;;;;-1:-1:-1;;;43791:55:0;;15901:2:1;43791:55:0;;;15883:21:1;15940:2;15920:18;;;15913:30;15979:27;15959:18;;;15952:55;16024:18;;43791:55:0;15699:349:1;43791:55:0;-1:-1:-1;;;;;43857:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43857:46:0;;;;;;;;;;43919:41;;12777::1;;;43919::0;;12750:18:1;43919:41:0;;;;;;;43653:315;;;:::o;38618:352::-;38775:28;38785:4;38791:2;38795:7;38775:9;:28::i;:::-;38836:48;38859:4;38865:2;38869:7;38878:5;38836:22;:48::i;:::-;38814:148;;;;-1:-1:-1;;;38814:148:0;;;;;;;:::i;56170:100::-;56222:13;56255:7;56248:14;;;;;:::i;8783:723::-;8839:13;9060:10;9056:53;;-1:-1:-1;;9087:10:0;;;;;;;;;;;;-1:-1:-1;;;9087:10:0;;;;;8783:723::o;9056:53::-;9134:5;9119:12;9175:78;9182:9;;9175:78;;9208:8;;;;:::i;:::-;;-1:-1:-1;9231:10:0;;-1:-1:-1;9239:2:0;9231:10;;:::i;:::-;;;9175:78;;;9263:19;9295:6;-1:-1:-1;;;;;9285:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9285:17:0;;9263:39;;9313:154;9320:10;;9313:154;;9347:11;9357:1;9347:11;;:::i;:::-;;-1:-1:-1;9416:10:0;9424:2;9416:5;:10;:::i;:::-;9403:24;;:2;:24;:::i;:::-;9390:39;;9373:6;9380;9373:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9373:56:0;;;;;;;;-1:-1:-1;9444:11:0;9453:2;9444:11;;:::i;:::-;;;9313:154;;41907:360;41967:13;41983:23;41998:7;41983:14;:23::i;:::-;41967:39;;42108:29;42125:1;42129:7;42108:8;:29::i;:::-;-1:-1:-1;;;;;42150:16:0;;;;;;:9;:16;;;;;:21;;42170:1;;42150:16;:21;;42170:1;;42150:21;:::i;:::-;;;;-1:-1:-1;;42189:16:0;;;;:7;:16;;;;;;42182:23;;-1:-1:-1;;;;;;42182:23:0;;;42223:36;42197:7;;42189:16;-1:-1:-1;;;;;42223:36:0;;;;;42189:16;;42223:36;41956:311;41907:360;:::o;40708:321::-;40838:18;40844:2;40848:7;40838:5;:18::i;:::-;40889:54;40920:1;40924:2;40928:7;40937:5;40889:22;:54::i;:::-;40867:154;;;;-1:-1:-1;;;40867:154:0;;;;;;;:::i;44533:980::-;44688:4;-1:-1:-1;;;;;44709:13:0;;15194:20;15242:8;44705:801;;44762:175;;-1:-1:-1;;;44762:175:0;;-1:-1:-1;;;;;44762:36:0;;;;;:175;;11331:10;;44856:4;;44883:7;;44913:5;;44762:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44762:175:0;;;;;;;;-1:-1:-1;;44762:175:0;;;;;;;;;;;;:::i;:::-;;;44741:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45120:13:0;;45116:320;;45163:108;;-1:-1:-1;;;45163:108:0;;;;;;;:::i;45116:320::-;45386:6;45380:13;45371:6;45367:2;45363:15;45356:38;44741:710;-1:-1:-1;;;;;;45001:51:0;-1:-1:-1;;;45001:51:0;;-1:-1:-1;44994:58:0;;44705:801;-1:-1:-1;45490:4:0;44533:980;;;;;;:::o;41365:313::-;-1:-1:-1;;;;;41445:16:0;;41437:61;;;;-1:-1:-1;;;41437:61:0;;19854:2:1;41437:61:0;;;19836:21:1;;;19873:18;;;19866:30;19932:34;19912:18;;;19905:62;19984:18;;41437:61:0;19652:356:1;41437:61:0;-1:-1:-1;;;;;41569:13:0;;;;;;:9;:13;;;;;:18;;41586:1;;41569:13;:18;;41586:1;;41569:18;:::i;:::-;;;;-1:-1:-1;;41598:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41598:21:0;-1:-1:-1;;;;;41598:21:0;;;;;;;;41637:33;;41598:16;;;41637:33;;41598:16;;41637:33;41365:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:347::-;701:8;711:6;765:3;758:4;750:6;746:17;742:27;732:55;;783:1;780;773:12;732:55;-1:-1:-1;806:20:1;;-1:-1:-1;;;;;838:30:1;;835:50;;;881:1;878;871:12;835:50;918:4;910:6;906:17;894:29;;970:3;963:4;954:6;946;942:19;938:30;935:39;932:59;;;987:1;984;977:12;932:59;650:347;;;;;:::o;1002:220::-;1044:5;1097:3;1090:4;1082:6;1078:17;1074:27;1064:55;;1115:1;1112;1105:12;1064:55;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:159::-;1294:20;;1354:6;1343:18;;1333:29;;1323:57;;1376:1;1373;1366:12;1323:57;1227:159;;;:::o;1391:171::-;1458:20;;-1:-1:-1;;;;;1507:30:1;;1497:41;;1487:69;;1552:1;1549;1542:12;1567:247;1626:6;1679:2;1667:9;1658:7;1654:23;1650:32;1647:52;;;1695:1;1692;1685:12;1647:52;1734:9;1721:23;1753:31;1778:5;1753:31;:::i;1819:320::-;1906:6;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2015:9;2009:16;2034:31;2059:5;2034:31;:::i;:::-;2129:2;2114:18;;;;2108:25;2084:5;;2108:25;;-1:-1:-1;;;1819:320:1:o;2144:388::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2328:9;2315:23;2347:31;2372:5;2347:31;:::i;:::-;2397:5;-1:-1:-1;2454:2:1;2439:18;;2426:32;2467:33;2426:32;2467:33;:::i;:::-;2519:7;2509:17;;;2144:388;;;;;:::o;2537:456::-;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2738:9;2725:23;2757:31;2782:5;2757:31;:::i;:::-;2807:5;-1:-1:-1;2864:2:1;2849:18;;2836:32;2877:33;2836:32;2877:33;:::i;:::-;2537:456;;2929:7;;-1:-1:-1;;;2983:2:1;2968:18;;;;2955:32;;2537:456::o;2998:665::-;3093:6;3101;3109;3117;3170:3;3158:9;3149:7;3145:23;3141:33;3138:53;;;3187:1;3184;3177:12;3138:53;3226:9;3213:23;3245:31;3270:5;3245:31;:::i;:::-;3295:5;-1:-1:-1;3352:2:1;3337:18;;3324:32;3365:33;3324:32;3365:33;:::i;:::-;3417:7;-1:-1:-1;3471:2:1;3456:18;;3443:32;;-1:-1:-1;3526:2:1;3511:18;;3498:32;-1:-1:-1;;;;;3542:30:1;;3539:50;;;3585:1;3582;3575:12;3539:50;3608:49;3649:7;3640:6;3629:9;3625:22;3608:49;:::i;:::-;3598:59;;;2998:665;;;;;;;:::o;3668:416::-;3733:6;3741;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3849:9;3836:23;3868:31;3893:5;3868:31;:::i;:::-;3918:5;-1:-1:-1;3975:2:1;3960:18;;3947:32;4017:15;;4010:23;3998:36;;3988:64;;4048:1;4045;4038:12;4089:315;4157:6;4165;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4273:9;4260:23;4292:31;4317:5;4292:31;:::i;:::-;4342:5;4394:2;4379:18;;;;4366:32;;-1:-1:-1;;;4089:315:1:o;4409:245::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4575:9;4562:23;4594:30;4618:5;4594:30;:::i;4659:249::-;4728:6;4781:2;4769:9;4760:7;4756:23;4752:32;4749:52;;;4797:1;4794;4787:12;4749:52;4829:9;4823:16;4848:30;4872:5;4848:30;:::i;4913:450::-;4982:6;5035:2;5023:9;5014:7;5010:23;5006:32;5003:52;;;5051:1;5048;5041:12;5003:52;5091:9;5078:23;-1:-1:-1;;;;;5116:6:1;5113:30;5110:50;;;5156:1;5153;5146:12;5110:50;5179:22;;5232:4;5224:13;;5220:27;-1:-1:-1;5210:55:1;;5261:1;5258;5251:12;5210:55;5284:73;5349:7;5344:2;5331:16;5326:2;5322;5318:11;5284:73;:::i;5368:184::-;5426:6;5479:2;5467:9;5458:7;5454:23;5450:32;5447:52;;;5495:1;5492;5485:12;5447:52;5518:28;5536:9;5518:28;:::i;5557:481::-;5635:6;5643;5651;5704:2;5692:9;5683:7;5679:23;5675:32;5672:52;;;5720:1;5717;5710:12;5672:52;5743:28;5761:9;5743:28;:::i;:::-;5733:38;;5822:2;5811:9;5807:18;5794:32;-1:-1:-1;;;;;5841:6:1;5838:30;5835:50;;;5881:1;5878;5871:12;5835:50;5920:58;5970:7;5961:6;5950:9;5946:22;5920:58;:::i;:::-;5557:481;;5997:8;;-1:-1:-1;5894:84:1;;-1:-1:-1;;;;5557:481:1:o;6043:460::-;6128:6;6136;6144;6197:2;6185:9;6176:7;6172:23;6168:32;6165:52;;;6213:1;6210;6203:12;6165:52;6236:28;6254:9;6236:28;:::i;:::-;6226:38;;6315:2;6304:9;6300:18;6287:32;-1:-1:-1;;;;;6334:6:1;6331:30;6328:50;;;6374:1;6371;6364:12;6328:50;6397:49;6438:7;6429:6;6418:9;6414:22;6397:49;:::i;:::-;6387:59;;;6493:2;6482:9;6478:18;6465:32;6455:42;;6043:460;;;;;:::o;6508:773::-;6612:6;6620;6628;6636;6644;6697:3;6685:9;6676:7;6672:23;6668:33;6665:53;;;6714:1;6711;6704:12;6665:53;6737:28;6755:9;6737:28;:::i;:::-;6727:38;;6816:2;6805:9;6801:18;6788:32;-1:-1:-1;;;;;6880:2:1;6872:6;6869:14;6866:34;;;6896:1;6893;6886:12;6866:34;6919:49;6960:7;6951:6;6940:9;6936:22;6919:49;:::i;:::-;6909:59;;6987:37;7020:2;7009:9;7005:18;6987:37;:::i;:::-;6977:47;;7077:2;7066:9;7062:18;7049:32;7033:48;;7106:2;7096:8;7093:16;7090:36;;;7122:1;7119;7112:12;7090:36;;7161:60;7213:7;7202:8;7191:9;7187:24;7161:60;:::i;:::-;6508:773;;;;-1:-1:-1;6508:773:1;;-1:-1:-1;7240:8:1;;7135:86;6508:773;-1:-1:-1;;;6508:773:1:o;7286:684::-;7388:6;7396;7404;7412;7465:3;7453:9;7444:7;7440:23;7436:33;7433:53;;;7482:1;7479;7472:12;7433:53;7505:28;7523:9;7505:28;:::i;:::-;7495:38;;7584:2;7573:9;7569:18;7556:32;-1:-1:-1;;;;;7648:2:1;7640:6;7637:14;7634:34;;;7664:1;7661;7654:12;7634:34;7687:49;7728:7;7719:6;7708:9;7704:22;7687:49;:::i;:::-;7677:59;;7755:37;7788:2;7777:9;7773:18;7755:37;:::i;:::-;7745:47;;7845:2;7834:9;7830:18;7817:32;7801:48;;7874:2;7864:8;7861:16;7858:36;;;7890:1;7887;7880:12;7858:36;;7913:51;7956:7;7945:8;7934:9;7930:24;7913:51;:::i;7975:252::-;8042:6;8050;8103:2;8091:9;8082:7;8078:23;8074:32;8071:52;;;8119:1;8116;8109:12;8071:52;8142:28;8160:9;8142:28;:::i;8232:180::-;8291:6;8344:2;8332:9;8323:7;8319:23;8315:32;8312:52;;;8360:1;8357;8350:12;8312:52;-1:-1:-1;8383:23:1;;8232:180;-1:-1:-1;8232:180:1:o;8417:245::-;8496:6;8504;8557:2;8545:9;8536:7;8532:23;8528:32;8525:52;;;8573:1;8570;8563:12;8525:52;-1:-1:-1;;8596:16:1;;8652:2;8637:18;;;8631:25;8596:16;;8631:25;;-1:-1:-1;8417:245:1:o;8667:269::-;8724:6;8777:2;8765:9;8756:7;8752:23;8748:32;8745:52;;;8793:1;8790;8783:12;8745:52;8832:9;8819:23;8882:4;8875:5;8871:16;8864:5;8861:27;8851:55;;8902:1;8899;8892:12;9058:257;9099:3;9137:5;9131:12;9164:6;9159:3;9152:19;9180:63;9236:6;9229:4;9224:3;9220:14;9213:4;9206:5;9202:16;9180:63;:::i;:::-;9297:2;9276:15;-1:-1:-1;;9272:29:1;9263:39;;;;9304:4;9259:50;;9058:257;-1:-1:-1;;9058:257:1:o;9320:271::-;9503:6;9495;9490:3;9477:33;9459:3;9529:16;;9554:13;;;9529:16;9320:271;-1:-1:-1;9320:271:1:o;9596:274::-;9725:3;9763:6;9757:13;9779:53;9825:6;9820:3;9813:4;9805:6;9801:17;9779:53;:::i;:::-;9848:16;;;;;9596:274;-1:-1:-1;;9596:274:1:o;9875:811::-;10001:3;10030:1;10063:6;10057:13;10093:36;10119:9;10093:36;:::i;:::-;10148:1;10165:18;;;10192:104;;;;10310:1;10305:356;;;;10158:503;;10192:104;-1:-1:-1;;10225:24:1;;10213:37;;10270:16;;;;-1:-1:-1;10192:104:1;;10305:356;10336:6;10333:1;10326:17;10366:4;10411:2;10408:1;10398:16;10436:1;10450:165;10464:6;10461:1;10458:13;10450:165;;;10542:14;;10529:11;;;10522:35;10585:16;;;;10479:10;;10450:165;;;10454:3;;;10644:6;10639:3;10635:16;10628:23;;10158:503;-1:-1:-1;10677:3:1;;9875:811;-1:-1:-1;;;;;;9875:811:1:o;10691:470::-;10870:3;10908:6;10902:13;10924:53;10970:6;10965:3;10958:4;10950:6;10946:17;10924:53;:::i;:::-;11040:13;;10999:16;;;;11062:57;11040:13;10999:16;11096:4;11084:17;;11062:57;:::i;:::-;11135:20;;10691:470;-1:-1:-1;;;;10691:470:1:o;11865:488::-;-1:-1:-1;;;;;12134:15:1;;;12116:34;;12186:15;;12181:2;12166:18;;12159:43;12233:2;12218:18;;12211:34;;;12281:3;12276:2;12261:18;;12254:31;;;12059:4;;12302:45;;12327:19;;12319:6;12302:45;:::i;:::-;12294:53;11865:488;-1:-1:-1;;;;;;11865:488:1:o;12829:217::-;12976:2;12965:9;12958:21;12939:4;12996:44;13036:2;13025:9;13021:18;13013:6;12996:44;:::i;13624:414::-;13826:2;13808:21;;;13865:2;13845:18;;;13838:30;13904:34;13899:2;13884:18;;13877:62;-1:-1:-1;;;13970:2:1;13955:18;;13948:48;14028:3;14013:19;;13624:414::o;20426:356::-;20628:2;20610:21;;;20647:18;;;20640:30;20706:34;20701:2;20686:18;;20679:62;20773:2;20758:18;;20426:356::o;23262:413::-;23464:2;23446:21;;;23503:2;23483:18;;;23476:30;23542:34;23537:2;23522:18;;23515:62;-1:-1:-1;;;23608:2:1;23593:18;;23586:47;23665:3;23650:19;;23262:413::o;24492:640::-;24773:6;24761:19;;24743:38;;-1:-1:-1;;;;;24817:32:1;;24812:2;24797:18;;24790:60;24837:3;24881:2;24866:18;;24859:31;;;-1:-1:-1;;24913:45:1;;24938:19;;24930:6;24913:45;:::i;:::-;25008:6;25001:14;24994:22;24989:2;24978:9;24974:18;24967:50;25066:9;25058:6;25054:22;25048:3;25037:9;25033:19;25026:51;25094:32;25119:6;25111;25094:32;:::i;:::-;25086:40;24492:640;-1:-1:-1;;;;;;;;24492:640:1:o;25137:717::-;25404:6;25396;25392:19;25381:9;25374:38;25448:3;25443:2;25432:9;25428:18;25421:31;25355:4;25475:45;25515:3;25504:9;25500:19;25492:6;25475:45;:::i;:::-;-1:-1:-1;;;;;25560:6:1;25556:31;25551:2;25540:9;25536:18;25529:59;25636:9;25628:6;25624:22;25619:2;25608:9;25604:18;25597:50;25671:6;25663;25656:22;25725:6;25717;25712:2;25704:6;25700:15;25687:45;25778:1;25773:2;25764:6;25756;25752:19;25748:28;25741:39;25845:2;25838;25834:7;25829:2;25821:6;25817:15;25813:29;25805:6;25801:42;25797:51;25789:59;;;25137:717;;;;;;;;:::o;25859:555::-;26116:6;26108;26104:19;26093:9;26086:38;26160:3;26155:2;26144:9;26140:18;26133:31;26067:4;26187:45;26227:3;26216:9;26212:19;26204:6;26187:45;:::i;:::-;-1:-1:-1;;;;;26272:6:1;26268:31;26263:2;26252:9;26248:18;26241:59;26348:9;26340:6;26336:22;26331:2;26320:9;26316:18;26309:50;26376:32;26401:6;26393;26376:32;:::i;:::-;26368:40;25859:555;-1:-1:-1;;;;;;;25859:555:1:o;26419:1498::-;26765:6;26757;26753:19;26742:9;26735:38;26716:4;26792:2;26830:3;26825:2;26814:9;26810:18;26803:31;26854:1;26887:6;26881:13;26917:36;26943:9;26917:36;:::i;:::-;26990:6;26984:3;26973:9;26969:19;26962:35;27016:3;27038:1;27070:2;27059:9;27055:18;27087:1;27082:122;;;;27218:1;27213:354;;;;27048:519;;27082:122;-1:-1:-1;;27130:24:1;;27110:18;;;27103:52;27190:3;27175:19;;;-1:-1:-1;27082:122:1;;27213:354;27244:6;27241:1;27234:17;27292:2;27289:1;27279:16;27317:1;27331:180;27345:6;27342:1;27339:13;27331:180;;;27438:14;;27414:17;;;27410:26;;27403:50;27481:16;;;;27360:10;;27331:180;;;27535:17;;27531:26;;;-1:-1:-1;;27048:519:1;;;;;;27612:9;27607:3;27603:19;27598:2;27587:9;27583:18;27576:47;27646:29;27671:3;27663:6;27646:29;:::i;:::-;27632:43;;;27684:54;27734:2;27723:9;27719:18;27711:6;-1:-1:-1;;;;;9015:31:1;9003:44;;8941:112;27684:54;-1:-1:-1;;;;;9015:31:1;;27797:3;27782:19;;9003:44;27851:9;27843:6;27839:22;27833:3;27822:9;27818:19;27811:51;27879:32;27904:6;27896;27879:32;:::i;:::-;27871:40;26419:1498;-1:-1:-1;;;;;;;;;26419:1498:1:o;28357:128::-;28397:3;28428:1;28424:6;28421:1;28418:13;28415:39;;;28434:18;;:::i;:::-;-1:-1:-1;28470:9:1;;28357:128::o;28490:120::-;28530:1;28556;28546:35;;28561:18;;:::i;:::-;-1:-1:-1;28595:9:1;;28490:120::o;28615:125::-;28655:4;28683:1;28680;28677:8;28674:34;;;28688:18;;:::i;:::-;-1:-1:-1;28725:9:1;;28615:125::o;28745:258::-;28817:1;28827:113;28841:6;28838:1;28835:13;28827:113;;;28917:11;;;28911:18;28898:11;;;28891:39;28863:2;28856:10;28827:113;;;28958:6;28955:1;28952:13;28949:48;;;-1:-1:-1;;28993:1:1;28975:16;;28968:27;28745:258::o;29008:380::-;29087:1;29083:12;;;;29130;;;29151:61;;29205:4;29197:6;29193:17;29183:27;;29151:61;29258:2;29250:6;29247:14;29227:18;29224:38;29221:161;;;29304:10;29299:3;29295:20;29292:1;29285:31;29339:4;29336:1;29329:15;29367:4;29364:1;29357:15;29221:161;;29008:380;;;:::o;29393:135::-;29432:3;-1:-1:-1;;29453:17:1;;29450:43;;;29473:18;;:::i;:::-;-1:-1:-1;29520:1:1;29509:13;;29393:135::o;29533:112::-;29565:1;29591;29581:35;;29596:18;;:::i;:::-;-1:-1:-1;29630:9:1;;29533:112::o;29650:127::-;29711:10;29706:3;29702:20;29699:1;29692:31;29742:4;29739:1;29732:15;29766:4;29763:1;29756:15;29782:127;29843:10;29838:3;29834:20;29831:1;29824:31;29874:4;29871:1;29864:15;29898:4;29895:1;29888:15;29914:127;29975:10;29970:3;29966:20;29963:1;29956:31;30006:4;30003:1;29996:15;30030:4;30027:1;30020:15;30046:127;30107:10;30102:3;30098:20;30095:1;30088:31;30138:4;30135:1;30128:15;30162:4;30159:1;30152:15;30178:131;-1:-1:-1;;;;;30253:31:1;;30243:42;;30233:70;;30299:1;30296;30289:12;30314:131;-1:-1:-1;;;;;;30388:32:1;;30378:43;;30368:71;;30435:1;30432;30425:12

Swarm Source

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