ETH Price: $2,850.52 (-9.80%)
Gas: 10 Gwei

TheMeld (mld)
 

Overview

TokenID

118

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
TheMeld

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.7;
 

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

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

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

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

 



 


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 



 

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


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

 

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

 


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

 

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

 


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

 


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

 


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

 

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

 


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

 

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

 


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

 

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

 


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

 


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

 


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

 


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

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

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

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

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

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

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

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

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

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

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

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

 


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

 


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

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

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

 


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

 








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

 


 




abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

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

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

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

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

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

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

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

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

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

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





 


contract TheMeld is Ownable, ERC721, NonblockingReceiver {

    address public _owner;
    string private baseURI;
    string private _contractURI;
    uint256 nextTokenId = 1;
    uint256 MAX_MINT_ETHEREUM = 250;


    uint gasForDestinationLzReceive = 350000;

    constructor() ERC721("TheMeld", "mld") { 
        _owner = msg.sender;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    function setContractURI(string memory URI) external onlyOwner {
        _contractURI = URI;
    }

    function setILayerZeroEndpoint(address _layerZeroEndpoint) external onlyOwner {
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
    }

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

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

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

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

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, string(abi.encodePacked("You have to send some/more ETH to cover traversal gas fee estimate. You will be refunded the difference. Estimate: ", Strings.toString(messageFee))));

        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 
        );
        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);
    }  

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"name":"setILayerZeroEndpoint","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"}]

60806040526001600d5560fa600e5562055730600f553480156200002257600080fd5b5060405180604001604052806007815260200166151a1953595b1960ca1b815250604051806040016040528060038152602001621b5b1960ea1b8152506200007962000073620000bf60201b60201c565b620000c3565b81516200008e90600190602085019062000113565b508051620000a490600290602084019062000113565b5050600a80546001600160a01b0319163317905550620001f6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012190620001b9565b90600052602060002090601f01602090048101928262000145576000855562000190565b82601f106200016057805160ff191683800117855562000190565b8280016001018555821562000190579182015b828111156200019057825182559160200191906001019062000173565b506200019e929150620001a2565b5090565b5b808211156200019e5760008155600101620001a3565b600181811c90821680620001ce57607f821691505b60208210811415620001f057634e487b7160e01b600052602260045260246000fd5b50919050565b6138f980620002066000396000f3fe6080604052600436106101e25760003560e01c80638ee7491211610102578063cf89fa0311610095578063e985e9c511610064578063e985e9c5146105ce578063eb8d72b714610624578063ed88c68e14610207578063f2fde38b1461064457600080fd5b8063cf89fa0314610573578063d1deba1f14610586578063e8a3d48514610599578063e90f2c0f146105ae57600080fd5b8063a22cb465116100d1578063a22cb465146104e6578063b2bdfa7b14610506578063b88d4fde14610533578063c87b56dd1461055357600080fd5b80638ee7491214610426578063938e3d7b14610491578063943fb872146104b157806395d89b41146104d157600080fd5b806342842e0e1161017a57806370a082311161014957806370a0823114610398578063715018a6146103c65780637533d788146103db5780638da5cb5b146103fb57600080fd5b806342842e0e1461032557806355f804b3146103455780636352211e146103655780636ecd23061461038557600080fd5b8063095ea7b3116101b6578063095ea7b3146102a55780631c37a822146102c557806323b872dd146102e55780632e1a7d4d1461030557600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b50610207610202366004612dab565b610664565b005b34801561021557600080fd5b50610229610224366004612e5e565b6108a8565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361098d565b6040516102359190612ef1565b34801561026c57600080fd5b5061028061027b366004612f04565b610a1f565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610235565b3480156102b157600080fd5b506102076102c0366004612f3f565b610af9565b3480156102d157600080fd5b506102076102e0366004612dab565b610c86565b3480156102f157600080fd5b50610207610300366004612f6b565b610d21565b34801561031157600080fd5b50610207610320366004612f04565b610dc2565b34801561033157600080fd5b50610207610340366004612f6b565b610f11565b34801561035157600080fd5b50610207610360366004612fac565b610f2c565b34801561037157600080fd5b50610280610380366004612f04565b610fc0565b610207610393366004612ff5565b611072565b3480156103a457600080fd5b506103b86103b3366004613018565b61119a565b604051908152602001610235565b3480156103d257600080fd5b50610207611268565b3480156103e757600080fd5b506102536103f6366004613035565b6112f5565b34801561040757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610280565b34801561043257600080fd5b5061047c610441366004613050565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b34801561049d57600080fd5b506102076104ac366004612fac565b61138f565b3480156104bd57600080fd5b506102076104cc366004612f04565b611423565b3480156104dd57600080fd5b506102536114a9565b3480156104f257600080fd5b506102076105013660046130a7565b6114b8565b34801561051257600080fd5b50600a546102809073ffffffffffffffffffffffffffffffffffffffff1681565b34801561053f57600080fd5b5061020761054e3660046130e5565b6114c3565b34801561055f57600080fd5b5061025361056e366004612f04565b611565565b610207610581366004613145565b611675565b6102076105943660046131aa565b611a06565b3480156105a557600080fd5b50610253611bf8565b3480156105ba57600080fd5b506102076105c9366004613018565b611c07565b3480156105da57600080fd5b506102296105e9366004613236565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b5061020761063f366004613264565b611ccf565b34801561065057600080fd5b5061020761065f366004613018565b611d6e565b60075473ffffffffffffffffffffffffffffffffffffffff16331461068857600080fd5b61ffff8416600090815260096020526040902080546106a6906132b7565b905083511480156106e5575061ffff84166000908152600960205260409081902090516106d3919061330b565b60405180910390208380519060200120145b610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906107b890879087908790879060040161339b565b600060405180830381600087803b1580156107d257600080fd5b505af19250505080156107e3575060015b6108a2576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161082d91906133e5565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061089990869086908690869061339b565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061093b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461099c906132b7565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906132b7565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610ad0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161076d565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b0482610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161076d565b3373ffffffffffffffffffffffffffffffffffffffff82161480610beb5750610beb81336105e9565b610c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b610c818383611e9b565b505050565b333014610d15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e000000000000000000000000000000000000000000606482015260840161076d565b6108a284848484611f3b565b610d2b3382611f60565b610db7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161076d565b610c818383836120d0565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e9d576040519150601f19603f3d011682016040523d82523d6000602084013e610ea2565b606091505b5050905080610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161076d565b5050565b610c81838383604051806020016040528060008152506114c3565b60005473ffffffffffffffffffffffffffffffffffffffff163314610fad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b8051610f0d90600b906020840190612b6e565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161076d565b60038160ff16106110df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e000000000000604482015260640161076d565b600e548160ff16600d546110f39190613430565b111561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d696e74206578636565647320737570706c7900000000000000000000000000604482015260640161076d565b61117833600d6000815461116e90613448565b9182905550612337565b8060ff16600214156111975761119733600d6000815461116e90613448565b50565b600073ffffffffffffffffffffffffffffffffffffffff821661123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161076d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b6112f36000612351565b565b6009602052600090815260409020805461130e906132b7565b80601f016020809104026020016040519081016040528092919081815260200182805461133a906132b7565b80156113875780601f1061135c57610100808354040283529160200191611387565b820191906000526020600020905b81548152906001019060200180831161136a57829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff163314611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b8051610f0d90600c906020840190612b6e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b600f55565b60606002805461099c906132b7565b610f0d3383836123c6565b6114cd3383611f60565b611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161076d565b6108a2848484846124f4565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161076d565b6000611623612597565b90506000815111611643576040518060200160405280600081525061166e565b8061164d846125a6565b60405160200161165e929190613481565b6040516020818303038152906040525b9392505050565b61167e81610fc0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f7365000000000000000000000000000000000000000000000000000000000000606482015260840161076d565b61ffff821660009081526009602052604081208054611756906132b7565b9050116117e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c000000000000000000000000000000000000606482015260840161076d565b60408051336020820152808201839052815180820383018152606082018352600f547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906118a9908990309089908790899060a6016134b0565b6040805180830381865afa1580156118c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e9919061350f565b509050803410156118f9826125a6565b6040516020016119099190613533565b60405160208183030381529060405290611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d9190612ef1565b5060075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c58031009234926119c3928c928b913391908b906004016135ea565b6000604051808303818588803b1580156119dc57600080fd5b505af11580156119f0573d6000803e3d6000fd5b50505050506119fe856126d8565b505050505050565b61ffff85166000908152600860205260408082209051611a279087906133e5565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611ae0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f6573736167650000000000000000000000000000000000000000000000000000606482015260840161076d565b805482148015611b0a575080600101548383604051611b00929190613702565b6040518091039020145b611b70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161076d565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611bbe9089908990899089908990600401613712565b600060405180830381600087803b158015611bd857600080fd5b505af1158015611bec573d6000803e3d6000fd5b50505050505050505050565b6060600c805461099c906132b7565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b61ffff831660009081526009602052604090206108a2908383612bf2565b60005473ffffffffffffffffffffffffffffffffffffffff163314611def576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b73ffffffffffffffffffffffffffffffffffffffff8116611e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161076d565b61119781612351565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611ef582610fc0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611f529190613792565b915091506119fe8282612337565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161076d565b600061201c83610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208b57508373ffffffffffffffffffffffffffffffffffffffff1661207384610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b806120c8575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166120f082610fc0565b73ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161076d565b73ffffffffffffffffffffffffffffffffffffffff8216612235576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161076d565b612240600082611e9b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906122769084906137c0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906122b1908490613430565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f0d8282604051806020016040528060008152506127a5565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6124ff8484846120d0565b61250b84848484612848565b6108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161076d565b6060600b805461099c906132b7565b6060816125e657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561261057806125fa81613448565b91506126099050600a83613806565b91506125ea565b60008167ffffffffffffffff81111561262b5761262b612cb0565b6040519080825280601f01601f191660200182016040528015612655576020820181803683370190505b5090505b84156120c85761266a6001836137c0565b9150612677600a8661381a565b612682906030613430565b60f81b8183815181106126975761269761382e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126d1600a86613806565b9450612659565b60006126e382610fc0565b90506126f0600083611e9b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906127269084906137c0565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6127af8383612a38565b6127bc6000848484612848565b610c81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161076d565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612a2d576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906128bf90339089908890889060040161385d565b6020604051808303816000875af1925050508015612918575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612915918101906138a6565b60015b6129e2573d808015612946576040519150601f19603f3d011682016040523d82523d6000602084013e61294b565b606091505b5080516129da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161076d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506120c8565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612aeb908490613430565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b7a906132b7565b90600052602060002090601f016020900481019282612b9c5760008555612be2565b82601f10612bb557805160ff1916838001178555612be2565b82800160010185558215612be2579182015b82811115612be2578251825591602001919060010190612bc7565b50612bee929150612c84565b5090565b828054612bfe906132b7565b90600052602060002090601f016020900481019282612c205760008555612be2565b82601f10612c57578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612be2565b82800160010185558215612be2579182015b82811115612be2578235825591602001919060010190612c69565b5b80821115612bee5760008155600101612c85565b803561ffff81168114612cab57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612cfa57612cfa612cb0565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612d4057612d40612cb0565b81604052809350858152868686011115612d5957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612d8457600080fd5b61166e83833560208501612cdf565b803567ffffffffffffffff81168114612cab57600080fd5b60008060008060808587031215612dc157600080fd5b612dca85612c99565b9350602085013567ffffffffffffffff80821115612de757600080fd5b612df388838901612d73565b9450612e0160408801612d93565b93506060870135915080821115612e1757600080fd5b50612e2487828801612d73565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461119757600080fd5b600060208284031215612e7057600080fd5b813561166e81612e30565b60005b83811015612e96578181015183820152602001612e7e565b838111156108a25750506000910152565b60008151808452612ebf816020860160208601612e7b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061166e6020830184612ea7565b600060208284031215612f1657600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461119757600080fd5b60008060408385031215612f5257600080fd5b8235612f5d81612f1d565b946020939093013593505050565b600080600060608486031215612f8057600080fd5b8335612f8b81612f1d565b92506020840135612f9b81612f1d565b929592945050506040919091013590565b600060208284031215612fbe57600080fd5b813567ffffffffffffffff811115612fd557600080fd5b8201601f81018413612fe657600080fd5b6120c884823560208401612cdf565b60006020828403121561300757600080fd5b813560ff8116811461166e57600080fd5b60006020828403121561302a57600080fd5b813561166e81612f1d565b60006020828403121561304757600080fd5b61166e82612c99565b60008060006060848603121561306557600080fd5b61306e84612c99565b9250602084013567ffffffffffffffff81111561308a57600080fd5b61309686828701612d73565b925050604084013590509250925092565b600080604083850312156130ba57600080fd5b82356130c581612f1d565b9150602083013580151581146130da57600080fd5b809150509250929050565b600080600080608085870312156130fb57600080fd5b843561310681612f1d565b9350602085013561311681612f1d565b925060408501359150606085013567ffffffffffffffff81111561313957600080fd5b612e2487828801612d73565b6000806040838503121561315857600080fd5b612f5d83612c99565b60008083601f84011261317357600080fd5b50813567ffffffffffffffff81111561318b57600080fd5b6020830191508360208285010111156131a357600080fd5b9250929050565b6000806000806000608086880312156131c257600080fd5b6131cb86612c99565b9450602086013567ffffffffffffffff808211156131e857600080fd5b6131f489838a01612d73565b955061320260408901612d93565b9450606088013591508082111561321857600080fd5b5061322588828901613161565b969995985093965092949392505050565b6000806040838503121561324957600080fd5b823561325481612f1d565b915060208301356130da81612f1d565b60008060006040848603121561327957600080fd5b61328284612c99565b9250602084013567ffffffffffffffff81111561329e57600080fd5b6132aa86828701613161565b9497909650939450505050565b600181811c908216806132cb57607f821691505b60208210811415613305577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808354613319816132b7565b6001828116801561333157600181146133605761338f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061338f565b8760005260208060002060005b858110156133865781548a82015290840190820161336d565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006133b86080830186612ea7565b67ffffffffffffffff8516604084015282810360608401526133da8185612ea7565b979650505050505050565b600082516133f7818460208701612e7b565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561344357613443613401565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561347a5761347a613401565b5060010190565b60008351613493818460208801612e7b565b8351908301906134a7818360208801612e7b565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006134e960a0830186612ea7565b841515606084015282810360808401526135038185612ea7565b98975050505050505050565b6000806040838503121561352257600080fd5b505080516020909101519092909150565b7f596f75206861766520746f2073656e6420736f6d652f6d6f726520455448207481527f6f20636f7665722074726176657273616c206761732066656520657374696d6160208201527f74652e20596f752077696c6c20626520726566756e646564207468652064696660408201527f666572656e63652e20457374696d6174653a20000000000000000000000000006060820152600082516135dd816073850160208701612e7b565b9190910160730192915050565b61ffff871681526000602060c08184015260008854613608816132b7565b8060c087015260e060018084166000811461362a576001811461365d5761368b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01526101008901955061368b565b8d6000528660002060005b858110156136835781548b8201860152908301908801613668565b8a0184019650505b505050505083810360408501526136a28189612ea7565b9150506136c7606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526136f58185612ea7565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061372f6080830187612ea7565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156137a557600080fd5b82516137b081612f1d565b6020939093015192949293505050565b6000828210156137d2576137d2613401565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613815576138156137d7565b500490565b600082613829576138296137d7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261389c6080830184612ea7565b9695505050505050565b6000602082840312156138b857600080fd5b815161166e81612e3056fea2646970667358221220842e41883b46b0b1c1a83088be926da6a9cb44623e3047ce273955bf9f3faf8164736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80638ee7491211610102578063cf89fa0311610095578063e985e9c511610064578063e985e9c5146105ce578063eb8d72b714610624578063ed88c68e14610207578063f2fde38b1461064457600080fd5b8063cf89fa0314610573578063d1deba1f14610586578063e8a3d48514610599578063e90f2c0f146105ae57600080fd5b8063a22cb465116100d1578063a22cb465146104e6578063b2bdfa7b14610506578063b88d4fde14610533578063c87b56dd1461055357600080fd5b80638ee7491214610426578063938e3d7b14610491578063943fb872146104b157806395d89b41146104d157600080fd5b806342842e0e1161017a57806370a082311161014957806370a0823114610398578063715018a6146103c65780637533d788146103db5780638da5cb5b146103fb57600080fd5b806342842e0e1461032557806355f804b3146103455780636352211e146103655780636ecd23061461038557600080fd5b8063095ea7b3116101b6578063095ea7b3146102a55780631c37a822146102c557806323b872dd146102e55780632e1a7d4d1461030557600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b50610207610202366004612dab565b610664565b005b34801561021557600080fd5b50610229610224366004612e5e565b6108a8565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361098d565b6040516102359190612ef1565b34801561026c57600080fd5b5061028061027b366004612f04565b610a1f565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610235565b3480156102b157600080fd5b506102076102c0366004612f3f565b610af9565b3480156102d157600080fd5b506102076102e0366004612dab565b610c86565b3480156102f157600080fd5b50610207610300366004612f6b565b610d21565b34801561031157600080fd5b50610207610320366004612f04565b610dc2565b34801561033157600080fd5b50610207610340366004612f6b565b610f11565b34801561035157600080fd5b50610207610360366004612fac565b610f2c565b34801561037157600080fd5b50610280610380366004612f04565b610fc0565b610207610393366004612ff5565b611072565b3480156103a457600080fd5b506103b86103b3366004613018565b61119a565b604051908152602001610235565b3480156103d257600080fd5b50610207611268565b3480156103e757600080fd5b506102536103f6366004613035565b6112f5565b34801561040757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610280565b34801561043257600080fd5b5061047c610441366004613050565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b34801561049d57600080fd5b506102076104ac366004612fac565b61138f565b3480156104bd57600080fd5b506102076104cc366004612f04565b611423565b3480156104dd57600080fd5b506102536114a9565b3480156104f257600080fd5b506102076105013660046130a7565b6114b8565b34801561051257600080fd5b50600a546102809073ffffffffffffffffffffffffffffffffffffffff1681565b34801561053f57600080fd5b5061020761054e3660046130e5565b6114c3565b34801561055f57600080fd5b5061025361056e366004612f04565b611565565b610207610581366004613145565b611675565b6102076105943660046131aa565b611a06565b3480156105a557600080fd5b50610253611bf8565b3480156105ba57600080fd5b506102076105c9366004613018565b611c07565b3480156105da57600080fd5b506102296105e9366004613236565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b5061020761063f366004613264565b611ccf565b34801561065057600080fd5b5061020761065f366004613018565b611d6e565b60075473ffffffffffffffffffffffffffffffffffffffff16331461068857600080fd5b61ffff8416600090815260096020526040902080546106a6906132b7565b905083511480156106e5575061ffff84166000908152600960205260409081902090516106d3919061330b565b60405180910390208380519060200120145b610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906107b890879087908790879060040161339b565b600060405180830381600087803b1580156107d257600080fd5b505af19250505080156107e3575060015b6108a2576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161082d91906133e5565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061089990869086908690869061339b565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061093b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461099c906132b7565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906132b7565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610ad0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161076d565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b0482610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161076d565b3373ffffffffffffffffffffffffffffffffffffffff82161480610beb5750610beb81336105e9565b610c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b610c818383611e9b565b505050565b333014610d15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e000000000000000000000000000000000000000000606482015260840161076d565b6108a284848484611f3b565b610d2b3382611f60565b610db7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161076d565b610c818383836120d0565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e9d576040519150601f19603f3d011682016040523d82523d6000602084013e610ea2565b606091505b5050905080610f0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161076d565b5050565b610c81838383604051806020016040528060008152506114c3565b60005473ffffffffffffffffffffffffffffffffffffffff163314610fad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b8051610f0d90600b906020840190612b6e565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161076d565b60038160ff16106110df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e000000000000604482015260640161076d565b600e548160ff16600d546110f39190613430565b111561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d696e74206578636565647320737570706c7900000000000000000000000000604482015260640161076d565b61117833600d6000815461116e90613448565b9182905550612337565b8060ff16600214156111975761119733600d6000815461116e90613448565b50565b600073ffffffffffffffffffffffffffffffffffffffff821661123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161076d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b6112f36000612351565b565b6009602052600090815260409020805461130e906132b7565b80601f016020809104026020016040519081016040528092919081815260200182805461133a906132b7565b80156113875780601f1061135c57610100808354040283529160200191611387565b820191906000526020600020905b81548152906001019060200180831161136a57829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff163314611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b8051610f0d90600c906020840190612b6e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b600f55565b60606002805461099c906132b7565b610f0d3383836123c6565b6114cd3383611f60565b611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161076d565b6108a2848484846124f4565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161076d565b6000611623612597565b90506000815111611643576040518060200160405280600081525061166e565b8061164d846125a6565b60405160200161165e929190613481565b6040516020818303038152906040525b9392505050565b61167e81610fc0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f7365000000000000000000000000000000000000000000000000000000000000606482015260840161076d565b61ffff821660009081526009602052604081208054611756906132b7565b9050116117e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c000000000000000000000000000000000000606482015260840161076d565b60408051336020820152808201839052815180820383018152606082018352600f547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906118a9908990309089908790899060a6016134b0565b6040805180830381865afa1580156118c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e9919061350f565b509050803410156118f9826125a6565b6040516020016119099190613533565b60405160208183030381529060405290611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d9190612ef1565b5060075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c58031009234926119c3928c928b913391908b906004016135ea565b6000604051808303818588803b1580156119dc57600080fd5b505af11580156119f0573d6000803e3d6000fd5b50505050506119fe856126d8565b505050505050565b61ffff85166000908152600860205260408082209051611a279087906133e5565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611ae0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f6573736167650000000000000000000000000000000000000000000000000000606482015260840161076d565b805482148015611b0a575080600101548383604051611b00929190613702565b6040518091039020145b611b70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161076d565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611bbe9089908990899089908990600401613712565b600060405180830381600087803b158015611bd857600080fd5b505af1158015611bec573d6000803e3d6000fd5b50505050505050505050565b6060600c805461099c906132b7565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b61ffff831660009081526009602052604090206108a2908383612bf2565b60005473ffffffffffffffffffffffffffffffffffffffff163314611def576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076d565b73ffffffffffffffffffffffffffffffffffffffff8116611e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161076d565b61119781612351565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611ef582610fc0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611f529190613792565b915091506119fe8282612337565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161076d565b600061201c83610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208b57508373ffffffffffffffffffffffffffffffffffffffff1661207384610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b806120c8575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166120f082610fc0565b73ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161076d565b73ffffffffffffffffffffffffffffffffffffffff8216612235576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161076d565b612240600082611e9b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906122769084906137c0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906122b1908490613430565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f0d8282604051806020016040528060008152506127a5565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6124ff8484846120d0565b61250b84848484612848565b6108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161076d565b6060600b805461099c906132b7565b6060816125e657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561261057806125fa81613448565b91506126099050600a83613806565b91506125ea565b60008167ffffffffffffffff81111561262b5761262b612cb0565b6040519080825280601f01601f191660200182016040528015612655576020820181803683370190505b5090505b84156120c85761266a6001836137c0565b9150612677600a8661381a565b612682906030613430565b60f81b8183815181106126975761269761382e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126d1600a86613806565b9450612659565b60006126e382610fc0565b90506126f0600083611e9b565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906127269084906137c0565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6127af8383612a38565b6127bc6000848484612848565b610c81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161076d565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612a2d576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906128bf90339089908890889060040161385d565b6020604051808303816000875af1925050508015612918575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612915918101906138a6565b60015b6129e2573d808015612946576040519150601f19603f3d011682016040523d82523d6000602084013e61294b565b606091505b5080516129da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161076d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506120c8565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612aeb908490613430565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b7a906132b7565b90600052602060002090601f016020900481019282612b9c5760008555612be2565b82601f10612bb557805160ff1916838001178555612be2565b82800160010185558215612be2579182015b82811115612be2578251825591602001919060010190612bc7565b50612bee929150612c84565b5090565b828054612bfe906132b7565b90600052602060002090601f016020900481019282612c205760008555612be2565b82601f10612c57578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612be2565b82800160010185558215612be2579182015b82811115612be2578235825591602001919060010190612c69565b5b80821115612bee5760008155600101612c85565b803561ffff81168114612cab57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612cfa57612cfa612cb0565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612d4057612d40612cb0565b81604052809350858152868686011115612d5957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612d8457600080fd5b61166e83833560208501612cdf565b803567ffffffffffffffff81168114612cab57600080fd5b60008060008060808587031215612dc157600080fd5b612dca85612c99565b9350602085013567ffffffffffffffff80821115612de757600080fd5b612df388838901612d73565b9450612e0160408801612d93565b93506060870135915080821115612e1757600080fd5b50612e2487828801612d73565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461119757600080fd5b600060208284031215612e7057600080fd5b813561166e81612e30565b60005b83811015612e96578181015183820152602001612e7e565b838111156108a25750506000910152565b60008151808452612ebf816020860160208601612e7b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061166e6020830184612ea7565b600060208284031215612f1657600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461119757600080fd5b60008060408385031215612f5257600080fd5b8235612f5d81612f1d565b946020939093013593505050565b600080600060608486031215612f8057600080fd5b8335612f8b81612f1d565b92506020840135612f9b81612f1d565b929592945050506040919091013590565b600060208284031215612fbe57600080fd5b813567ffffffffffffffff811115612fd557600080fd5b8201601f81018413612fe657600080fd5b6120c884823560208401612cdf565b60006020828403121561300757600080fd5b813560ff8116811461166e57600080fd5b60006020828403121561302a57600080fd5b813561166e81612f1d565b60006020828403121561304757600080fd5b61166e82612c99565b60008060006060848603121561306557600080fd5b61306e84612c99565b9250602084013567ffffffffffffffff81111561308a57600080fd5b61309686828701612d73565b925050604084013590509250925092565b600080604083850312156130ba57600080fd5b82356130c581612f1d565b9150602083013580151581146130da57600080fd5b809150509250929050565b600080600080608085870312156130fb57600080fd5b843561310681612f1d565b9350602085013561311681612f1d565b925060408501359150606085013567ffffffffffffffff81111561313957600080fd5b612e2487828801612d73565b6000806040838503121561315857600080fd5b612f5d83612c99565b60008083601f84011261317357600080fd5b50813567ffffffffffffffff81111561318b57600080fd5b6020830191508360208285010111156131a357600080fd5b9250929050565b6000806000806000608086880312156131c257600080fd5b6131cb86612c99565b9450602086013567ffffffffffffffff808211156131e857600080fd5b6131f489838a01612d73565b955061320260408901612d93565b9450606088013591508082111561321857600080fd5b5061322588828901613161565b969995985093965092949392505050565b6000806040838503121561324957600080fd5b823561325481612f1d565b915060208301356130da81612f1d565b60008060006040848603121561327957600080fd5b61328284612c99565b9250602084013567ffffffffffffffff81111561329e57600080fd5b6132aa86828701613161565b9497909650939450505050565b600181811c908216806132cb57607f821691505b60208210811415613305577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808354613319816132b7565b6001828116801561333157600181146133605761338f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061338f565b8760005260208060002060005b858110156133865781548a82015290840190820161336d565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006133b86080830186612ea7565b67ffffffffffffffff8516604084015282810360608401526133da8185612ea7565b979650505050505050565b600082516133f7818460208701612e7b565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561344357613443613401565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561347a5761347a613401565b5060010190565b60008351613493818460208801612e7b565b8351908301906134a7818360208801612e7b565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006134e960a0830186612ea7565b841515606084015282810360808401526135038185612ea7565b98975050505050505050565b6000806040838503121561352257600080fd5b505080516020909101519092909150565b7f596f75206861766520746f2073656e6420736f6d652f6d6f726520455448207481527f6f20636f7665722074726176657273616c206761732066656520657374696d6160208201527f74652e20596f752077696c6c20626520726566756e646564207468652064696660408201527f666572656e63652e20457374696d6174653a20000000000000000000000000006060820152600082516135dd816073850160208701612e7b565b9190910160730192915050565b61ffff871681526000602060c08184015260008854613608816132b7565b8060c087015260e060018084166000811461362a576001811461365d5761368b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01526101008901955061368b565b8d6000528660002060005b858110156136835781548b8201860152908301908801613668565b8a0184019650505b505050505083810360408501526136a28189612ea7565b9150506136c7606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526136f58185612ea7565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061372f6080830187612ea7565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156137a557600080fd5b82516137b081612f1d565b6020939093015192949293505050565b6000828210156137d2576137d2613401565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613815576138156137d7565b500490565b600082613829576138296137d7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261389c6080830184612ea7565b9695505050505050565b6000602082840312156138b857600080fd5b815161166e81612e3056fea2646970667358221220842e41883b46b0b1c1a83088be926da6a9cb44623e3047ce273955bf9f3faf8164736f6c634300080b0033

Deployed Bytecode Sourcemap

46143:4165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43408:949;;;;;;;;;;-1:-1:-1;43408:949:0;;;;;:::i;:::-;;:::i;:::-;;30544:305;;;;;;;;;;-1:-1:-1;30544:305:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;30544:305:0;;;;;;;;31489:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33048:221::-;;;;;;;;;;-1:-1:-1;33048:221:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;33048:221:0;3903:226:1;32571:411:0;;;;;;;;;;-1:-1:-1;32571:411:0;;;;;:::i;:::-;;:::i;44365:356::-;;;;;;;;;;-1:-1:-1;44365:356:0;;;;;:::i;:::-;;:::i;33798:339::-;;;;;;;;;;-1:-1:-1;33798:339:0;;;;;:::i;:::-;;:::i;49387:170::-;;;;;;;;;;-1:-1:-1;49387:170:0;;;;;:::i;:::-;;:::i;34208:185::-;;;;;;;;;;-1:-1:-1;34208:185:0;;;;;:::i;:::-;;:::i;49161:90::-;;;;;;;;;;-1:-1:-1;49161:90:0;;;;;:::i;:::-;;:::i;31183:239::-;;;;;;;;;;-1:-1:-1;31183:239:0;;;;;:::i;:::-;;:::i;46979:346::-;;;;;;:::i;:::-;;:::i;30913:208::-;;;;;;;;;;-1:-1:-1;30913:208:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;30913:208:0;6055:177:1;12110:103:0;;;;;;;;;;;;;:::i;43250:51::-;;;;;;;;;;-1:-1:-1;43250:51:0;;;;;:::i;:::-;;:::i;11459:87::-;;;;;;;;;;-1:-1:-1;11505:7:0;11532:6;;;11459:87;;43153:90;;;;;;;;;;-1:-1:-1;43153:90:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;43153:90:0;7114:248:1;46610:99:0;;;;;;;;;;-1:-1:-1;46610:99:0;;;;;:::i;:::-;;:::i;49641:125::-;;;;;;;;;;-1:-1:-1;49641:125:0;;;;;:::i;:::-;;:::i;31658:104::-;;;;;;;;;;;;;:::i;33341:155::-;;;;;;;;;;-1:-1:-1;33341:155:0;;;;;:::i;:::-;;:::i;46209:21::-;;;;;;;;;;-1:-1:-1;46209:21:0;;;;;;;;34464:328;;;;;;;;;;-1:-1:-1;34464:328:0;;;;;:::i;:::-;;:::i;31833:334::-;;;;;;;;;;-1:-1:-1;31833:334:0;;;;;:::i;:::-;;:::i;47465:1686::-;;;;;;:::i;:::-;;:::i;45197:758::-;;;;;;:::i;:::-;;:::i;46507:97::-;;;;;;;;;;;;;:::i;46717:146::-;;;;;;;;;;-1:-1:-1;46717:146:0;;;;;:::i;:::-;;:::i;33567:164::-;;;;;;;;;;-1:-1:-1;33567:164:0;;;;;:::i;:::-;33688:25;;;;33664:4;33688:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33567:164;45963:158;;;;;;;;;;-1:-1:-1;45963:158:0;;;;;:::i;:::-;;:::i;12368:201::-;;;;;;;;;;-1:-1:-1;12368:201:0;;;;;:::i;:::-;;:::i;43408:949::-;43570:8;;;;43548:10;:31;43540:40;;;;;;43691:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;43669:11;:18;:61;:134;;;;-1:-1:-1;43770:32:0;;;;;;;:19;:32;;;;;;;43760:43;;;;43770:32;43760:43;:::i;:::-;;;;;;;;43744:11;43734:22;;;;;;:69;43669:134;43661:213;;;;;;;12242:2:1;43661:213:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;12391:22;12371:18;;;12364:50;12431:19;;43661:213:0;;;;;;;;;44002:60;;;;;:4;;:16;;:60;;44019:11;;44032;;44045:6;;44053:8;;44002:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43998:352;;44209:52;;;;;;;;44224:8;:15;44209:52;;;;44251:8;44241:19;;;;;;44209:52;;;44158:14;:27;44173:11;44158:27;;;;;;;;;;;;;;;44186:11;44158:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;44281:57;;;;44295:11;;44308;;44199:6;;44329:8;;44281:57;:::i;:::-;;;;;;;;43998:352;43408:949;;;;:::o;30544:305::-;30646:4;30683:40;;;30698:25;30683:40;;:105;;-1:-1:-1;30740:48:0;;;30755:33;30740:48;30683:105;:158;;;-1:-1:-1;23689:25:0;23674:40;;;;30805:36;30663:178;30544:305;-1:-1:-1;;30544:305:0:o;31489:100::-;31543:13;31576:5;31569:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31489:100;:::o;33048:221::-;33124:7;36391:16;;;:7;:16;;;;;;:30;:16;33144:73;;;;;;;13504:2:1;33144:73:0;;;13486:21:1;13543:2;13523:18;;;13516:30;13582:34;13562:18;;;13555:62;13653:14;13633:18;;;13626:42;13685:19;;33144:73:0;13302:408:1;33144:73:0;-1:-1:-1;33237:24:0;;;;:15;:24;;;;;;;;;33048:221::o;32571:411::-;32652:13;32668:23;32683:7;32668:14;:23::i;:::-;32652:39;;32716:5;32710:11;;:2;:11;;;;32702:57;;;;;;;13917:2:1;32702:57:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;14066:3;14046:18;;;14039:31;14087:19;;32702:57:0;13715:397:1;32702:57:0;10335:10;32794:21;;;;;:62;;-1:-1:-1;32819:37:0;32836:5;10335:10;33567:164;:::i;32819:37::-;32772:168;;;;;;;14319:2:1;32772:168:0;;;14301:21:1;14358:2;14338:18;;;14331:30;14397:34;14377:18;;;14370:62;14468:26;14448:18;;;14441:54;14512:19;;32772:168:0;14117:420:1;32772:168:0;32953:21;32962:2;32966:7;32953:8;:21::i;:::-;32641:341;32571:411;;:::o;44365:356::-;44534:10;44556:4;44534:27;44526:83;;;;;;;14744:2:1;44526:83:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:34;14802:18;;;14795:62;14893:13;14873:18;;;14866:41;14924:19;;44526:83:0;14542:407:1;44526:83:0;44658:55;44670:11;44683;44696:6;44704:8;44658:10;:55::i;33798:339::-;33993:41;10335:10;34026:7;33993:18;:41::i;:::-;33985:103;;;;;;;15156:2:1;33985:103:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;33985:103:0;14954:413:1;33985:103:0;34101:28;34111:4;34117:2;34121:7;34101:9;:28::i;49387:170::-;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;49469:6:::1;::::0;49461:36:::1;::::0;49446:9:::1;::::0;49469:6:::1;;::::0;49489:3;;49446:9;49461:36;49446:9;49461:36;49489:3;49469:6;49461:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49445:52;;;49516:4;49508:41;;;::::0;::::1;::::0;;16145:2:1;49508:41:0::1;::::0;::::1;16127:21:1::0;16184:2;16164:18;;;16157:30;16223:26;16203:18;;;16196:54;16267:18;;49508:41:0::1;15943:348:1::0;49508:41:0::1;49434:123;49387:170:::0;:::o;34208:185::-;34346:39;34363:4;34369:2;34373:7;34346:39;;;;;;;;;;;;:16;:39::i;49161:90::-;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;49230:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;31183:239::-:0;31255:7;31291:16;;;:7;:16;;;;;;;;31326:19;31318:73;;;;;;;16498:2:1;31318:73:0;;;16480:21:1;16537:2;16517:18;;;16510:30;16576:34;16556:18;;;16549:62;16647:11;16627:18;;;16620:39;16676:19;;31318:73:0;16296:405:1;46979:346:0;47058:1;47046:9;:13;;;47038:52;;;;;;;16908:2:1;47038:52:0;;;16890:21:1;16947:2;16927:18;;;16920:30;16986:28;16966:18;;;16959:56;17032:18;;47038:52:0;16706:350:1;47038:52:0;47136:17;;47123:9;47109:23;;:11;;:23;;;;:::i;:::-;:44;;47101:76;;;;;;;17585:2:1;47101:76:0;;;17567:21:1;17624:2;17604:18;;;17597:30;17663:21;17643:18;;;17636:49;17702:18;;47101:76:0;17383:343:1;47101:76:0;47188:36;47198:10;47212:11;;47210:13;;;;;:::i;:::-;;;;;-1:-1:-1;47188:9:0;:36::i;:::-;47239:9;:14;;47252:1;47239:14;47235:83;;;47270:36;47280:10;47294:11;;47292:13;;;;;:::i;47270:36::-;46979:346;:::o;30913:208::-;30985:7;31013:19;;;31005:74;;;;;;;18133:2:1;31005:74:0;;;18115:21:1;18172:2;18152:18;;;18145:30;18211:34;18191:18;;;18184:62;18282:12;18262:18;;;18255:40;18312:19;;31005:74:0;17931:406:1;31005:74:0;-1:-1:-1;31097:16:0;;;;;;:9;:16;;;;;;;30913:208::o;12110:103::-;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;12175:30:::1;12202:1;12175:18;:30::i;:::-;12110:103::o:0;43250:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46610:99::-;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;46683:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;49641:125::-:0;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;49723:26:::1;:35:::0;49641:125::o;31658:104::-;31714:13;31747:7;31740:14;;;;;:::i;33341:155::-;33436:52;10335:10;33469:8;33479;33436:18;:52::i;34464:328::-;34639:41;10335:10;34672:7;34639:18;:41::i;:::-;34631:103;;;;;;;15156:2:1;34631:103:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;34631:103:0;14954:413:1;34631:103:0;34745:39;34759:4;34765:2;34769:7;34778:5;34745:13;:39::i;31833:334::-;36367:4;36391:16;;;:7;:16;;;;;;31906:13;;36391:30;:16;31932:76;;;;;;;18544:2:1;31932:76:0;;;18526:21:1;18583:2;18563:18;;;18556:30;18622:34;18602:18;;;18595:62;18693:17;18673:18;;;18666:45;18728:19;;31932:76:0;18342:411:1;31932:76:0;32021:21;32045:10;:8;:10::i;:::-;32021:34;;32097:1;32079:7;32073:21;:25;:86;;;;;;;;;;;;;;;;;32125:7;32134:18;:7;:16;:18::i;:::-;32108:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32073:86;32066:93;31833:334;-1:-1:-1;;;31833:334:0:o;47465:1686::-;47568:16;47576:7;47568;:16::i;:::-;47554:30;;:10;:30;;;47546:77;;;;;;;19435:2:1;47546:77:0;;;19417:21:1;19474:2;19454:18;;;19447:30;19513:34;19493:18;;;19486:62;19584:4;19564:18;;;19557:32;19606:19;;47546:77:0;19233:398:1;47546:77:0;47642:29;;;47681:1;47642:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;47634:99;;;;;;;19838:2:1;47634:99:0;;;19820:21:1;19877:2;19857:18;;;19850:30;19916:34;19896:18;;;19889:62;19987:16;19967:18;;;19960:44;20021:19;;47634:99:0;19636:410:1;47634:99:0;47830:31;;;47841:10;47830:31;;;20225:74:1;20315:18;;;20308:34;;;47830:31:0;;;;;;;;;20198:18:1;;;47830:31:0;;48031:26;;20524:16:1;48005:53:0;;;20508:102:1;20626:11;;;;20619:27;;;;48005:53:0;;;;;;;;;;20662:12:1;;;48005:53:0;;;;48234:8;;:77;;;;47830:31;;47964:1;;-1:-1:-1;;48234:8:0;;;:21;;:77;;48256:8;;48274:4;;47830:31;;-1:-1:-1;;48005:53:0;;48234:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48212:99;;;48353:10;48340:9;:23;;48508:28;48525:10;48508:16;:28::i;:::-;48372:165;;;;;;;;:::i;:::-;;;;;;;;;;;;;48332:207;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;48552:8:0;;48670:29;;;48552:8;48670:29;;;:19;:29;;;;;;48552:499;;;;;:8;;;;;:13;;48573:9;;48552:499;;48598:8;;48758:7;;48841:10;;48552:8;48988:13;;48552:499;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49129:14;49135:7;49129:5;:14::i;:::-;47535:1616;;;;47465:1686;;:::o;45197:758::-;45413:27;;;45378:32;45413:27;;;:14;:27;;;;;;:40;;;;45441:11;;45413:40;:::i;:::-;;;;;;;;;;;;;;;;:48;;;;;;;;;;;45480:21;;;;45413:48;;-1:-1:-1;45472:86:0;;;;;;;23992:2:1;45472:86:0;;;23974:21:1;24031:2;24011:18;;;24004:30;24070:34;24050:18;;;24043:62;24141:8;24121:18;;;24114:36;24167:19;;45472:86:0;23790:402:1;45472:86:0;45596:23;;45577:42;;:90;;;;;45646:9;:21;;;45633:8;;45623:19;;;;;;;:::i;:::-;;;;;;;;:44;45577:90;45569:129;;;;;;;24675:2:1;45569:129:0;;;24657:21:1;24714:2;24694:18;;;24687:30;24753:28;24733:18;;;24726:56;24799:18;;45569:129:0;24473:350:1;45569:129:0;45772:1;45746:27;;;45784:21;;;:34;45887:60;;;;;:4;;:16;;:60;;45904:11;;45917;;45930:6;;45938:8;;;;45887:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45322:633;45197:758;;;;;:::o;46507:97::-;46551:13;46584:12;46577:19;;;;;:::i;46717:146::-;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;46806:8:::1;:49:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46717:146::o;45963:158::-;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;46067:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;46099:14;;46067:46:::1;:::i;12368:201::-:0;11505:7;11532:6;11679:23;11532:6;10335:10;11679:23;11671:68;;;;;;;15574:2:1;11671:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;11671:68:0;15372:356:1;11671:68:0;12457:22:::1;::::0;::::1;12449:73;;;::::0;::::1;::::0;;25812:2:1;12449:73:0::1;::::0;::::1;25794:21:1::0;25851:2;25831:18;;;25824:30;25890:34;25870:18;;;25863:62;25961:8;25941:18;;;25934:36;25987:19;;12449:73:0::1;25610:402:1::0;12449:73:0::1;12533:28;12552:8;12533:18;:28::i;40215:174::-:0;40290:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;40344:23;40290:24;40344:14;:23::i;:::-;40335:46;;;;;;;;;;;;40215:174;;:::o;49857:338::-;50010:14;50026:12;50053:8;50042:37;;;;;;;;;;;;:::i;:::-;50009:70;;;;50161:26;50171:6;50179:7;50161:9;:26::i;36596:348::-;36689:4;36391:16;;;:7;:16;;;;;;:30;:16;36706:73;;;;;;;26544:2:1;36706:73:0;;;26526:21:1;26583:2;26563:18;;;26556:30;26622:34;26602:18;;;26595:62;26693:14;26673:18;;;26666:42;26725:19;;36706:73:0;26342:408:1;36706:73:0;36790:13;36806:23;36821:7;36806:14;:23::i;:::-;36790:39;;36859:5;36848:16;;:7;:16;;;:51;;;;36892:7;36868:31;;:20;36880:7;36868:11;:20::i;:::-;:31;;;36848:51;:87;;;-1:-1:-1;33688:25:0;;;;33664:4;33688:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36903:32;36840:96;36596:348;-1:-1:-1;;;;36596:348:0:o;39519:578::-;39678:4;39651:31;;:23;39666:7;39651:14;:23::i;:::-;:31;;;39643:85;;;;;;;26957:2:1;39643:85:0;;;26939:21:1;26996:2;26976:18;;;26969:30;27035:34;27015:18;;;27008:62;27106:11;27086:18;;;27079:39;27135:19;;39643:85:0;26755:405:1;39643:85:0;39747:16;;;39739:65;;;;;;;27367:2:1;39739:65:0;;;27349:21:1;27406:2;27386:18;;;27379:30;27445:34;27425:18;;;27418:62;27516:6;27496:18;;;27489:34;27540:19;;39739:65:0;27165:400:1;39739:65:0;39921:29;39938:1;39942:7;39921:8;:29::i;:::-;39963:15;;;;;;;:9;:15;;;;;:20;;39982:1;;39963:15;:20;;39982:1;;39963:20;:::i;:::-;;;;-1:-1:-1;;39994:13:0;;;;;;;:9;:13;;;;;:18;;40011:1;;39994:13;:18;;40011:1;;39994:18;:::i;:::-;;;;-1:-1:-1;;40023:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;40062:27;;40023:16;;40062:27;;;;;;;39519:578;;;:::o;37286:110::-;37362:26;37372:2;37376:7;37362:26;;;;;;;;;;;;:9;:26::i;12729:191::-;12803:16;12822:6;;;12839:17;;;;;;;;;;12872:40;;12822:6;;;;;;;12872:40;;12803:16;12872:40;12792:128;12729:191;:::o;40531:315::-;40686:8;40677:17;;:5;:17;;;;40669:55;;;;;;;27902:2:1;40669:55:0;;;27884:21:1;27941:2;27921:18;;;27914:30;27980:27;27960:18;;;27953:55;28025:18;;40669:55:0;27700:349:1;40669:55:0;40735:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;40797:41;;2724::1;;;40797::0;;2697:18:1;40797:41:0;;;;;;;40531:315;;;:::o;35674:::-;35831:28;35841:4;35847:2;35851:7;35831:9;:28::i;:::-;35878:48;35901:4;35907:2;35911:7;35920:5;35878:22;:48::i;:::-;35870:111;;;;;;;28256:2:1;35870:111:0;;;28238:21:1;28295:2;28275:18;;;28268:30;28334:34;28314:18;;;28307:62;28405:20;28385:18;;;28378:48;28443:19;;35870:111:0;28054:414:1;50205:100:0;50257:13;50290:7;50283:14;;;;;:::i;7888:723::-;7944:13;8165:10;8161:53;;-1:-1:-1;;8192:10:0;;;;;;;;;;;;;;;;;;7888:723::o;8161:53::-;8239:5;8224:12;8280:78;8287:9;;8280:78;;8313:8;;;;:::i;:::-;;-1:-1:-1;8336:10:0;;-1:-1:-1;8344:2:0;8336:10;;:::i;:::-;;;8280:78;;;8368:19;8400:6;8390:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8390:17:0;;8368:39;;8418:154;8425:10;;8418:154;;8452:11;8462:1;8452:11;;:::i;:::-;;-1:-1:-1;8521:10:0;8529:2;8521:5;:10;:::i;:::-;8508:24;;:2;:24;:::i;:::-;8495:39;;8478:6;8485;8478:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;8549:11:0;8558:2;8549:11;;:::i;:::-;;;8418:154;;38822:360;38882:13;38898:23;38913:7;38898:14;:23::i;:::-;38882:39;;39023:29;39040:1;39044:7;39023:8;:29::i;:::-;39065:16;;;;;;;:9;:16;;;;;:21;;39085:1;;39065:16;:21;;39085:1;;39065:21;:::i;:::-;;;;-1:-1:-1;;39104:16:0;;;;:7;:16;;;;;;39097:23;;;;;;39138:36;39112:7;;39104:16;39097:23;39138:36;;;;;39104:16;;39138:36;38871:311;38822:360;:::o;37623:321::-;37753:18;37759:2;37763:7;37753:5;:18::i;:::-;37804:54;37835:1;37839:2;37843:7;37852:5;37804:22;:54::i;:::-;37782:154;;;;;;;28256:2:1;37782:154:0;;;28238:21:1;28295:2;28275:18;;;28268:30;28334:34;28314:18;;;28307:62;28405:20;28385:18;;;28378:48;28443:19;;37782:154:0;28054:414:1;41411:799:0;41566:4;41587:13;;;13999:20;14047:8;41583:620;;41623:72;;;;;:36;;;;;;:72;;10335:10;;41674:4;;41680:7;;41689:5;;41623:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41623:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41619:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41865:13:0;;41861:272;;41908:60;;;;;28256:2:1;41908:60:0;;;28238:21:1;28295:2;28275:18;;;28268:30;28334:34;28314:18;;;28307:62;28405:20;28385:18;;;28378:48;28443:19;;41908:60:0;28054:414:1;41861:272:0;42083:6;42077:13;42068:6;42064:2;42060:15;42053:38;41619:529;41746:51;;41756:41;41746:51;;-1:-1:-1;41739:58:0;;41583:620;-1:-1:-1;42187:4:0;41411:799;;;;;;:::o;38280:313::-;38360:16;;;38352:61;;;;;;;30066:2:1;38352:61:0;;;30048:21:1;;;30085:18;;;30078:30;30144:34;30124:18;;;30117:62;30196:18;;38352:61:0;29864:356:1;38352:61:0;38484:13;;;;;;;:9;:13;;;;;:18;;38501:1;;38484:13;:18;;38501:1;;38484:18;:::i;:::-;;;;-1:-1:-1;;38513:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;38552:33;;38513:16;;;38552:33;;38513:16;;38552:33;38280:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:456::-;4690:6;4698;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4814:9;4801:23;4833:31;4858:5;4833:31;:::i;:::-;4883:5;-1:-1:-1;4940:2:1;4925:18;;4912:32;4953:33;4912:32;4953:33;:::i;:::-;4613:456;;5005:7;;-1:-1:-1;;;5059:2:1;5044:18;;;;5031:32;;4613:456::o;5074:450::-;5143:6;5196:2;5184:9;5175:7;5171:23;5167:32;5164:52;;;5212:1;5209;5202:12;5164:52;5252:9;5239:23;5285:18;5277:6;5274:30;5271:50;;;5317:1;5314;5307:12;5271:50;5340:22;;5393:4;5385:13;;5381:27;-1:-1:-1;5371:55:1;;5422:1;5419;5412:12;5371:55;5445:73;5510:7;5505:2;5492:16;5487:2;5483;5479:11;5445:73;:::i;5529:269::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5744:4;5737:5;5733:16;5726:5;5723:27;5713:55;;5764:1;5761;5754:12;5803:247;5862:6;5915:2;5903:9;5894:7;5890:23;5886:32;5883:52;;;5931:1;5928;5921:12;5883:52;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;6237:184::-;6295:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:52;;;6364:1;6361;6354:12;6316:52;6387:28;6405:9;6387:28;:::i;6649:460::-;6734:6;6742;6750;6803:2;6791:9;6782:7;6778:23;6774:32;6771:52;;;6819:1;6816;6809:12;6771:52;6842:28;6860:9;6842:28;:::i;:::-;6832:38;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:49;7044:7;7035:6;7024:9;7020:22;7003:49;:::i;:::-;6993:59;;;7099:2;7088:9;7084:18;7071:32;7061:42;;6649:460;;;;;:::o;7367:416::-;7432:6;7440;7493:2;7481:9;7472:7;7468:23;7464:32;7461:52;;;7509:1;7506;7499:12;7461:52;7548:9;7535:23;7567:31;7592:5;7567:31;:::i;:::-;7617:5;-1:-1:-1;7674:2:1;7659:18;;7646:32;7716:15;;7709:23;7697:36;;7687:64;;7747:1;7744;7737:12;7687:64;7770:7;7760:17;;;7367:416;;;;;:::o;7788:665::-;7883:6;7891;7899;7907;7960:3;7948:9;7939:7;7935:23;7931:33;7928:53;;;7977:1;7974;7967:12;7928:53;8016:9;8003:23;8035:31;8060:5;8035:31;:::i;:::-;8085:5;-1:-1:-1;8142:2:1;8127:18;;8114:32;8155:33;8114:32;8155:33;:::i;:::-;8207:7;-1:-1:-1;8261:2:1;8246:18;;8233:32;;-1:-1:-1;8316:2:1;8301:18;;8288:32;8343:18;8332:30;;8329:50;;;8375:1;8372;8365:12;8329:50;8398:49;8439:7;8430:6;8419:9;8415:22;8398:49;:::i;8458:252::-;8525:6;8533;8586:2;8574:9;8565:7;8561:23;8557:32;8554:52;;;8602:1;8599;8592:12;8554:52;8625:28;8643:9;8625:28;:::i;8715:347::-;8766:8;8776:6;8830:3;8823:4;8815:6;8811:17;8807:27;8797:55;;8848:1;8845;8838:12;8797:55;-1:-1:-1;8871:20:1;;8914:18;8903:30;;8900:50;;;8946:1;8943;8936:12;8900:50;8983:4;8975:6;8971:17;8959:29;;9035:3;9028:4;9019:6;9011;9007:19;9003:30;9000:39;8997:59;;;9052:1;9049;9042:12;8997:59;8715:347;;;;;:::o;9067:773::-;9171:6;9179;9187;9195;9203;9256:3;9244:9;9235:7;9231:23;9227:33;9224:53;;;9273:1;9270;9263:12;9224:53;9296:28;9314:9;9296:28;:::i;:::-;9286:38;;9375:2;9364:9;9360:18;9347:32;9398:18;9439:2;9431:6;9428:14;9425:34;;;9455:1;9452;9445:12;9425:34;9478:49;9519:7;9510:6;9499:9;9495:22;9478:49;:::i;:::-;9468:59;;9546:37;9579:2;9568:9;9564:18;9546:37;:::i;:::-;9536:47;;9636:2;9625:9;9621:18;9608:32;9592:48;;9665:2;9655:8;9652:16;9649:36;;;9681:1;9678;9671:12;9649:36;;9720:60;9772:7;9761:8;9750:9;9746:24;9720:60;:::i;:::-;9067:773;;;;-1:-1:-1;9067:773:1;;-1:-1:-1;9799:8:1;;9694:86;9067:773;-1:-1:-1;;;9067:773:1:o;9845:388::-;9913:6;9921;9974:2;9962:9;9953:7;9949:23;9945:32;9942:52;;;9990:1;9987;9980:12;9942:52;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;:::-;10098:5;-1:-1:-1;10155:2:1;10140:18;;10127:32;10168:33;10127:32;10168:33;:::i;10238:481::-;10316:6;10324;10332;10385:2;10373:9;10364:7;10360:23;10356:32;10353:52;;;10401:1;10398;10391:12;10353:52;10424:28;10442:9;10424:28;:::i;:::-;10414:38;;10503:2;10492:9;10488:18;10475:32;10530:18;10522:6;10519:30;10516:50;;;10562:1;10559;10552:12;10516:50;10601:58;10651:7;10642:6;10631:9;10627:22;10601:58;:::i;:::-;10238:481;;10678:8;;-1:-1:-1;10575:84:1;;-1:-1:-1;;;;10238:481:1:o;10724:437::-;10803:1;10799:12;;;;10846;;;10867:61;;10921:4;10913:6;10909:17;10899:27;;10867:61;10974:2;10966:6;10963:14;10943:18;10940:38;10937:218;;;11011:77;11008:1;11001:88;11112:4;11109:1;11102:15;11140:4;11137:1;11130:15;10937:218;;10724:437;;;:::o;11166:869::-;11292:3;11321:1;11354:6;11348:13;11384:36;11410:9;11384:36;:::i;:::-;11439:1;11456:18;;;11483:162;;;;11659:1;11654:356;;;;11449:561;;11483:162;11531:66;11520:9;11516:82;11511:3;11504:95;11628:6;11623:3;11619:16;11612:23;;11483:162;;11654:356;11685:6;11682:1;11675:17;11715:4;11760:2;11757:1;11747:16;11785:1;11799:165;11813:6;11810:1;11807:13;11799:165;;;11891:14;;11878:11;;;11871:35;11934:16;;;;11828:10;;11799:165;;;11803:3;;;11993:6;11988:3;11984:16;11977:23;;11449:561;-1:-1:-1;12026:3:1;;11166:869;-1:-1:-1;;;;;;11166:869:1:o;12461:557::-;12718:6;12710;12706:19;12695:9;12688:38;12762:3;12757:2;12746:9;12742:18;12735:31;12669:4;12789:46;12830:3;12819:9;12815:19;12807:6;12789:46;:::i;:::-;12883:18;12875:6;12871:31;12866:2;12855:9;12851:18;12844:59;12951:9;12943:6;12939:22;12934:2;12923:9;12919:18;12912:50;12979:33;13005:6;12997;12979:33;:::i;:::-;12971:41;12461:557;-1:-1:-1;;;;;;;12461:557:1:o;13023:274::-;13152:3;13190:6;13184:13;13206:53;13252:6;13247:3;13240:4;13232:6;13228:17;13206:53;:::i;:::-;13275:16;;;;;13023:274;-1:-1:-1;;13023:274:1:o;17061:184::-;17113:77;17110:1;17103:88;17210:4;17207:1;17200:15;17234:4;17231:1;17224:15;17250:128;17290:3;17321:1;17317:6;17314:1;17311:13;17308:39;;;17327:18;;:::i;:::-;-1:-1:-1;17363:9:1;;17250:128::o;17731:195::-;17770:3;17801:66;17794:5;17791:77;17788:103;;;17871:18;;:::i;:::-;-1:-1:-1;17918:1:1;17907:13;;17731:195::o;18758:470::-;18937:3;18975:6;18969:13;18991:53;19037:6;19032:3;19025:4;19017:6;19013:17;18991:53;:::i;:::-;19107:13;;19066:16;;;;19129:57;19107:13;19066:16;19163:4;19151:17;;19129:57;:::i;:::-;19202:20;;18758:470;-1:-1:-1;;;;18758:470:1:o;20685:665::-;20966:6;20958;20954:19;20943:9;20936:38;21022:42;21014:6;21010:55;21005:2;20994:9;20990:18;20983:83;21102:3;21097:2;21086:9;21082:18;21075:31;20917:4;21129:46;21170:3;21159:9;21155:19;21147:6;21129:46;:::i;:::-;21225:6;21218:14;21211:22;21206:2;21195:9;21191:18;21184:50;21283:9;21275:6;21271:22;21265:3;21254:9;21250:19;21243:51;21311:33;21337:6;21329;21311:33;:::i;:::-;21303:41;20685:665;-1:-1:-1;;;;;;;;20685:665:1:o;21355:245::-;21434:6;21442;21495:2;21483:9;21474:7;21470:23;21466:32;21463:52;;;21511:1;21508;21501:12;21463:52;-1:-1:-1;;21534:16:1;;21590:2;21575:18;;;21569:25;21534:16;;21569:25;;-1:-1:-1;21355:245:1:o;21605:633::-;21867:34;21862:3;21855:47;21932:34;21927:2;21922:3;21918:12;21911:56;21997:34;21992:2;21987:3;21983:12;21976:56;22062:21;22057:2;22052:3;22048:12;22041:43;21837:3;22113:6;22107:13;22129:61;22183:6;22177:3;22172;22168:13;22163:2;22155:6;22151:15;22129:61;:::i;:::-;22210:16;;;;22228:3;22206:26;;21605:633;-1:-1:-1;;21605:633:1:o;22243:1542::-;22589:6;22581;22577:19;22566:9;22559:38;22540:4;22616:2;22654:3;22649:2;22638:9;22634:18;22627:31;22678:1;22711:6;22705:13;22741:36;22767:9;22741:36;:::i;:::-;22814:6;22808:3;22797:9;22793:19;22786:35;22840:3;22862:1;22894:2;22883:9;22879:18;22911:1;22906:180;;;;23100:1;23095:354;;;;22872:577;;22906:180;22969:66;22958:9;22954:82;22949:2;22938:9;22934:18;22927:110;23072:3;23061:9;23057:19;23050:26;;22906:180;;23095:354;23126:6;23123:1;23116:17;23174:2;23171:1;23161:16;23199:1;23213:180;23227:6;23224:1;23221:13;23213:180;;;23320:14;;23296:17;;;23292:26;;23285:50;23363:16;;;;23242:10;;23213:180;;;23417:17;;23413:26;;;-1:-1:-1;;22872:577:1;;;;;;23494:9;23489:3;23485:19;23480:2;23469:9;23465:18;23458:47;23528:30;23554:3;23546:6;23528:30;:::i;:::-;23514:44;;;23567:46;23609:2;23598:9;23594:18;23586:6;3848:42;3837:54;3825:67;;3771:127;23567:46;3848:42;3837:54;;23664:3;23649:19;;3825:67;23718:9;23710:6;23706:22;23700:3;23689:9;23685:19;23678:51;23746:33;23772:6;23764;23746:33;:::i;:::-;23738:41;22243:1542;-1:-1:-1;;;;;;;;;22243:1542:1:o;24197:271::-;24380:6;24372;24367:3;24354:33;24336:3;24406:16;;24431:13;;;24406:16;24197:271;-1:-1:-1;24197:271:1:o;24828:777::-;25095:6;25087;25083:19;25072:9;25065:38;25139:3;25134:2;25123:9;25119:18;25112:31;25046:4;25166:46;25207:3;25196:9;25192:19;25184:6;25166:46;:::i;:::-;25260:18;25252:6;25248:31;25243:2;25232:9;25228:18;25221:59;25328:9;25320:6;25316:22;25311:2;25300:9;25296:18;25289:50;25363:6;25355;25348:22;25417:6;25409;25404:2;25396:6;25392:15;25379:45;25470:1;25465:2;25456:6;25448;25444:19;25440:28;25433:39;25596:2;25526:66;25521:2;25513:6;25509:15;25505:88;25497:6;25493:101;25489:110;25481:118;;;24828:777;;;;;;;;:::o;26017:320::-;26104:6;26112;26165:2;26153:9;26144:7;26140:23;26136:32;26133:52;;;26181:1;26178;26171:12;26133:52;26213:9;26207:16;26232:31;26257:5;26232:31;:::i;:::-;26327:2;26312:18;;;;26306:25;26282:5;;26306:25;;-1:-1:-1;;;26017:320:1:o;27570:125::-;27610:4;27638:1;27635;27632:8;27629:34;;;27643:18;;:::i;:::-;-1:-1:-1;27680:9:1;;27570:125::o;28473:184::-;28525:77;28522:1;28515:88;28622:4;28619:1;28612:15;28646:4;28643:1;28636:15;28662:120;28702:1;28728;28718:35;;28733:18;;:::i;:::-;-1:-1:-1;28767:9:1;;28662:120::o;28787:112::-;28819:1;28845;28835:35;;28850:18;;:::i;:::-;-1:-1:-1;28884:9:1;;28787:112::o;28904:184::-;28956:77;28953:1;28946:88;29053:4;29050:1;29043:15;29077:4;29074:1;29067:15;29093:512;29287:4;29316:42;29397:2;29389:6;29385:15;29374:9;29367:34;29449:2;29441:6;29437:15;29432:2;29421:9;29417:18;29410:43;;29489:6;29484:2;29473:9;29469:18;29462:34;29532:3;29527:2;29516:9;29512:18;29505:31;29553:46;29594:3;29583:9;29579:19;29571:6;29553:46;:::i;:::-;29545:54;29093:512;-1:-1:-1;;;;;;29093:512:1:o;29610:249::-;29679:6;29732:2;29720:9;29711:7;29707:23;29703:32;29700:52;;;29748:1;29745;29738:12;29700:52;29780:9;29774:16;29799:30;29823:5;29799:30;:::i

Swarm Source

ipfs://842e41883b46b0b1c1a83088be926da6a9cb44623e3047ce273955bf9f3faf81
Loading...
Loading
Loading...
Loading
[ 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.