ETH Price: $3,481.54 (-1.52%)
Gas: 3 Gwei

Token

OmniSneaker (OS)
 

Overview

Max Total Supply

0 OS

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OS
0x253ae13B5e9d0B789e6e0e4335df8C5b48060908
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:
OmniSneaker

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol

pragma solidity >=0.5.0;



interface ILayerZeroUserApplicationConfig {

    // @notice set the configuration of the LayerZero messaging library of the specified version

    // @param _version - messaging library version

    // @param _chainId - the chainId for the pending config change

    // @param _configType - type of configuration. every messaging library has its own convention.

    // @param _config - configuration in the bytes. can encode arbitrary content.

    function setConfig(

        uint16 _version,

        uint16 _chainId,

        uint256 _configType,

        bytes calldata _config

    ) external;



    // @notice set the send() LayerZero messaging library version to _version

    // @param _version - new messaging library version

    function setSendVersion(uint16 _version) external;



    // @notice set the lzReceive() LayerZero messaging library version to _version

    // @param _version - new messaging library version

    function setReceiveVersion(uint16 _version) external;



    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload

    // @param _srcChainId - the chainId of the source chain

    // @param _srcAddress - the contract address of the source contract at the source chain

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress)

        external;

}
// File: contracts/interfaces/ILayerZeroEndpoint.sol

pragma solidity >=0.5.0;




interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {

    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.

    // @param _dstChainId - the destination chain identifier

    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains

    // @param _payload - a custom bytes payload to send to the destination contract

    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address

    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction

    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination

    function send(

        uint16 _dstChainId,

        bytes calldata _destination,

        bytes calldata _payload,

        address payable _refundAddress,

        address _zroPaymentAddress,

        bytes calldata _adapterParams

    ) external payable;



    // @notice used by the messaging library to publish verified payload

    // @param _srcChainId - the source chain identifier

    // @param _srcAddress - the source contract (as bytes) at the source chain

    // @param _dstAddress - the address on destination chain

    // @param _nonce - the unbound message ordering nonce

    // @param _gasLimit - the gas limit for external contract execution

    // @param _payload - verified payload to send to the destination contract

    function receivePayload(

        uint16 _srcChainId,

        bytes calldata _srcAddress,

        address _dstAddress,

        uint64 _nonce,

        uint256 _gasLimit,

        bytes calldata _payload

    ) external;



    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain

    // @param _srcChainId - the source chain identifier

    // @param _srcAddress - the source chain contract address

    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress)

        external

        view

        returns (uint64);



    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM

    // @param _srcAddress - the source chain contract address

    function getOutboundNonce(uint16 _dstChainId, address _srcAddress)

        external

        view

        returns (uint64);



    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery

    // @param _dstChainId - the destination chain identifier

    // @param _userApplication - the user app address on this EVM chain

    // @param _payload - the custom message to send over LayerZero

    // @param _payInZRO - if false, user app pays the protocol fee in native token

    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain

    function estimateFees(

        uint16 _dstChainId,

        address _userApplication,

        bytes calldata _payload,

        bool _payInZRO,

        bytes calldata _adapterParam

    ) external view returns (uint256 nativeFee, uint256 zroFee);



    // @notice get this Endpoint's immutable source identifier

    function getChainId() external view returns (uint16);



    // @notice the interface to retry failed message on this Endpoint destination

    // @param _srcChainId - the source chain identifier

    // @param _srcAddress - the source chain contract address

    // @param _payload - the payload to be retried

    function retryPayload(

        uint16 _srcChainId,

        bytes calldata _srcAddress,

        bytes calldata _payload

    ) external;



    // @notice query if any STORED payload (message blocking) at the endpoint.

    // @param _srcChainId - the source chain identifier

    // @param _srcAddress - the source chain contract address

    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress)

        external

        view

        returns (bool);



    // @notice query if the _libraryAddress is valid for sending msgs.

    // @param _userApplication - the user app address on this EVM chain

    function getSendLibraryAddress(address _userApplication)

        external

        view

        returns (address);



    // @notice query if the _libraryAddress is valid for receiving msgs.

    // @param _userApplication - the user app address on this EVM chain

    function getReceiveLibraryAddress(address _userApplication)

        external

        view

        returns (address);



    // @notice query if the non-reentrancy guard for send() is on

    // @return true if the guard is on. false otherwise

    function isSendingPayload() external view returns (bool);



    // @notice query if the non-reentrancy guard for receive() is on

    // @return true if the guard is on. false otherwise

    function isReceivingPayload() external view returns (bool);



    // @notice get the configuration of the LayerZero messaging library of the specified version

    // @param _version - messaging library version

    // @param _chainId - the chainId for the pending config change

    // @param _userApplication - the contract address of the user application

    // @param _configType - type of configuration. every messaging library has its own convention.

    function getConfig(

        uint16 _version,

        uint16 _chainId,

        address _userApplication,

        uint256 _configType

    ) external view returns (bytes memory);



    // @notice get the send() LayerZero messaging library version

    // @param _userApplication - the contract address of the user application

    function getSendVersion(address _userApplication)

        external

        view

        returns (uint16);



    // @notice get the lzReceive() LayerZero messaging library version

    // @param _userApplication - the contract address of the user application

    function getReceiveVersion(address _userApplication)

        external

        view

        returns (uint16);

}
// File: contracts/interfaces/ILayerZeroReceiver.sol

pragma solidity >=0.5.0;



interface ILayerZeroReceiver {

    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination

    // @param _srcChainId - the source endpoint identifier

    // @param _srcAddress - the source sending contract address from the source chain

    // @param _nonce - the ordered message nonce

    // @param _payload - the signed payload is the UA bytes has encoded to be sent

    function lzReceive(

        uint16 _srcChainId,

        bytes calldata _srcAddress,

        uint64 _nonce,

        bytes calldata _payload

    ) external;

}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/NonblockingReceiver.sol

pragma solidity ^0.8.6;







abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;



    struct FailedMessages {

        uint256 payloadLength;

        bytes32 payloadHash;

    }



    mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages)))

        public failedMessages;

    mapping(uint16 => bytes) public trustedRemoteLookup;



    event MessageFailed(

        uint16 _srcChainId,

        bytes _srcAddress,

        uint64 _nonce,

        bytes _payload

    );



    function lzReceive(

        uint16 _srcChainId,

        bytes memory _srcAddress,

        uint64 _nonce,

        bytes memory _payload

    ) external override {

        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security

        require(

            _srcAddress.length == trustedRemoteLookup[_srcChainId].length &&

                keccak256(_srcAddress) ==

                keccak256(trustedRemoteLookup[_srcChainId]),

            "NonblockingReceiver: invalid source sending contract"

        );



        // try-catch all errors/exceptions

        // having failed messages does not block messages passing

        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {

            // do nothing

        } catch {

            // error / exception

            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(

                _payload.length,

                keccak256(_payload)

            );

            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);

        }

    }



    function onLzReceive(

        uint16 _srcChainId,

        bytes memory _srcAddress,

        uint64 _nonce,

        bytes memory _payload

    ) public {

        // only internal transaction

        require(

            msg.sender == address(this),

            "NonblockingReceiver: caller must be Bridge."

        );



        // handle incoming message

        _LzReceive(_srcChainId, _srcAddress, _nonce, _payload);

    }



    // abstract function

    function _LzReceive(

        uint16 _srcChainId,

        bytes memory _srcAddress,

        uint64 _nonce,

        bytes memory _payload

    ) internal virtual;



    function _lzSend(

        uint16 _dstChainId,

        bytes memory _payload,

        address payable _refundAddress,

        address _zroPaymentAddress,

        bytes memory _txParam

    ) internal {

        endpoint.send{value: msg.value}(

            _dstChainId,

            trustedRemoteLookup[_dstChainId],

            _payload,

            _refundAddress,

            _zroPaymentAddress,

            _txParam

        );

    }



    function retryMessage(

        uint16 _srcChainId,

        bytes memory _srcAddress,

        uint64 _nonce,

        bytes calldata _payload

    ) external payable {

        // assert there is message to retry

        FailedMessages storage failedMsg = failedMessages[_srcChainId][

            _srcAddress

        ][_nonce];

        require(

            failedMsg.payloadHash != bytes32(0),

            "NonblockingReceiver: no stored message"

        );

        require(

            _payload.length == failedMsg.payloadLength &&

                keccak256(_payload) == failedMsg.payloadHash,

            "LayerZero: invalid payload"

        );

        // clear the stored message

        failedMsg.payloadLength = 0;

        failedMsg.payloadHash = bytes32(0);

        // execute the message. revert if it fails again

        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);

    }



    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote)

        external

        onlyOwner

    {

        trustedRemoteLookup[_chainId] = _trustedRemote;

    }

}
// File: contracts/OmniSneaker_ETH.sol

pragma solidity ^0.8.7;













//   ____  __  ____   ___________ _   ___________    __ __ __________  _____

//  / __ \/  |/  / | / /  _/ ___// | / / ____/   |  / //_// ____/ __ \/ ___/

// / / / / /|_/ /  |/ // / \__ \/  |/ / __/ / /| | / ,<  / __/ / /_/ /\__ \ 

/// /_/ / /  / / /|  // / ___/ / /|  / /___/ ___ |/ /| |/ /___/ _, _/___/ / 

//\____/_/  /_/_/ |_/___//____/_/ |_/_____/_/  |_/_/ |_/_____/_/ |_|/____/  

//                                                                    



contract OmniSneaker is Ownable, ERC721, NonblockingReceiver {

    address public _owner;

    string private baseURI;

    uint256 nextTokenId = 0;

    uint256 MAX_MINT = 430;



    uint256 gasForDestinationLzReceive = 350000;



    constructor(string memory baseURI_, address _layerZeroEndpoint)

        ERC721("OmniSneaker", "OS")

    {

        _owner = msg.sender;

        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);

        baseURI = baseURI_;

    }



    /**

    * pre-mint for community giveaways

    */

    function devMint(uint8 numTokens) public onlyOwner {

        require(nextTokenId + numTokens <= MAX_MINT, "Mint exceeds supply");

        

        for (uint256 i = 0; i < numTokens; i++) {

            _safeMint(msg.sender, ++nextTokenId);

        }

    }



    // 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, "GG: Max 2 NFTs per transaction");

        require(

            nextTokenId + numTokens <= MAX_MINT,

            "GG: Mint exceeds supply"

        );

        _safeMint(msg.sender, ++nextTokenId);

        if (numTokens == 2) {

            _safeMint(msg.sender, ++nextTokenId);

        }

    }



    // This function transfers the nft from your address on the

    // source chain to the same address on the destination chain

    function traverseChains(uint16 _chainId, uint256 tokenId) public payable {

        require(

            msg.sender == ownerOf(tokenId),

            "You must own the token to traverse"

        );

        require(

            trustedRemoteLookup[_chainId].length > 0,

            "This chain is currently unavailable for travel"

        );



        // burn NFT, eliminating it from circulation on src chain

        _burn(tokenId);



        // abi.encode() the payload with the values to send

        bytes memory payload = abi.encode(msg.sender, tokenId);



        // encode adapterParams to specify more gas for the destination

        uint16 version = 1;

        bytes memory adapterParams = abi.encodePacked(

            version,

            gasForDestinationLzReceive

        );



        // get the fees we need to pay to LayerZero + Relayer to cover message delivery

        // you will be refunded for extra gas paid

        (uint256 messageFee, ) = endpoint.estimateFees(

            _chainId,

            address(this),

            payload,

            false,

            adapterParams

        );



        require(

            msg.value >= messageFee,

            "GG: msg.value not enough to cover messageFee. Send gas for message fees"

        );



        endpoint.send{value: msg.value}(

            _chainId, // destination chainId

            trustedRemoteLookup[_chainId], // destination address of nft contract

            payload, // abi.encoded()'ed bytes

            payable(msg.sender), // refund address

            address(0x0), // 'zroPaymentAddress' unused for this

            adapterParams // txParameters

        );

    }



    function setBaseURI(string memory URI) external onlyOwner {

        baseURI = URI;

    }



    function donate() external payable {

        // thank you

    }



    // This allows the devs to receive kind donations

    function withdraw(uint256 amt) external onlyOwner {

        (bool sent, ) = payable(_owner).call{value: amt}("");

        require(sent, "GG: Failed to withdraw Ether");

    }



    // just in case this fixed variable limits us from future integrations

    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {

        gasForDestinationLzReceive = newVal;

    }



    // ------------------

    // Internal Functions

    // ------------------



    function _LzReceive(

        uint16 _srcChainId,

        bytes memory _srcAddress,

        uint64 _nonce,

        bytes memory _payload

    ) internal override {

        // decode

        (address toAddr, uint256 tokenId) = abi.decode(

            _payload,

            (address, uint256)

        );



        // mint the tokens back into existence on destination chain

        _safeMint(toAddr, tokenId);

    }



    function _baseURI() internal view override returns (string memory) {

        return baseURI;

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c556101ae600d5562055730600e553480156200002357600080fd5b5060405162005537380380620055378339818101604052810190620000499190620003bd565b6040518060400160405280600b81526020017f4f6d6e69536e65616b65720000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f53000000000000000000000000000000000000000000000000000000000000815250620000d5620000c9620001ac60201b60201c565b620001b460201b60201c565b8160019080519060200190620000ed92919062000278565b5080600290805190602001906200010692919062000278565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001a392919062000278565b505050620005f5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028690620004ec565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b60006200033f62000339846200044c565b62000423565b9050828152602081018484840111156200035e576200035d620005bb565b5b6200036b848285620004b6565b509392505050565b6000815190506200038481620005db565b92915050565b600082601f830112620003a257620003a1620005b6565b5b8151620003b484826020860162000328565b91505092915050565b60008060408385031215620003d757620003d6620005c5565b5b600083015167ffffffffffffffff811115620003f857620003f7620005c0565b5b62000406858286016200038a565b9250506020620004198582860162000373565b9150509250929050565b60006200042f62000442565b90506200043d828262000522565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046a576200046962000587565b5b6200047582620005ca565b9050602081019050919050565b60006200048f8262000496565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004d6578082015181840152602081019050620004b9565b83811115620004e6576000848401525b50505050565b600060028204905060018216806200050557607f821691505b602082108114156200051c576200051b62000558565b5b50919050565b6200052d82620005ca565b810181811067ffffffffffffffff821117156200054f576200054e62000587565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005e68162000482565b8114620005f257600080fd5b50565b614f3280620006056000396000f3fe6080604052600436106101cc5760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610657578063eb8d72b714610694578063ed88c68e146106bd578063f2fde38b146106c7576101cc565b8063b88d4fde146105b9578063c87b56dd146105e2578063cf89fa031461061f578063d1deba1f1461063b576101cc565b8063943fb872116100d1578063943fb8721461051157806395d89b411461053a578063a22cb46514610565578063b2bdfa7b1461058e576101cc565b80637533d7881461046b5780638da5cb5b146104a85780638ee74912146104d3576101cc565b80632e1a7d4d1161016f5780636352211e1161013e5780636352211e146103be5780636ecd2306146103fb57806370a0823114610417578063715018a614610454576101cc565b80632e1a7d4d1461031a5780633497d1651461034357806342842e0e1461036c57806355f804b314610395576101cc565b8063081812fc116101ab578063081812fc14610262578063095ea7b31461029f5780631c37a822146102c857806323b872dd146102f1576101cc565b80621d3567146101d157806301ffc9a7146101fa57806306fdde0314610237575b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f3919061338f565b6106f0565b005b34801561020657600080fd5b50610221600480360381019061021c919061314c565b610932565b60405161022e9190613cd4565b60405180910390f35b34801561024357600080fd5b5061024c610a14565b6040516102599190613d11565b60405180910390f35b34801561026e57600080fd5b506102896004803603810190610284919061346e565b610aa6565b6040516102969190613c44565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c1919061310c565b610b2b565b005b3480156102d457600080fd5b506102ef60048036038101906102ea919061338f565b610c43565b005b3480156102fd57600080fd5b5061031860048036038101906103139190612ff6565b610cc3565b005b34801561032657600080fd5b50610341600480360381019061033c919061346e565b610d23565b005b34801561034f57600080fd5b5061036a600480360381019061036591906134db565b610e71565b005b34801561037857600080fd5b50610393600480360381019061038e9190612ff6565b610f85565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906131a6565b610fa5565b005b3480156103ca57600080fd5b506103e560048036038101906103e0919061346e565b61103b565b6040516103f29190613c44565b60405180910390f35b610415600480360381019061041091906134db565b6110ed565b005b34801561042357600080fd5b5061043e60048036038101906104399190612f49565b6111d4565b60405161044b9190614212565b60405180910390f35b34801561046057600080fd5b5061046961128c565b005b34801561047757600080fd5b50610492600480360381019061048d91906131ef565b611314565b60405161049f9190613cef565b60405180910390f35b3480156104b457600080fd5b506104bd6113b4565b6040516104ca9190613c44565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f5919061327c565b6113dd565b60405161050892919061422d565b60405180910390f35b34801561051d57600080fd5b506105386004803603810190610533919061346e565b611431565b005b34801561054657600080fd5b5061054f6114b7565b60405161055c9190613d11565b60405180910390f35b34801561057157600080fd5b5061058c600480360381019061058791906130cc565b611549565b005b34801561059a57600080fd5b506105a361155f565b6040516105b09190613c44565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190613049565b611585565b005b3480156105ee57600080fd5b506106096004803603810190610604919061346e565b6115e7565b6040516106169190613d11565b60405180910390f35b6106396004803603810190610634919061342e565b61168e565b005b610655600480360381019061065091906132eb565b611981565b005b34801561066357600080fd5b5061067e60048036038101906106799190612fb6565b611b21565b60405161068b9190613cd4565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061321c565b611bb5565b005b6106c5611c61565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612f49565b611c63565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461074a57600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610770906144fc565b905083511480156107b65750600960008561ffff1661ffff1681526020019081526020016000206040516107a49190613bc8565b60405180910390208380519060200120145b6107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90613fb3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108349493929190614149565b600060405180830381600087803b15801561084e57600080fd5b505af192505050801561085f575060015b61092b576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108a99190613bb1565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161091e9493929190614149565b60405180910390a161092c565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0d5750610a0c82611d5b565b5b9050919050565b606060018054610a23906144fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f906144fc565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b5050505050905090565b6000610ab182611dc5565b610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790613f73565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b368261103b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90613ff3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc6611e31565b73ffffffffffffffffffffffffffffffffffffffff161480610bf55750610bf481610bef611e31565b611b21565b5b610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90613eb3565b60405180910390fd5b610c3e8383611e39565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613f13565b60405180910390fd5b610cbd84848484611ef2565b50505050565b610cd4610cce611e31565b82611f1f565b610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90614013565b60405180910390fd5b610d1e838383611ffd565b505050565b610d2b611e31565b73ffffffffffffffffffffffffffffffffffffffff16610d496113b4565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690613f93565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610de790613c03565b60006040518083038185875af1925050503d8060008114610e24576040519150601f19603f3d011682016040523d82523d6000602084013e610e29565b606091505b5050905080610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614053565b60405180910390fd5b5050565b610e79611e31565b73ffffffffffffffffffffffffffffffffffffffff16610e976113b4565b73ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613f93565b60405180910390fd5b600d548160ff16600c54610f019190614340565b1115610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613e73565b60405180910390fd5b60005b8160ff16811015610f8157610f6e33600c60008154610f639061455f565b919050819055612264565b8080610f799061455f565b915050610f45565b5050565b610fa083838360405180602001604052806000815250611585565b505050565b610fad611e31565b73ffffffffffffffffffffffffffffffffffffffff16610fcb6113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613f93565b60405180910390fd5b80600b9080519060200190611037929190612c18565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90613ef3565b60405180910390fd5b80915050919050565b60038160ff1610611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90613f33565b60405180910390fd5b600d548160ff16600c546111479190614340565b1115611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614073565b60405180910390fd5b6111a633600c6000815461119b9061455f565b919050819055612264565b60028160ff1614156111d1576111d033600c600081546111c59061455f565b919050819055612264565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90613ed3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611294611e31565b73ffffffffffffffffffffffffffffffffffffffff166112b26113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613f93565b60405180910390fd5b6113126000612282565b565b60096020528060005260406000206000915090508054611333906144fc565b80601f016020809104026020016040519081016040528092919081815260200182805461135f906144fc565b80156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611439611e31565b73ffffffffffffffffffffffffffffffffffffffff166114576113b4565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613f93565b60405180910390fd5b80600e8190555050565b6060600280546114c6906144fc565b80601f01602080910402602001604051908101604052809291908181526020018280546114f2906144fc565b801561153f5780601f106115145761010080835404028352916020019161153f565b820191906000526020600020905b81548152906001019060200180831161152257829003601f168201915b5050505050905090565b61155b611554611e31565b8383612346565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611596611590611e31565b83611f1f565b6115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614013565b60405180910390fd5b6115e1848484846124b3565b50505050565b60606115f282611dc5565b611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613fd3565b60405180910390fd5b600061163b61250f565b9050600081511161165b5760405180602001604052806000815250611686565b80611665846125a1565b604051602001611676929190613bdf565b6040516020818303038152906040525b915050919050565b6116978161103b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90613e53565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461172c906144fc565b90501161176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613e13565b60405180910390fd5b61177781612702565b6000338260405160200161178c929190613cab565b6040516020818303038152906040529050600060019050600081600e546040516020016117ba929190613c18565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b8152600401611831959493929190614093565b604080518083038186803b15801561184857600080fd5b505afa15801561185c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611880919061349b565b509050803410156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613d33565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016119479695949392919061419c565b6000604051808303818588803b15801561196057600080fd5b505af1158015611974573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516119ac9190613bb1565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890614033565b60405180910390fd5b806000015483839050148015611a51575080600101548383604051611a47929190613b98565b6040518091039020145b611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790613e33565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611ae79594939291906140f4565b600060405180830381600087803b158015611b0157600080fd5b505af1158015611b15573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bbd611e31565b73ffffffffffffffffffffffffffffffffffffffff16611bdb6113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890613f93565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611c5b929190612c9e565b50505050565b565b611c6b611e31565b73ffffffffffffffffffffffffffffffffffffffff16611c896113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690613f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613d73565b60405180910390fd5b611d5881612282565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eac8361103b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611f099190612f76565b91509150611f178282612264565b505050505050565b6000611f2a82611dc5565b611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613e93565b60405180910390fd5b6000611f748361103b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fe357508373ffffffffffffffffffffffffffffffffffffffff16611fcb84610aa6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ff45750611ff38185611b21565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201d8261103b565b73ffffffffffffffffffffffffffffffffffffffff1614612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613d93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613dd3565b60405180910390fd5b6120ee83838361281f565b6120f9600082611e39565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214991906143c7565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a09190614340565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461225f838383612824565b505050565b61227e828260405180602001604052806000815250612829565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac90613df3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124a69190613cd4565b60405180910390a3505050565b6124be848484611ffd565b6124ca84848484612884565b612509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250090613d53565b60405180910390fd5b50505050565b6060600b805461251e906144fc565b80601f016020809104026020016040519081016040528092919081815260200182805461254a906144fc565b80156125975780601f1061256c57610100808354040283529160200191612597565b820191906000526020600020905b81548152906001019060200180831161257a57829003601f168201915b5050505050905090565b606060008214156125e9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fd565b600082905060005b6000821461261b5780806126049061455f565b915050600a826126149190614396565b91506125f1565b60008167ffffffffffffffff811115612637576126366146b1565b5b6040519080825280601f01601f1916602001820160405280156126695781602001600182028036833780820191505090505b5090505b600085146126f65760018261268291906143c7565b9150600a8561269191906145c4565b603061269d9190614340565b60f81b8183815181106126b3576126b2614682565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ef9190614396565b945061266d565b8093505050505b919050565b600061270d8261103b565b905061271b8160008461281f565b612726600083611e39565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277691906143c7565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281b81600084612824565b5050565b505050565b505050565b6128338383612a1b565b6128406000848484612884565b61287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690613d53565b60405180910390fd5b505050565b60006128a58473ffffffffffffffffffffffffffffffffffffffff16612bf5565b15612a0e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ce611e31565b8786866040518563ffffffff1660e01b81526004016128f09493929190613c5f565b602060405180830381600087803b15801561290a57600080fd5b505af192505050801561293b57506040513d601f19601f820116820180604052508101906129389190613179565b60015b6129be573d806000811461296b576040519150601f19603f3d011682016040523d82523d6000602084013e612970565b606091505b506000815114156129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90613d53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a13565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8290613f53565b60405180910390fd5b612a9481611dc5565b15612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb90613db3565b60405180910390fd5b612ae06000838361281f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b309190614340565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bf160008383612824565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612c24906144fc565b90600052602060002090601f016020900481019282612c465760008555612c8d565b82601f10612c5f57805160ff1916838001178555612c8d565b82800160010185558215612c8d579182015b82811115612c8c578251825591602001919060010190612c71565b5b509050612c9a9190612d24565b5090565b828054612caa906144fc565b90600052602060002090601f016020900481019282612ccc5760008555612d13565b82601f10612ce557803560ff1916838001178555612d13565b82800160010185558215612d13579182015b82811115612d12578235825591602001919060010190612cf7565b5b509050612d209190612d24565b5090565b5b80821115612d3d576000816000905550600101612d25565b5090565b6000612d54612d4f8461427b565b614256565b905082815260208101848484011115612d7057612d6f6146ef565b5b612d7b8482856144ba565b509392505050565b6000612d96612d91846142ac565b614256565b905082815260208101848484011115612db257612db16146ef565b5b612dbd8482856144ba565b509392505050565b600081359050612dd481614e44565b92915050565b600081519050612de981614e5b565b92915050565b600081359050612dfe81614e72565b92915050565b600081359050612e1381614e89565b92915050565b600081519050612e2881614e89565b92915050565b60008083601f840112612e4457612e436146e5565b5b8235905067ffffffffffffffff811115612e6157612e606146e0565b5b602083019150836001820283011115612e7d57612e7c6146ea565b5b9250929050565b600082601f830112612e9957612e986146e5565b5b8135612ea9848260208601612d41565b91505092915050565b600082601f830112612ec757612ec66146e5565b5b8135612ed7848260208601612d83565b91505092915050565b600081359050612eef81614ea0565b92915050565b600081359050612f0481614eb7565b92915050565b600081519050612f1981614eb7565b92915050565b600081359050612f2e81614ece565b92915050565b600081359050612f4381614ee5565b92915050565b600060208284031215612f5f57612f5e6146f9565b5b6000612f6d84828501612dc5565b91505092915050565b60008060408385031215612f8d57612f8c6146f9565b5b6000612f9b85828601612dda565b9250506020612fac85828601612f0a565b9150509250929050565b60008060408385031215612fcd57612fcc6146f9565b5b6000612fdb85828601612dc5565b9250506020612fec85828601612dc5565b9150509250929050565b60008060006060848603121561300f5761300e6146f9565b5b600061301d86828701612dc5565b935050602061302e86828701612dc5565b925050604061303f86828701612ef5565b9150509250925092565b60008060008060808587031215613063576130626146f9565b5b600061307187828801612dc5565b945050602061308287828801612dc5565b935050604061309387828801612ef5565b925050606085013567ffffffffffffffff8111156130b4576130b36146f4565b5b6130c087828801612e84565b91505092959194509250565b600080604083850312156130e3576130e26146f9565b5b60006130f185828601612dc5565b925050602061310285828601612def565b9150509250929050565b60008060408385031215613123576131226146f9565b5b600061313185828601612dc5565b925050602061314285828601612ef5565b9150509250929050565b600060208284031215613162576131616146f9565b5b600061317084828501612e04565b91505092915050565b60006020828403121561318f5761318e6146f9565b5b600061319d84828501612e19565b91505092915050565b6000602082840312156131bc576131bb6146f9565b5b600082013567ffffffffffffffff8111156131da576131d96146f4565b5b6131e684828501612eb2565b91505092915050565b600060208284031215613205576132046146f9565b5b600061321384828501612ee0565b91505092915050565b600080600060408486031215613235576132346146f9565b5b600061324386828701612ee0565b935050602084013567ffffffffffffffff811115613264576132636146f4565b5b61327086828701612e2e565b92509250509250925092565b600080600060608486031215613295576132946146f9565b5b60006132a386828701612ee0565b935050602084013567ffffffffffffffff8111156132c4576132c36146f4565b5b6132d086828701612e84565b92505060406132e186828701612ef5565b9150509250925092565b600080600080600060808688031215613307576133066146f9565b5b600061331588828901612ee0565b955050602086013567ffffffffffffffff811115613336576133356146f4565b5b61334288828901612e84565b945050604061335388828901612f1f565b935050606086013567ffffffffffffffff811115613374576133736146f4565b5b61338088828901612e2e565b92509250509295509295909350565b600080600080608085870312156133a9576133a86146f9565b5b60006133b787828801612ee0565b945050602085013567ffffffffffffffff8111156133d8576133d76146f4565b5b6133e487828801612e84565b93505060406133f587828801612f1f565b925050606085013567ffffffffffffffff811115613416576134156146f4565b5b61342287828801612e84565b91505092959194509250565b60008060408385031215613445576134446146f9565b5b600061345385828601612ee0565b925050602061346485828601612ef5565b9150509250929050565b600060208284031215613484576134836146f9565b5b600061349284828501612ef5565b91505092915050565b600080604083850312156134b2576134b16146f9565b5b60006134c085828601612f0a565b92505060206134d185828601612f0a565b9150509250929050565b6000602082840312156134f1576134f06146f9565b5b60006134ff84828501612f34565b91505092915050565b6135118161440d565b82525050565b613520816143fb565b82525050565b61352f8161441f565b82525050565b61353e8161442b565b82525050565b60006135508385614308565b935061355d8385846144ba565b613566836146fe565b840190509392505050565b600061357d8385614319565b935061358a8385846144ba565b82840190509392505050565b60006135a1826142f2565b6135ab8185614308565b93506135bb8185602086016144c9565b6135c4816146fe565b840191505092915050565b60006135da826142f2565b6135e48185614319565b93506135f48185602086016144c9565b80840191505092915050565b6000815461360d816144fc565b6136178186614308565b94506001821660008114613632576001811461364457613677565b60ff1983168652602086019350613677565b61364d856142dd565b60005b8381101561366f57815481890152600182019150602081019050613650565b808801955050505b50505092915050565b6000815461368d816144fc565b6136978186614319565b945060018216600081146136b257600181146136c3576136f6565b60ff198316865281860193506136f6565b6136cc856142dd565b60005b838110156136ee578154818901526001820191506020810190506136cf565b838801955050505b50505092915050565b600061370a826142fd565b6137148185614324565b93506137248185602086016144c9565b61372d816146fe565b840191505092915050565b6000613743826142fd565b61374d8185614335565b935061375d8185602086016144c9565b80840191505092915050565b6000613776604783614324565b91506137818261471c565b606082019050919050565b6000613799603283614324565b91506137a482614791565b604082019050919050565b60006137bc602683614324565b91506137c7826147e0565b604082019050919050565b60006137df602583614324565b91506137ea8261482f565b604082019050919050565b6000613802601c83614324565b915061380d8261487e565b602082019050919050565b6000613825602483614324565b9150613830826148a7565b604082019050919050565b6000613848601983614324565b9150613853826148f6565b602082019050919050565b600061386b602e83614324565b91506138768261491f565b604082019050919050565b600061388e601a83614324565b91506138998261496e565b602082019050919050565b60006138b1602283614324565b91506138bc82614997565b604082019050919050565b60006138d4601383614324565b91506138df826149e6565b602082019050919050565b60006138f7602c83614324565b915061390282614a0f565b604082019050919050565b600061391a603883614324565b915061392582614a5e565b604082019050919050565b600061393d602a83614324565b915061394882614aad565b604082019050919050565b6000613960602983614324565b915061396b82614afc565b604082019050919050565b6000613983602b83614324565b915061398e82614b4b565b604082019050919050565b60006139a6601e83614324565b91506139b182614b9a565b602082019050919050565b60006139c9602083614324565b91506139d482614bc3565b602082019050919050565b60006139ec602c83614324565b91506139f782614bec565b604082019050919050565b6000613a0f602083614324565b9150613a1a82614c3b565b602082019050919050565b6000613a32603483614324565b9150613a3d82614c64565b604082019050919050565b6000613a55602f83614324565b9150613a6082614cb3565b604082019050919050565b6000613a78602183614324565b9150613a8382614d02565b604082019050919050565b6000613a9b600083614319565b9150613aa682614d51565b600082019050919050565b6000613abe603183614324565b9150613ac982614d54565b604082019050919050565b6000613ae1602683614324565b9150613aec82614da3565b604082019050919050565b6000613b04601c83614324565b9150613b0f82614df2565b602082019050919050565b6000613b27601783614324565b9150613b3282614e1b565b602082019050919050565b613b4681614461565b82525050565b613b5d613b5882614461565b6145a8565b82525050565b613b6c8161448f565b82525050565b613b83613b7e8261448f565b6145ba565b82525050565b613b9281614499565b82525050565b6000613ba5828486613571565b91508190509392505050565b6000613bbd82846135cf565b915081905092915050565b6000613bd48284613680565b915081905092915050565b6000613beb8285613738565b9150613bf78284613738565b91508190509392505050565b6000613c0e82613a8e565b9150819050919050565b6000613c248285613b4c565b600282019150613c348284613b72565b6020820191508190509392505050565b6000602082019050613c596000830184613517565b92915050565b6000608082019050613c746000830187613517565b613c816020830186613517565b613c8e6040830185613b63565b8181036060830152613ca08184613596565b905095945050505050565b6000604082019050613cc06000830185613517565b613ccd6020830184613b63565b9392505050565b6000602082019050613ce96000830184613526565b92915050565b60006020820190508181036000830152613d098184613596565b905092915050565b60006020820190508181036000830152613d2b81846136ff565b905092915050565b60006020820190508181036000830152613d4c81613769565b9050919050565b60006020820190508181036000830152613d6c8161378c565b9050919050565b60006020820190508181036000830152613d8c816137af565b9050919050565b60006020820190508181036000830152613dac816137d2565b9050919050565b60006020820190508181036000830152613dcc816137f5565b9050919050565b60006020820190508181036000830152613dec81613818565b9050919050565b60006020820190508181036000830152613e0c8161383b565b9050919050565b60006020820190508181036000830152613e2c8161385e565b9050919050565b60006020820190508181036000830152613e4c81613881565b9050919050565b60006020820190508181036000830152613e6c816138a4565b9050919050565b60006020820190508181036000830152613e8c816138c7565b9050919050565b60006020820190508181036000830152613eac816138ea565b9050919050565b60006020820190508181036000830152613ecc8161390d565b9050919050565b60006020820190508181036000830152613eec81613930565b9050919050565b60006020820190508181036000830152613f0c81613953565b9050919050565b60006020820190508181036000830152613f2c81613976565b9050919050565b60006020820190508181036000830152613f4c81613999565b9050919050565b60006020820190508181036000830152613f6c816139bc565b9050919050565b60006020820190508181036000830152613f8c816139df565b9050919050565b60006020820190508181036000830152613fac81613a02565b9050919050565b60006020820190508181036000830152613fcc81613a25565b9050919050565b60006020820190508181036000830152613fec81613a48565b9050919050565b6000602082019050818103600083015261400c81613a6b565b9050919050565b6000602082019050818103600083015261402c81613ab1565b9050919050565b6000602082019050818103600083015261404c81613ad4565b9050919050565b6000602082019050818103600083015261406c81613af7565b9050919050565b6000602082019050818103600083015261408c81613b1a565b9050919050565b600060a0820190506140a86000830188613b3d565b6140b56020830187613517565b81810360408301526140c78186613596565b90506140d66060830185613526565b81810360808301526140e88184613596565b90509695505050505050565b60006080820190506141096000830188613b3d565b818103602083015261411b8187613596565b905061412a6040830186613b89565b818103606083015261413d818486613544565b90509695505050505050565b600060808201905061415e6000830187613b3d565b81810360208301526141708186613596565b905061417f6040830185613b89565b81810360608301526141918184613596565b905095945050505050565b600060c0820190506141b16000830189613b3d565b81810360208301526141c38188613600565b905081810360408301526141d78187613596565b90506141e66060830186613508565b6141f36080830185613517565b81810360a08301526142058184613596565b9050979650505050505050565b60006020820190506142276000830184613b63565b92915050565b60006040820190506142426000830185613b63565b61424f6020830184613535565b9392505050565b6000614260614271565b905061426c828261452e565b919050565b6000604051905090565b600067ffffffffffffffff821115614296576142956146b1565b5b61429f826146fe565b9050602081019050919050565b600067ffffffffffffffff8211156142c7576142c66146b1565b5b6142d0826146fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061434b8261448f565b91506143568361448f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561438b5761438a6145f5565b5b828201905092915050565b60006143a18261448f565b91506143ac8361448f565b9250826143bc576143bb614624565b5b828204905092915050565b60006143d28261448f565b91506143dd8361448f565b9250828210156143f0576143ef6145f5565b5b828203905092915050565b60006144068261446f565b9050919050565b60006144188261446f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144e75780820151818401526020810190506144cc565b838111156144f6576000848401525b50505050565b6000600282049050600182168061451457607f821691505b6020821081141561452857614527614653565b5b50919050565b614537826146fe565b810181811067ffffffffffffffff82111715614556576145556146b1565b5b80604052505050565b600061456a8261448f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561459d5761459c6145f5565b5b600182019050919050565b60006145b38261470f565b9050919050565b6000819050919050565b60006145cf8261448f565b91506145da8361448f565b9250826145ea576145e9614624565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f47473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560008201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f47473a204d61782032204e46547320706572207472616e73616374696f6e0000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f47473a204661696c656420746f20776974686472617720457468657200000000600082015250565b7f47473a204d696e74206578636565647320737570706c79000000000000000000600082015250565b614e4d816143fb565b8114614e5857600080fd5b50565b614e648161440d565b8114614e6f57600080fd5b50565b614e7b8161441f565b8114614e8657600080fd5b50565b614e9281614435565b8114614e9d57600080fd5b50565b614ea981614461565b8114614eb457600080fd5b50565b614ec08161448f565b8114614ecb57600080fd5b50565b614ed781614499565b8114614ee257600080fd5b50565b614eee816144ad565b8114614ef957600080fd5b5056fea2646970667358221220d48dafb31a3887bbdf8eb5b4964de7157d952b796737c4fc4eb0a8f45646542a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d50426d356254624545454356334d4e32446865627a686f6f37426f6156344576683368354b5a70583471726a0000000000000000000000

Deployed Bytecode

0x6080604052600436106101cc5760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610657578063eb8d72b714610694578063ed88c68e146106bd578063f2fde38b146106c7576101cc565b8063b88d4fde146105b9578063c87b56dd146105e2578063cf89fa031461061f578063d1deba1f1461063b576101cc565b8063943fb872116100d1578063943fb8721461051157806395d89b411461053a578063a22cb46514610565578063b2bdfa7b1461058e576101cc565b80637533d7881461046b5780638da5cb5b146104a85780638ee74912146104d3576101cc565b80632e1a7d4d1161016f5780636352211e1161013e5780636352211e146103be5780636ecd2306146103fb57806370a0823114610417578063715018a614610454576101cc565b80632e1a7d4d1461031a5780633497d1651461034357806342842e0e1461036c57806355f804b314610395576101cc565b8063081812fc116101ab578063081812fc14610262578063095ea7b31461029f5780631c37a822146102c857806323b872dd146102f1576101cc565b80621d3567146101d157806301ffc9a7146101fa57806306fdde0314610237575b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f3919061338f565b6106f0565b005b34801561020657600080fd5b50610221600480360381019061021c919061314c565b610932565b60405161022e9190613cd4565b60405180910390f35b34801561024357600080fd5b5061024c610a14565b6040516102599190613d11565b60405180910390f35b34801561026e57600080fd5b506102896004803603810190610284919061346e565b610aa6565b6040516102969190613c44565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c1919061310c565b610b2b565b005b3480156102d457600080fd5b506102ef60048036038101906102ea919061338f565b610c43565b005b3480156102fd57600080fd5b5061031860048036038101906103139190612ff6565b610cc3565b005b34801561032657600080fd5b50610341600480360381019061033c919061346e565b610d23565b005b34801561034f57600080fd5b5061036a600480360381019061036591906134db565b610e71565b005b34801561037857600080fd5b50610393600480360381019061038e9190612ff6565b610f85565b005b3480156103a157600080fd5b506103bc60048036038101906103b791906131a6565b610fa5565b005b3480156103ca57600080fd5b506103e560048036038101906103e0919061346e565b61103b565b6040516103f29190613c44565b60405180910390f35b610415600480360381019061041091906134db565b6110ed565b005b34801561042357600080fd5b5061043e60048036038101906104399190612f49565b6111d4565b60405161044b9190614212565b60405180910390f35b34801561046057600080fd5b5061046961128c565b005b34801561047757600080fd5b50610492600480360381019061048d91906131ef565b611314565b60405161049f9190613cef565b60405180910390f35b3480156104b457600080fd5b506104bd6113b4565b6040516104ca9190613c44565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f5919061327c565b6113dd565b60405161050892919061422d565b60405180910390f35b34801561051d57600080fd5b506105386004803603810190610533919061346e565b611431565b005b34801561054657600080fd5b5061054f6114b7565b60405161055c9190613d11565b60405180910390f35b34801561057157600080fd5b5061058c600480360381019061058791906130cc565b611549565b005b34801561059a57600080fd5b506105a361155f565b6040516105b09190613c44565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190613049565b611585565b005b3480156105ee57600080fd5b506106096004803603810190610604919061346e565b6115e7565b6040516106169190613d11565b60405180910390f35b6106396004803603810190610634919061342e565b61168e565b005b610655600480360381019061065091906132eb565b611981565b005b34801561066357600080fd5b5061067e60048036038101906106799190612fb6565b611b21565b60405161068b9190613cd4565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061321c565b611bb5565b005b6106c5611c61565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612f49565b611c63565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461074a57600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610770906144fc565b905083511480156107b65750600960008561ffff1661ffff1681526020019081526020016000206040516107a49190613bc8565b60405180910390208380519060200120145b6107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90613fb3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108349493929190614149565b600060405180830381600087803b15801561084e57600080fd5b505af192505050801561085f575060015b61092b576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108a99190613bb1565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161091e9493929190614149565b60405180910390a161092c565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0d5750610a0c82611d5b565b5b9050919050565b606060018054610a23906144fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f906144fc565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b5050505050905090565b6000610ab182611dc5565b610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790613f73565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b368261103b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90613ff3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc6611e31565b73ffffffffffffffffffffffffffffffffffffffff161480610bf55750610bf481610bef611e31565b611b21565b5b610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90613eb3565b60405180910390fd5b610c3e8383611e39565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613f13565b60405180910390fd5b610cbd84848484611ef2565b50505050565b610cd4610cce611e31565b82611f1f565b610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90614013565b60405180910390fd5b610d1e838383611ffd565b505050565b610d2b611e31565b73ffffffffffffffffffffffffffffffffffffffff16610d496113b4565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690613f93565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610de790613c03565b60006040518083038185875af1925050503d8060008114610e24576040519150601f19603f3d011682016040523d82523d6000602084013e610e29565b606091505b5050905080610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490614053565b60405180910390fd5b5050565b610e79611e31565b73ffffffffffffffffffffffffffffffffffffffff16610e976113b4565b73ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613f93565b60405180910390fd5b600d548160ff16600c54610f019190614340565b1115610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613e73565b60405180910390fd5b60005b8160ff16811015610f8157610f6e33600c60008154610f639061455f565b919050819055612264565b8080610f799061455f565b915050610f45565b5050565b610fa083838360405180602001604052806000815250611585565b505050565b610fad611e31565b73ffffffffffffffffffffffffffffffffffffffff16610fcb6113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613f93565b60405180910390fd5b80600b9080519060200190611037929190612c18565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90613ef3565b60405180910390fd5b80915050919050565b60038160ff1610611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90613f33565b60405180910390fd5b600d548160ff16600c546111479190614340565b1115611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614073565b60405180910390fd5b6111a633600c6000815461119b9061455f565b919050819055612264565b60028160ff1614156111d1576111d033600c600081546111c59061455f565b919050819055612264565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90613ed3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611294611e31565b73ffffffffffffffffffffffffffffffffffffffff166112b26113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613f93565b60405180910390fd5b6113126000612282565b565b60096020528060005260406000206000915090508054611333906144fc565b80601f016020809104026020016040519081016040528092919081815260200182805461135f906144fc565b80156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611439611e31565b73ffffffffffffffffffffffffffffffffffffffff166114576113b4565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613f93565b60405180910390fd5b80600e8190555050565b6060600280546114c6906144fc565b80601f01602080910402602001604051908101604052809291908181526020018280546114f2906144fc565b801561153f5780601f106115145761010080835404028352916020019161153f565b820191906000526020600020905b81548152906001019060200180831161152257829003601f168201915b5050505050905090565b61155b611554611e31565b8383612346565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611596611590611e31565b83611f1f565b6115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90614013565b60405180910390fd5b6115e1848484846124b3565b50505050565b60606115f282611dc5565b611631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162890613fd3565b60405180910390fd5b600061163b61250f565b9050600081511161165b5760405180602001604052806000815250611686565b80611665846125a1565b604051602001611676929190613bdf565b6040516020818303038152906040525b915050919050565b6116978161103b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90613e53565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461172c906144fc565b90501161176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613e13565b60405180910390fd5b61177781612702565b6000338260405160200161178c929190613cab565b6040516020818303038152906040529050600060019050600081600e546040516020016117ba929190613c18565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b8152600401611831959493929190614093565b604080518083038186803b15801561184857600080fd5b505afa15801561185c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611880919061349b565b509050803410156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613d33565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016119479695949392919061419c565b6000604051808303818588803b15801561196057600080fd5b505af1158015611974573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516119ac9190613bb1565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890614033565b60405180910390fd5b806000015483839050148015611a51575080600101548383604051611a47929190613b98565b6040518091039020145b611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790613e33565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611ae79594939291906140f4565b600060405180830381600087803b158015611b0157600080fd5b505af1158015611b15573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bbd611e31565b73ffffffffffffffffffffffffffffffffffffffff16611bdb6113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890613f93565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611c5b929190612c9e565b50505050565b565b611c6b611e31565b73ffffffffffffffffffffffffffffffffffffffff16611c896113b4565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690613f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613d73565b60405180910390fd5b611d5881612282565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eac8361103b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611f099190612f76565b91509150611f178282612264565b505050505050565b6000611f2a82611dc5565b611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613e93565b60405180910390fd5b6000611f748361103b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fe357508373ffffffffffffffffffffffffffffffffffffffff16611fcb84610aa6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ff45750611ff38185611b21565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201d8261103b565b73ffffffffffffffffffffffffffffffffffffffff1614612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613d93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613dd3565b60405180910390fd5b6120ee83838361281f565b6120f9600082611e39565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214991906143c7565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a09190614340565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461225f838383612824565b505050565b61227e828260405180602001604052806000815250612829565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac90613df3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124a69190613cd4565b60405180910390a3505050565b6124be848484611ffd565b6124ca84848484612884565b612509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250090613d53565b60405180910390fd5b50505050565b6060600b805461251e906144fc565b80601f016020809104026020016040519081016040528092919081815260200182805461254a906144fc565b80156125975780601f1061256c57610100808354040283529160200191612597565b820191906000526020600020905b81548152906001019060200180831161257a57829003601f168201915b5050505050905090565b606060008214156125e9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fd565b600082905060005b6000821461261b5780806126049061455f565b915050600a826126149190614396565b91506125f1565b60008167ffffffffffffffff811115612637576126366146b1565b5b6040519080825280601f01601f1916602001820160405280156126695781602001600182028036833780820191505090505b5090505b600085146126f65760018261268291906143c7565b9150600a8561269191906145c4565b603061269d9190614340565b60f81b8183815181106126b3576126b2614682565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ef9190614396565b945061266d565b8093505050505b919050565b600061270d8261103b565b905061271b8160008461281f565b612726600083611e39565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277691906143c7565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281b81600084612824565b5050565b505050565b505050565b6128338383612a1b565b6128406000848484612884565b61287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690613d53565b60405180910390fd5b505050565b60006128a58473ffffffffffffffffffffffffffffffffffffffff16612bf5565b15612a0e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ce611e31565b8786866040518563ffffffff1660e01b81526004016128f09493929190613c5f565b602060405180830381600087803b15801561290a57600080fd5b505af192505050801561293b57506040513d601f19601f820116820180604052508101906129389190613179565b60015b6129be573d806000811461296b576040519150601f19603f3d011682016040523d82523d6000602084013e612970565b606091505b506000815114156129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90613d53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a13565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8290613f53565b60405180910390fd5b612a9481611dc5565b15612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb90613db3565b60405180910390fd5b612ae06000838361281f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b309190614340565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bf160008383612824565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612c24906144fc565b90600052602060002090601f016020900481019282612c465760008555612c8d565b82601f10612c5f57805160ff1916838001178555612c8d565b82800160010185558215612c8d579182015b82811115612c8c578251825591602001919060010190612c71565b5b509050612c9a9190612d24565b5090565b828054612caa906144fc565b90600052602060002090601f016020900481019282612ccc5760008555612d13565b82601f10612ce557803560ff1916838001178555612d13565b82800160010185558215612d13579182015b82811115612d12578235825591602001919060010190612cf7565b5b509050612d209190612d24565b5090565b5b80821115612d3d576000816000905550600101612d25565b5090565b6000612d54612d4f8461427b565b614256565b905082815260208101848484011115612d7057612d6f6146ef565b5b612d7b8482856144ba565b509392505050565b6000612d96612d91846142ac565b614256565b905082815260208101848484011115612db257612db16146ef565b5b612dbd8482856144ba565b509392505050565b600081359050612dd481614e44565b92915050565b600081519050612de981614e5b565b92915050565b600081359050612dfe81614e72565b92915050565b600081359050612e1381614e89565b92915050565b600081519050612e2881614e89565b92915050565b60008083601f840112612e4457612e436146e5565b5b8235905067ffffffffffffffff811115612e6157612e606146e0565b5b602083019150836001820283011115612e7d57612e7c6146ea565b5b9250929050565b600082601f830112612e9957612e986146e5565b5b8135612ea9848260208601612d41565b91505092915050565b600082601f830112612ec757612ec66146e5565b5b8135612ed7848260208601612d83565b91505092915050565b600081359050612eef81614ea0565b92915050565b600081359050612f0481614eb7565b92915050565b600081519050612f1981614eb7565b92915050565b600081359050612f2e81614ece565b92915050565b600081359050612f4381614ee5565b92915050565b600060208284031215612f5f57612f5e6146f9565b5b6000612f6d84828501612dc5565b91505092915050565b60008060408385031215612f8d57612f8c6146f9565b5b6000612f9b85828601612dda565b9250506020612fac85828601612f0a565b9150509250929050565b60008060408385031215612fcd57612fcc6146f9565b5b6000612fdb85828601612dc5565b9250506020612fec85828601612dc5565b9150509250929050565b60008060006060848603121561300f5761300e6146f9565b5b600061301d86828701612dc5565b935050602061302e86828701612dc5565b925050604061303f86828701612ef5565b9150509250925092565b60008060008060808587031215613063576130626146f9565b5b600061307187828801612dc5565b945050602061308287828801612dc5565b935050604061309387828801612ef5565b925050606085013567ffffffffffffffff8111156130b4576130b36146f4565b5b6130c087828801612e84565b91505092959194509250565b600080604083850312156130e3576130e26146f9565b5b60006130f185828601612dc5565b925050602061310285828601612def565b9150509250929050565b60008060408385031215613123576131226146f9565b5b600061313185828601612dc5565b925050602061314285828601612ef5565b9150509250929050565b600060208284031215613162576131616146f9565b5b600061317084828501612e04565b91505092915050565b60006020828403121561318f5761318e6146f9565b5b600061319d84828501612e19565b91505092915050565b6000602082840312156131bc576131bb6146f9565b5b600082013567ffffffffffffffff8111156131da576131d96146f4565b5b6131e684828501612eb2565b91505092915050565b600060208284031215613205576132046146f9565b5b600061321384828501612ee0565b91505092915050565b600080600060408486031215613235576132346146f9565b5b600061324386828701612ee0565b935050602084013567ffffffffffffffff811115613264576132636146f4565b5b61327086828701612e2e565b92509250509250925092565b600080600060608486031215613295576132946146f9565b5b60006132a386828701612ee0565b935050602084013567ffffffffffffffff8111156132c4576132c36146f4565b5b6132d086828701612e84565b92505060406132e186828701612ef5565b9150509250925092565b600080600080600060808688031215613307576133066146f9565b5b600061331588828901612ee0565b955050602086013567ffffffffffffffff811115613336576133356146f4565b5b61334288828901612e84565b945050604061335388828901612f1f565b935050606086013567ffffffffffffffff811115613374576133736146f4565b5b61338088828901612e2e565b92509250509295509295909350565b600080600080608085870312156133a9576133a86146f9565b5b60006133b787828801612ee0565b945050602085013567ffffffffffffffff8111156133d8576133d76146f4565b5b6133e487828801612e84565b93505060406133f587828801612f1f565b925050606085013567ffffffffffffffff811115613416576134156146f4565b5b61342287828801612e84565b91505092959194509250565b60008060408385031215613445576134446146f9565b5b600061345385828601612ee0565b925050602061346485828601612ef5565b9150509250929050565b600060208284031215613484576134836146f9565b5b600061349284828501612ef5565b91505092915050565b600080604083850312156134b2576134b16146f9565b5b60006134c085828601612f0a565b92505060206134d185828601612f0a565b9150509250929050565b6000602082840312156134f1576134f06146f9565b5b60006134ff84828501612f34565b91505092915050565b6135118161440d565b82525050565b613520816143fb565b82525050565b61352f8161441f565b82525050565b61353e8161442b565b82525050565b60006135508385614308565b935061355d8385846144ba565b613566836146fe565b840190509392505050565b600061357d8385614319565b935061358a8385846144ba565b82840190509392505050565b60006135a1826142f2565b6135ab8185614308565b93506135bb8185602086016144c9565b6135c4816146fe565b840191505092915050565b60006135da826142f2565b6135e48185614319565b93506135f48185602086016144c9565b80840191505092915050565b6000815461360d816144fc565b6136178186614308565b94506001821660008114613632576001811461364457613677565b60ff1983168652602086019350613677565b61364d856142dd565b60005b8381101561366f57815481890152600182019150602081019050613650565b808801955050505b50505092915050565b6000815461368d816144fc565b6136978186614319565b945060018216600081146136b257600181146136c3576136f6565b60ff198316865281860193506136f6565b6136cc856142dd565b60005b838110156136ee578154818901526001820191506020810190506136cf565b838801955050505b50505092915050565b600061370a826142fd565b6137148185614324565b93506137248185602086016144c9565b61372d816146fe565b840191505092915050565b6000613743826142fd565b61374d8185614335565b935061375d8185602086016144c9565b80840191505092915050565b6000613776604783614324565b91506137818261471c565b606082019050919050565b6000613799603283614324565b91506137a482614791565b604082019050919050565b60006137bc602683614324565b91506137c7826147e0565b604082019050919050565b60006137df602583614324565b91506137ea8261482f565b604082019050919050565b6000613802601c83614324565b915061380d8261487e565b602082019050919050565b6000613825602483614324565b9150613830826148a7565b604082019050919050565b6000613848601983614324565b9150613853826148f6565b602082019050919050565b600061386b602e83614324565b91506138768261491f565b604082019050919050565b600061388e601a83614324565b91506138998261496e565b602082019050919050565b60006138b1602283614324565b91506138bc82614997565b604082019050919050565b60006138d4601383614324565b91506138df826149e6565b602082019050919050565b60006138f7602c83614324565b915061390282614a0f565b604082019050919050565b600061391a603883614324565b915061392582614a5e565b604082019050919050565b600061393d602a83614324565b915061394882614aad565b604082019050919050565b6000613960602983614324565b915061396b82614afc565b604082019050919050565b6000613983602b83614324565b915061398e82614b4b565b604082019050919050565b60006139a6601e83614324565b91506139b182614b9a565b602082019050919050565b60006139c9602083614324565b91506139d482614bc3565b602082019050919050565b60006139ec602c83614324565b91506139f782614bec565b604082019050919050565b6000613a0f602083614324565b9150613a1a82614c3b565b602082019050919050565b6000613a32603483614324565b9150613a3d82614c64565b604082019050919050565b6000613a55602f83614324565b9150613a6082614cb3565b604082019050919050565b6000613a78602183614324565b9150613a8382614d02565b604082019050919050565b6000613a9b600083614319565b9150613aa682614d51565b600082019050919050565b6000613abe603183614324565b9150613ac982614d54565b604082019050919050565b6000613ae1602683614324565b9150613aec82614da3565b604082019050919050565b6000613b04601c83614324565b9150613b0f82614df2565b602082019050919050565b6000613b27601783614324565b9150613b3282614e1b565b602082019050919050565b613b4681614461565b82525050565b613b5d613b5882614461565b6145a8565b82525050565b613b6c8161448f565b82525050565b613b83613b7e8261448f565b6145ba565b82525050565b613b9281614499565b82525050565b6000613ba5828486613571565b91508190509392505050565b6000613bbd82846135cf565b915081905092915050565b6000613bd48284613680565b915081905092915050565b6000613beb8285613738565b9150613bf78284613738565b91508190509392505050565b6000613c0e82613a8e565b9150819050919050565b6000613c248285613b4c565b600282019150613c348284613b72565b6020820191508190509392505050565b6000602082019050613c596000830184613517565b92915050565b6000608082019050613c746000830187613517565b613c816020830186613517565b613c8e6040830185613b63565b8181036060830152613ca08184613596565b905095945050505050565b6000604082019050613cc06000830185613517565b613ccd6020830184613b63565b9392505050565b6000602082019050613ce96000830184613526565b92915050565b60006020820190508181036000830152613d098184613596565b905092915050565b60006020820190508181036000830152613d2b81846136ff565b905092915050565b60006020820190508181036000830152613d4c81613769565b9050919050565b60006020820190508181036000830152613d6c8161378c565b9050919050565b60006020820190508181036000830152613d8c816137af565b9050919050565b60006020820190508181036000830152613dac816137d2565b9050919050565b60006020820190508181036000830152613dcc816137f5565b9050919050565b60006020820190508181036000830152613dec81613818565b9050919050565b60006020820190508181036000830152613e0c8161383b565b9050919050565b60006020820190508181036000830152613e2c8161385e565b9050919050565b60006020820190508181036000830152613e4c81613881565b9050919050565b60006020820190508181036000830152613e6c816138a4565b9050919050565b60006020820190508181036000830152613e8c816138c7565b9050919050565b60006020820190508181036000830152613eac816138ea565b9050919050565b60006020820190508181036000830152613ecc8161390d565b9050919050565b60006020820190508181036000830152613eec81613930565b9050919050565b60006020820190508181036000830152613f0c81613953565b9050919050565b60006020820190508181036000830152613f2c81613976565b9050919050565b60006020820190508181036000830152613f4c81613999565b9050919050565b60006020820190508181036000830152613f6c816139bc565b9050919050565b60006020820190508181036000830152613f8c816139df565b9050919050565b60006020820190508181036000830152613fac81613a02565b9050919050565b60006020820190508181036000830152613fcc81613a25565b9050919050565b60006020820190508181036000830152613fec81613a48565b9050919050565b6000602082019050818103600083015261400c81613a6b565b9050919050565b6000602082019050818103600083015261402c81613ab1565b9050919050565b6000602082019050818103600083015261404c81613ad4565b9050919050565b6000602082019050818103600083015261406c81613af7565b9050919050565b6000602082019050818103600083015261408c81613b1a565b9050919050565b600060a0820190506140a86000830188613b3d565b6140b56020830187613517565b81810360408301526140c78186613596565b90506140d66060830185613526565b81810360808301526140e88184613596565b90509695505050505050565b60006080820190506141096000830188613b3d565b818103602083015261411b8187613596565b905061412a6040830186613b89565b818103606083015261413d818486613544565b90509695505050505050565b600060808201905061415e6000830187613b3d565b81810360208301526141708186613596565b905061417f6040830185613b89565b81810360608301526141918184613596565b905095945050505050565b600060c0820190506141b16000830189613b3d565b81810360208301526141c38188613600565b905081810360408301526141d78187613596565b90506141e66060830186613508565b6141f36080830185613517565b81810360a08301526142058184613596565b9050979650505050505050565b60006020820190506142276000830184613b63565b92915050565b60006040820190506142426000830185613b63565b61424f6020830184613535565b9392505050565b6000614260614271565b905061426c828261452e565b919050565b6000604051905090565b600067ffffffffffffffff821115614296576142956146b1565b5b61429f826146fe565b9050602081019050919050565b600067ffffffffffffffff8211156142c7576142c66146b1565b5b6142d0826146fe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061434b8261448f565b91506143568361448f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561438b5761438a6145f5565b5b828201905092915050565b60006143a18261448f565b91506143ac8361448f565b9250826143bc576143bb614624565b5b828204905092915050565b60006143d28261448f565b91506143dd8361448f565b9250828210156143f0576143ef6145f5565b5b828203905092915050565b60006144068261446f565b9050919050565b60006144188261446f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156144e75780820151818401526020810190506144cc565b838111156144f6576000848401525b50505050565b6000600282049050600182168061451457607f821691505b6020821081141561452857614527614653565b5b50919050565b614537826146fe565b810181811067ffffffffffffffff82111715614556576145556146b1565b5b80604052505050565b600061456a8261448f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561459d5761459c6145f5565b5b600182019050919050565b60006145b38261470f565b9050919050565b6000819050919050565b60006145cf8261448f565b91506145da8361448f565b9250826145ea576145e9614624565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f47473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f766560008201527f72206d6573736167654665652e2053656e642067617320666f72206d6573736160208201527f6765206665657300000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f47473a204d61782032204e46547320706572207472616e73616374696f6e0000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f47473a204661696c656420746f20776974686472617720457468657200000000600082015250565b7f47473a204d696e74206578636565647320737570706c79000000000000000000600082015250565b614e4d816143fb565b8114614e5857600080fd5b50565b614e648161440d565b8114614e6f57600080fd5b50565b614e7b8161441f565b8114614e8657600080fd5b50565b614e9281614435565b8114614e9d57600080fd5b50565b614ea981614461565b8114614eb457600080fd5b50565b614ec08161448f565b8114614ecb57600080fd5b50565b614ed781614499565b8114614ee257600080fd5b50565b614eee816144ad565b8114614ef957600080fd5b5056fea2646970667358221220d48dafb31a3887bbdf8eb5b4964de7157d952b796737c4fc4eb0a8f45646542a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d50426d356254624545454356334d4e32446865627a686f6f37426f6156344576683368354b5a70583471726a0000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d50426d356254624545454356334d4e32446865627a686f
Arg [4] : 6f37426f6156344576683368354b5a70583471726a0000000000000000000000


Deployed Bytecode Sourcemap

50656:4642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46572:1150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30274:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31219:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32778:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32301:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47734:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33528:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54217:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51230:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33938:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53973:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30913:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51628:402;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30643:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45101:103;;;;;;;;;;;;;:::i;:::-;;46353:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44450:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46240:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;54490:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31388:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33071:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50726:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34194:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31563:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52177:1784;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48911:964;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33297:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49887:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54079:69;;;:::i;:::-;;45359:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46572:1150;46789:8;;;;;;;;;;;46767:31;;:10;:31;;;46759:40;;;;;;46928:19;:32;46948:11;46928:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;46906:11;:18;:61;:172;;;;;47045:19;:32;47065:11;47045:32;;;;;;;;;;;;;;;47035:43;;;;;;:::i;:::-;;;;;;;;47000:11;46990:22;;;;;;:88;46906:172;46882:280;;;;;;;;;;;;:::i;:::-;;;;;;;;;47298:4;:16;;;47315:11;47328;47341:6;47349:8;47298:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47294:419;;47513:107;;;;;;;;47548:8;:15;47513:107;;;;47594:8;47584:19;;;;;;47513:107;;;47462:14;:27;47477:11;47462:27;;;;;;;;;;;;;;;47490:11;47462:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;47503:6;47462:48;;;;;;;;;;;;;:158;;;;;;;;;;;;;;;;;;;47642:57;47656:11;47669;47682:6;47690:8;47642:57;;;;;;;;;:::i;:::-;;;;;;;;47294:419;;;;46572:1150;;;;:::o;30274:305::-;30376:4;30428:25;30413:40;;;:11;:40;;;;:105;;;;30485:33;30470:48;;;:11;:48;;;;30413:105;:158;;;;30535:36;30559:11;30535:23;:36::i;:::-;30413:158;30393:178;;30274:305;;;:::o;31219:100::-;31273:13;31306:5;31299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31219:100;:::o;32778:221::-;32854:7;32882:16;32890:7;32882;:16::i;:::-;32874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32967:15;:24;32983:7;32967:24;;;;;;;;;;;;;;;;;;;;;32960:31;;32778:221;;;:::o;32301:411::-;32382:13;32398:23;32413:7;32398:14;:23::i;:::-;32382:39;;32446:5;32440:11;;:2;:11;;;;32432:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32540:5;32524:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32549:37;32566:5;32573:12;:10;:12::i;:::-;32549:16;:37::i;:::-;32524:62;32502:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32683:21;32692:2;32696:7;32683:8;:21::i;:::-;32371:341;32301:411;;:::o;47734:463::-;47998:4;47976:27;;:10;:27;;;47952:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;48133:54;48144:11;48157;48170:6;48178:8;48133:10;:54::i;:::-;47734:463;;;;:::o;33528:339::-;33723:41;33742:12;:10;:12::i;:::-;33756:7;33723:18;:41::i;:::-;33715:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33831:28;33841:4;33847:2;33851:7;33831:9;:28::i;:::-;33528:339;;;:::o;54217:183::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54281:9:::1;54304:6;;;;;;;;;;;54296:20;;54324:3;54296:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54280:52;;;54353:4;54345:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;54267:133;54217:183:::0;:::o;51230:272::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51329:8:::1;;51316:9;51302:23;;:11;;:23;;;;:::i;:::-;:35;;51294:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51391:9;51386:107;51410:9;51406:13;;:1;:13;51386:107;;;51443:36;51453:10;51467:11;;51465:13;;;;;:::i;:::-;;;;;;;51443:9;:36::i;:::-;51421:3;;;;;:::i;:::-;;;;51386:107;;;;51230:272:::0;:::o;33938:185::-;34076:39;34093:4;34099:2;34103:7;34076:39;;;;;;;;;;;;:16;:39::i;:::-;33938:185;;;:::o;53973:94::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54054:3:::1;54044:7;:13;;;;;;;;;;;;:::i;:::-;;53973:94:::0;:::o;30913:239::-;30985:7;31005:13;31021:7;:16;31029:7;31021:16;;;;;;;;;;;;;;;;;;;;;31005:32;;31073:1;31056:19;;:5;:19;;;;31048:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31139:5;31132:12;;;30913:239;;;:::o;51628:402::-;51709:1;51697:9;:13;;;51689:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51809:8;;51796:9;51782:23;;:11;;:23;;;;:::i;:::-;:35;;51758:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51885:36;51895:10;51909:11;;51907:13;;;;;:::i;:::-;;;;;;;51885:9;:36::i;:::-;51951:1;51938:9;:14;;;51934:87;;;51971:36;51981:10;51995:11;;51993:13;;;;;:::i;:::-;;;;;;;51971:9;:36::i;:::-;51934:87;51628:402;:::o;30643:208::-;30715:7;30760:1;30743:19;;:5;:19;;;;30735:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30827:9;:16;30837:5;30827:16;;;;;;;;;;;;;;;;30820:23;;30643:208;;;:::o;45101:103::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45166:30:::1;45193:1;45166:18;:30::i;:::-;45101:103::o:0;46353:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44450:87::-;44496:7;44523:6;;;;;;;;;;;44516:13;;44450:87;:::o;46240:104::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54490:132::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54606:6:::1;54577:26;:35;;;;54490:132:::0;:::o;31388:104::-;31444:13;31477:7;31470:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31388:104;:::o;33071:155::-;33166:52;33185:12;:10;:12::i;:::-;33199:8;33209;33166:18;:52::i;:::-;33071:155;;:::o;50726:21::-;;;;;;;;;;;;;:::o;34194:328::-;34369:41;34388:12;:10;:12::i;:::-;34402:7;34369:18;:41::i;:::-;34361:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34475:39;34489:4;34495:2;34499:7;34508:5;34475:13;:39::i;:::-;34194:328;;;;:::o;31563:334::-;31636:13;31670:16;31678:7;31670;:16::i;:::-;31662:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31751:21;31775:10;:8;:10::i;:::-;31751:34;;31827:1;31809:7;31803:21;:25;:86;;;;;;;;;;;;;;;;;31855:7;31864:18;:7;:16;:18::i;:::-;31838:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31803:86;31796:93;;;31563:334;;;:::o;52177:1784::-;52301:16;52309:7;52301;:16::i;:::-;52287:30;;:10;:30;;;52263:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;52459:1;52420:19;:29;52440:8;52420:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;52396:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52624:14;52630:7;52624:5;:14::i;:::-;52718:20;52752:10;52764:7;52741:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52718:54;;52864:14;52881:1;52864:18;;52895:26;52957:7;52981:26;;52924:96;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52895:125;;53183:18;53207:8;;;;;;;;;;;:21;;;53245:8;53278:4;53300:7;53324:5;53346:13;53207:165;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53182:190;;;53426:10;53413:9;:23;;53389:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;53556:8;;;;;;;;;;;:13;;;53577:9;53604:8;53652:19;:29;53672:8;53652:29;;;;;;;;;;;;;;;53737:7;53795:10;53849:3;53909:13;53556:395;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52250:1711;;;;52177:1784;;:::o;48911:964::-;49149:32;49184:14;:27;49199:11;49184:27;;;;;;;;;;;;;;;49228:11;49184:68;;;;;;:::i;:::-;;;;;;;;;;;;;:76;49253:6;49184:76;;;;;;;;;;;;;49149:111;;49330:1;49322:10;;49297:9;:21;;;:35;;49273:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;49458:9;:23;;;49439:8;;:15;;:42;:109;;;;;49527:9;:21;;;49514:8;;49504:19;;;;;;;:::i;:::-;;;;;;;;:44;49439:109;49415:191;;;;;;;;;;;;:::i;:::-;;;;;;;;;49684:1;49658:9;:23;;:27;;;;49730:1;49722:10;;49698:9;:21;;:34;;;;49805:4;:16;;;49822:11;49835;49848:6;49856:8;;49805:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49089:786;48911:964;;;;;:::o;33297:164::-;33394:4;33418:18;:25;33437:5;33418:25;;;;;;;;;;;;;;;:35;33444:8;33418:35;;;;;;;;;;;;;;;;;;;;;;;;;33411:42;;33297:164;;;;:::o;49887:191::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50054:14:::1;;50022:19;:29;50042:8;50022:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;49887:191:::0;;;:::o;54079:69::-;:::o;45359:201::-;44681:12;:10;:12::i;:::-;44670:23;;:7;:5;:7::i;:::-;:23;;;44662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45468:1:::1;45448:22;;:8;:22;;;;45440:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45524:28;45543:8;45524:18;:28::i;:::-;45359:201:::0;:::o;18276:157::-;18361:4;18400:25;18385:40;;;:11;:40;;;;18378:47;;18276:157;;;:::o;36032:127::-;36097:4;36149:1;36121:30;;:7;:16;36129:7;36121:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36114:37;;36032:127;;;:::o;28653:98::-;28706:7;28733:10;28726:17;;28653:98;:::o;40178:174::-;40280:2;40253:15;:24;40269:7;40253:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40336:7;40332:2;40298:46;;40307:23;40322:7;40307:14;:23::i;:::-;40298:46;;;;;;;;;;;;40178:174;;:::o;54725:452::-;54935:14;54951:15;54997:8;54970:83;;;;;;;;;;;;:::i;:::-;54934:119;;;;55141:26;55151:6;55159:7;55141:9;:26::i;:::-;54900:277;;54725:452;;;;:::o;36326:348::-;36419:4;36444:16;36452:7;36444;:16::i;:::-;36436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36520:13;36536:23;36551:7;36536:14;:23::i;:::-;36520:39;;36589:5;36578:16;;:7;:16;;;:51;;;;36622:7;36598:31;;:20;36610:7;36598:11;:20::i;:::-;:31;;;36578:51;:87;;;;36633:32;36650:5;36657:7;36633:16;:32::i;:::-;36578:87;36570:96;;;36326:348;;;;:::o;39435:625::-;39594:4;39567:31;;:23;39582:7;39567:14;:23::i;:::-;:31;;;39559:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39673:1;39659:16;;:2;:16;;;;39651:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39729:39;39750:4;39756:2;39760:7;39729:20;:39::i;:::-;39833:29;39850:1;39854:7;39833:8;:29::i;:::-;39894:1;39875:9;:15;39885:4;39875:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39923:1;39906:9;:13;39916:2;39906:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39954:2;39935:7;:16;39943:7;39935:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39993:7;39989:2;39974:27;;39983:4;39974:27;;;;;;;;;;;;40014:38;40034:4;40040:2;40044:7;40014:19;:38::i;:::-;39435:625;;;:::o;37016:110::-;37092:26;37102:2;37106:7;37092:26;;;;;;;;;;;;:9;:26::i;:::-;37016:110;;:::o;45720:191::-;45794:16;45813:6;;;;;;;;;;;45794:25;;45839:8;45830:6;;:17;;;;;;;;;;;;;;;;;;45894:8;45863:40;;45884:8;45863:40;;;;;;;;;;;;45783:128;45720:191;:::o;40494:315::-;40649:8;40640:17;;:5;:17;;;;40632:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;40736:8;40698:18;:25;40717:5;40698:25;;;;;;;;;;;;;;;:35;40724:8;40698:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40782:8;40760:41;;40775:5;40760:41;;;40792:8;40760:41;;;;;;:::i;:::-;;;;;;;;40494:315;;;:::o;35404:::-;35561:28;35571:4;35577:2;35581:7;35561:9;:28::i;:::-;35608:48;35631:4;35637:2;35641:7;35650:5;35608:22;:48::i;:::-;35600:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35404:315;;;;:::o;55189:104::-;55241:13;55276:7;55269:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55189:104;:::o;9060:723::-;9116:13;9346:1;9337:5;:10;9333:53;;;9364:10;;;;;;;;;;;;;;;;;;;;;9333:53;9396:12;9411:5;9396:20;;9427:14;9452:78;9467:1;9459:4;:9;9452:78;;9485:8;;;;;:::i;:::-;;;;9516:2;9508:10;;;;;:::i;:::-;;;9452:78;;;9540:19;9572:6;9562:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9540:39;;9590:154;9606:1;9597:5;:10;9590:154;;9634:1;9624:11;;;;;:::i;:::-;;;9701:2;9693:5;:10;;;;:::i;:::-;9680:2;:24;;;;:::i;:::-;9667:39;;9650:6;9657;9650:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9730:2;9721:11;;;;;:::i;:::-;;;9590:154;;;9768:6;9754:21;;;;;9060:723;;;;:::o;38678:420::-;38738:13;38754:23;38769:7;38754:14;:23::i;:::-;38738:39;;38790:48;38811:5;38826:1;38830:7;38790:20;:48::i;:::-;38879:29;38896:1;38900:7;38879:8;:29::i;:::-;38941:1;38921:9;:16;38931:5;38921:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;38960:7;:16;38968:7;38960:16;;;;;;;;;;;;38953:23;;;;;;;;;;;39022:7;39018:1;38994:36;;39003:5;38994:36;;;;;;;;;;;;39043:47;39063:5;39078:1;39082:7;39043:19;:47::i;:::-;38727:371;38678:420;:::o;42745:126::-;;;;:::o;43256:125::-;;;;:::o;37353:321::-;37483:18;37489:2;37493:7;37483:5;:18::i;:::-;37534:54;37565:1;37569:2;37573:7;37582:5;37534:22;:54::i;:::-;37512:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37353:321;;;:::o;41374:799::-;41529:4;41550:15;:2;:13;;;:15::i;:::-;41546:620;;;41602:2;41586:36;;;41623:12;:10;:12::i;:::-;41637:4;41643:7;41652:5;41586:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41582:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41845:1;41828:6;:13;:18;41824:272;;;41871:60;;;;;;;;;;:::i;:::-;;;;;;;;41824:272;42046:6;42040:13;42031:6;42027:2;42023:15;42016:38;41582:529;41719:41;;;41709:51;;;:6;:51;;;;41702:58;;;;;41546:620;42150:4;42143:11;;41374:799;;;;;;;:::o;38010:439::-;38104:1;38090:16;;:2;:16;;;;38082:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38163:16;38171:7;38163;:16::i;:::-;38162:17;38154:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38225:45;38254:1;38258:2;38262:7;38225:20;:45::i;:::-;38300:1;38283:9;:13;38293:2;38283:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38331:2;38312:7;:16;38320:7;38312:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38376:7;38372:2;38351:33;;38368:1;38351:33;;;;;;;;;;;;38397:44;38425:1;38429:2;38433:7;38397:19;:44::i;:::-;38010:439;;:::o;20704:326::-;20764:4;21021:1;20999:7;:19;;;:23;20992:30;;20704:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:159::-;1051:5;1082:6;1076:13;1067:22;;1098:41;1133:5;1098:41;:::i;:::-;986:159;;;;:::o;1151:133::-;1194:5;1232:6;1219:20;1210:29;;1248:30;1272:5;1248:30;:::i;:::-;1151:133;;;;:::o;1290:137::-;1335:5;1373:6;1360:20;1351:29;;1389:32;1415:5;1389:32;:::i;:::-;1290:137;;;;:::o;1433:141::-;1489:5;1520:6;1514:13;1505:22;;1536:32;1562:5;1536:32;:::i;:::-;1433:141;;;;:::o;1593:552::-;1650:8;1660:6;1710:3;1703:4;1695:6;1691:17;1687:27;1677:122;;1718:79;;:::i;:::-;1677:122;1831:6;1818:20;1808:30;;1861:18;1853:6;1850:30;1847:117;;;1883:79;;:::i;:::-;1847:117;1997:4;1989:6;1985:17;1973:29;;2051:3;2043:4;2035:6;2031:17;2021:8;2017:32;2014:41;2011:128;;;2058:79;;:::i;:::-;2011:128;1593:552;;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:143::-;3213:5;3244:6;3238:13;3229:22;;3260:33;3287:5;3260:33;:::i;:::-;3156:143;;;;:::o;3305:137::-;3350:5;3388:6;3375:20;3366:29;;3404:32;3430:5;3404:32;:::i;:::-;3305:137;;;;:::o;3448:135::-;3492:5;3530:6;3517:20;3508:29;;3546:31;3571:5;3546:31;:::i;:::-;3448:135;;;;:::o;3589:329::-;3648:6;3697:2;3685:9;3676:7;3672:23;3668:32;3665:119;;;3703:79;;:::i;:::-;3665:119;3823:1;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3794:117;3589:329;;;;:::o;3924:523::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:72;4283:7;4274:6;4263:9;4259:22;4219:72;:::i;:::-;4209:82;;4165:136;4340:2;4366:64;4422:7;4413:6;4402:9;4398:22;4366:64;:::i;:::-;4356:74;;4311:129;3924:523;;;;;:::o;4453:474::-;4521:6;4529;4578:2;4566:9;4557:7;4553:23;4549:32;4546:119;;;4584:79;;:::i;:::-;4546:119;4704:1;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4675:117;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4453:474;;;;;:::o;4933:619::-;5010:6;5018;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5201:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5172:117;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;4933:619;;;;;:::o;5558:943::-;5653:6;5661;5669;5677;5726:3;5714:9;5705:7;5701:23;5697:33;5694:120;;;5733:79;;:::i;:::-;5694:120;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6108:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;:::i;:::-;6124:63;;6079:118;6264:2;6253:9;6249:18;6236:32;6295:18;6287:6;6284:30;6281:117;;;6317:79;;:::i;:::-;6281:117;6422:62;6476:7;6467:6;6456:9;6452:22;6422:62;:::i;:::-;6412:72;;6207:287;5558:943;;;;;;;:::o;6507:468::-;6572:6;6580;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6882:2;6908:50;6950:7;6941:6;6930:9;6926:22;6908:50;:::i;:::-;6898:60;;6853:115;6507:468;;;;;:::o;6981:474::-;7049:6;7057;7106:2;7094:9;7085:7;7081:23;7077:32;7074:119;;;7112:79;;:::i;:::-;7074:119;7232:1;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7203:117;7359:2;7385:53;7430:7;7421:6;7410:9;7406:22;7385:53;:::i;:::-;7375:63;;7330:118;6981:474;;;;;:::o;7461:327::-;7519:6;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:52;7763:7;7754:6;7743:9;7739:22;7719:52;:::i;:::-;7709:62;;7665:116;7461:327;;;;:::o;7794:349::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:63;8118:7;8109:6;8098:9;8094:22;8063:63;:::i;:::-;8053:73;;8009:127;7794:349;;;;:::o;8149:509::-;8218:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:119;;;8273:79;;:::i;:::-;8235:119;8421:1;8410:9;8406:17;8393:31;8451:18;8443:6;8440:30;8437:117;;;8473:79;;:::i;:::-;8437:117;8578:63;8633:7;8624:6;8613:9;8609:22;8578:63;:::i;:::-;8568:73;;8364:287;8149:509;;;;:::o;8664:327::-;8722:6;8771:2;8759:9;8750:7;8746:23;8742:32;8739:119;;;8777:79;;:::i;:::-;8739:119;8897:1;8922:52;8966:7;8957:6;8946:9;8942:22;8922:52;:::i;:::-;8912:62;;8868:116;8664:327;;;;:::o;8997:670::-;9075:6;9083;9091;9140:2;9128:9;9119:7;9115:23;9111:32;9108:119;;;9146:79;;:::i;:::-;9108:119;9266:1;9291:52;9335:7;9326:6;9315:9;9311:22;9291:52;:::i;:::-;9281:62;;9237:116;9420:2;9409:9;9405:18;9392:32;9451:18;9443:6;9440:30;9437:117;;;9473:79;;:::i;:::-;9437:117;9586:64;9642:7;9633:6;9622:9;9618:22;9586:64;:::i;:::-;9568:82;;;;9363:297;8997:670;;;;;:::o;9673:795::-;9758:6;9766;9774;9823:2;9811:9;9802:7;9798:23;9794:32;9791:119;;;9829:79;;:::i;:::-;9791:119;9949:1;9974:52;10018:7;10009:6;9998:9;9994:22;9974:52;:::i;:::-;9964:62;;9920:116;10103:2;10092:9;10088:18;10075:32;10134:18;10126:6;10123:30;10120:117;;;10156:79;;:::i;:::-;10120:117;10261:62;10315:7;10306:6;10295:9;10291:22;10261:62;:::i;:::-;10251:72;;10046:287;10372:2;10398:53;10443:7;10434:6;10423:9;10419:22;10398:53;:::i;:::-;10388:63;;10343:118;9673:795;;;;;:::o;10474:1137::-;10578:6;10586;10594;10602;10610;10659:3;10647:9;10638:7;10634:23;10630:33;10627:120;;;10666:79;;:::i;:::-;10627:120;10786:1;10811:52;10855:7;10846:6;10835:9;10831:22;10811:52;:::i;:::-;10801:62;;10757:116;10940:2;10929:9;10925:18;10912:32;10971:18;10963:6;10960:30;10957:117;;;10993:79;;:::i;:::-;10957:117;11098:62;11152:7;11143:6;11132:9;11128:22;11098:62;:::i;:::-;11088:72;;10883:287;11209:2;11235:52;11279:7;11270:6;11259:9;11255:22;11235:52;:::i;:::-;11225:62;;11180:117;11364:2;11353:9;11349:18;11336:32;11395:18;11387:6;11384:30;11381:117;;;11417:79;;:::i;:::-;11381:117;11530:64;11586:7;11577:6;11566:9;11562:22;11530:64;:::i;:::-;11512:82;;;;11307:297;10474:1137;;;;;;;;:::o;11617:1117::-;11719:6;11727;11735;11743;11792:3;11780:9;11771:7;11767:23;11763:33;11760:120;;;11799:79;;:::i;:::-;11760:120;11919:1;11944:52;11988:7;11979:6;11968:9;11964:22;11944:52;:::i;:::-;11934:62;;11890:116;12073:2;12062:9;12058:18;12045:32;12104:18;12096:6;12093:30;12090:117;;;12126:79;;:::i;:::-;12090:117;12231:62;12285:7;12276:6;12265:9;12261:22;12231:62;:::i;:::-;12221:72;;12016:287;12342:2;12368:52;12412:7;12403:6;12392:9;12388:22;12368:52;:::i;:::-;12358:62;;12313:117;12497:2;12486:9;12482:18;12469:32;12528:18;12520:6;12517:30;12514:117;;;12550:79;;:::i;:::-;12514:117;12655:62;12709:7;12700:6;12689:9;12685:22;12655:62;:::i;:::-;12645:72;;12440:287;11617:1117;;;;;;;:::o;12740:472::-;12807:6;12815;12864:2;12852:9;12843:7;12839:23;12835:32;12832:119;;;12870:79;;:::i;:::-;12832:119;12990:1;13015:52;13059:7;13050:6;13039:9;13035:22;13015:52;:::i;:::-;13005:62;;12961:116;13116:2;13142:53;13187:7;13178:6;13167:9;13163:22;13142:53;:::i;:::-;13132:63;;13087:118;12740:472;;;;;:::o;13218:329::-;13277:6;13326:2;13314:9;13305:7;13301:23;13297:32;13294:119;;;13332:79;;:::i;:::-;13294:119;13452:1;13477:53;13522:7;13513:6;13502:9;13498:22;13477:53;:::i;:::-;13467:63;;13423:117;13218:329;;;;:::o;13553:507::-;13632:6;13640;13689:2;13677:9;13668:7;13664:23;13660:32;13657:119;;;13695:79;;:::i;:::-;13657:119;13815:1;13840:64;13896:7;13887:6;13876:9;13872:22;13840:64;:::i;:::-;13830:74;;13786:128;13953:2;13979:64;14035:7;14026:6;14015:9;14011:22;13979:64;:::i;:::-;13969:74;;13924:129;13553:507;;;;;:::o;14066:325::-;14123:6;14172:2;14160:9;14151:7;14147:23;14143:32;14140:119;;;14178:79;;:::i;:::-;14140:119;14298:1;14323:51;14366:7;14357:6;14346:9;14342:22;14323:51;:::i;:::-;14313:61;;14269:115;14066:325;;;;:::o;14397:142::-;14500:32;14526:5;14500:32;:::i;:::-;14495:3;14488:45;14397:142;;:::o;14545:118::-;14632:24;14650:5;14632:24;:::i;:::-;14627:3;14620:37;14545:118;;:::o;14669:109::-;14750:21;14765:5;14750:21;:::i;:::-;14745:3;14738:34;14669:109;;:::o;14784:118::-;14871:24;14889:5;14871:24;:::i;:::-;14866:3;14859:37;14784:118;;:::o;14930:301::-;15026:3;15047:70;15110:6;15105:3;15047:70;:::i;:::-;15040:77;;15127:43;15163:6;15158:3;15151:5;15127:43;:::i;:::-;15195:29;15217:6;15195:29;:::i;:::-;15190:3;15186:39;15179:46;;14930:301;;;;;:::o;15259:314::-;15373:3;15394:88;15475:6;15470:3;15394:88;:::i;:::-;15387:95;;15492:43;15528:6;15523:3;15516:5;15492:43;:::i;:::-;15560:6;15555:3;15551:16;15544:23;;15259:314;;;;;:::o;15579:360::-;15665:3;15693:38;15725:5;15693:38;:::i;:::-;15747:70;15810:6;15805:3;15747:70;:::i;:::-;15740:77;;15826:52;15871:6;15866:3;15859:4;15852:5;15848:16;15826:52;:::i;:::-;15903:29;15925:6;15903:29;:::i;:::-;15898:3;15894:39;15887:46;;15669:270;15579:360;;;;:::o;15945:373::-;16049:3;16077:38;16109:5;16077:38;:::i;:::-;16131:88;16212:6;16207:3;16131:88;:::i;:::-;16124:95;;16228:52;16273:6;16268:3;16261:4;16254:5;16250:16;16228:52;:::i;:::-;16305:6;16300:3;16296:16;16289:23;;16053:265;15945:373;;;;:::o;16346:798::-;16429:3;16466:5;16460:12;16495:36;16521:9;16495:36;:::i;:::-;16547:70;16610:6;16605:3;16547:70;:::i;:::-;16540:77;;16648:1;16637:9;16633:17;16664:1;16659:135;;;;16808:1;16803:335;;;;16626:512;;16659:135;16743:4;16739:9;16728;16724:25;16719:3;16712:38;16779:4;16774:3;16770:14;16763:21;;16659:135;;16803:335;16870:37;16901:5;16870:37;:::i;:::-;16929:1;16943:154;16957:6;16954:1;16951:13;16943:154;;;17031:7;17025:14;17021:1;17016:3;17012:11;17005:35;17081:1;17072:7;17068:15;17057:26;;16979:4;16976:1;16972:12;16967:17;;16943:154;;;17126:1;17121:3;17117:11;17110:18;;16810:328;;16626:512;;16433:711;;16346:798;;;;:::o;17172:841::-;17273:3;17310:5;17304:12;17339:36;17365:9;17339:36;:::i;:::-;17391:88;17472:6;17467:3;17391:88;:::i;:::-;17384:95;;17510:1;17499:9;17495:17;17526:1;17521:137;;;;17672:1;17667:340;;;;17488:519;;17521:137;17605:4;17601:9;17590;17586:25;17581:3;17574:38;17641:6;17636:3;17632:16;17625:23;;17521:137;;17667:340;17734:37;17765:5;17734:37;:::i;:::-;17793:1;17807:154;17821:6;17818:1;17815:13;17807:154;;;17895:7;17889:14;17885:1;17880:3;17876:11;17869:35;17945:1;17936:7;17932:15;17921:26;;17843:4;17840:1;17836:12;17831:17;;17807:154;;;17990:6;17985:3;17981:16;17974:23;;17674:333;;17488:519;;17277:736;;17172:841;;;;:::o;18019:364::-;18107:3;18135:39;18168:5;18135:39;:::i;:::-;18190:71;18254:6;18249:3;18190:71;:::i;:::-;18183:78;;18270:52;18315:6;18310:3;18303:4;18296:5;18292:16;18270:52;:::i;:::-;18347:29;18369:6;18347:29;:::i;:::-;18342:3;18338:39;18331:46;;18111:272;18019:364;;;;:::o;18389:377::-;18495:3;18523:39;18556:5;18523:39;:::i;:::-;18578:89;18660:6;18655:3;18578:89;:::i;:::-;18571:96;;18676:52;18721:6;18716:3;18709:4;18702:5;18698:16;18676:52;:::i;:::-;18753:6;18748:3;18744:16;18737:23;;18499:267;18389:377;;;;:::o;18772:366::-;18914:3;18935:67;18999:2;18994:3;18935:67;:::i;:::-;18928:74;;19011:93;19100:3;19011:93;:::i;:::-;19129:2;19124:3;19120:12;19113:19;;18772:366;;;:::o;19144:::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:::-;20030:3;20051:67;20115:2;20110:3;20051:67;:::i;:::-;20044:74;;20127:93;20216:3;20127:93;:::i;:::-;20245:2;20240:3;20236:12;20229:19;;19888:366;;;:::o;20260:::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:::-;20774:3;20795:67;20859:2;20854:3;20795:67;:::i;:::-;20788:74;;20871:93;20960:3;20871:93;:::i;:::-;20989:2;20984:3;20980:12;20973:19;;20632:366;;;:::o;21004:::-;21146:3;21167:67;21231:2;21226:3;21167:67;:::i;:::-;21160:74;;21243:93;21332:3;21243:93;:::i;:::-;21361:2;21356:3;21352:12;21345:19;;21004:366;;;:::o;21376:::-;21518:3;21539:67;21603:2;21598:3;21539:67;:::i;:::-;21532:74;;21615:93;21704:3;21615:93;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21376:366;;;:::o;21748:::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22864:::-;23006:3;23027:67;23091:2;23086:3;23027:67;:::i;:::-;23020:74;;23103:93;23192:3;23103:93;:::i;:::-;23221:2;23216:3;23212:12;23205:19;;22864:366;;;:::o;23236:::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:::-;23750:3;23771:67;23835:2;23830:3;23771:67;:::i;:::-;23764:74;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23608:366;;;:::o;23980:::-;24122:3;24143:67;24207:2;24202:3;24143:67;:::i;:::-;24136:74;;24219:93;24308:3;24219:93;:::i;:::-;24337:2;24332:3;24328:12;24321:19;;23980:366;;;:::o;24352:::-;24494:3;24515:67;24579:2;24574:3;24515:67;:::i;:::-;24508:74;;24591:93;24680:3;24591:93;:::i;:::-;24709:2;24704:3;24700:12;24693:19;;24352:366;;;:::o;24724:::-;24866:3;24887:67;24951:2;24946:3;24887:67;:::i;:::-;24880:74;;24963:93;25052:3;24963:93;:::i;:::-;25081:2;25076:3;25072:12;25065:19;;24724:366;;;:::o;25096:::-;25238:3;25259:67;25323:2;25318:3;25259:67;:::i;:::-;25252:74;;25335:93;25424:3;25335:93;:::i;:::-;25453:2;25448:3;25444:12;25437:19;;25096:366;;;:::o;25468:::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:::-;25982:3;26003:67;26067:2;26062:3;26003:67;:::i;:::-;25996:74;;26079:93;26168:3;26079:93;:::i;:::-;26197:2;26192:3;26188:12;26181:19;;25840:366;;;:::o;26212:::-;26354:3;26375:67;26439:2;26434:3;26375:67;:::i;:::-;26368:74;;26451:93;26540:3;26451:93;:::i;:::-;26569:2;26564:3;26560:12;26553:19;;26212:366;;;:::o;26584:::-;26726:3;26747:67;26811:2;26806:3;26747:67;:::i;:::-;26740:74;;26823:93;26912:3;26823:93;:::i;:::-;26941:2;26936:3;26932:12;26925:19;;26584:366;;;:::o;26956:::-;27098:3;27119:67;27183:2;27178:3;27119:67;:::i;:::-;27112:74;;27195:93;27284:3;27195:93;:::i;:::-;27313:2;27308:3;27304:12;27297:19;;26956:366;;;:::o;27328:398::-;27487:3;27508:83;27589:1;27584:3;27508:83;:::i;:::-;27501:90;;27600:93;27689:3;27600:93;:::i;:::-;27718:1;27713:3;27709:11;27702:18;;27328:398;;;:::o;27732:366::-;27874:3;27895:67;27959:2;27954:3;27895:67;:::i;:::-;27888:74;;27971:93;28060:3;27971:93;:::i;:::-;28089:2;28084:3;28080:12;28073:19;;27732:366;;;:::o;28104:::-;28246:3;28267:67;28331:2;28326:3;28267:67;:::i;:::-;28260:74;;28343:93;28432:3;28343:93;:::i;:::-;28461:2;28456:3;28452:12;28445:19;;28104:366;;;:::o;28476:::-;28618:3;28639:67;28703:2;28698:3;28639:67;:::i;:::-;28632:74;;28715:93;28804:3;28715:93;:::i;:::-;28833:2;28828:3;28824:12;28817:19;;28476:366;;;:::o;28848:::-;28990:3;29011:67;29075:2;29070:3;29011:67;:::i;:::-;29004:74;;29087:93;29176:3;29087:93;:::i;:::-;29205:2;29200:3;29196:12;29189:19;;28848:366;;;:::o;29220:115::-;29305:23;29322:5;29305:23;:::i;:::-;29300:3;29293:36;29220:115;;:::o;29341:153::-;29444:43;29463:23;29480:5;29463:23;:::i;:::-;29444:43;:::i;:::-;29439:3;29432:56;29341:153;;:::o;29500:118::-;29587:24;29605:5;29587:24;:::i;:::-;29582:3;29575:37;29500:118;;:::o;29624:157::-;29729:45;29749:24;29767:5;29749:24;:::i;:::-;29729:45;:::i;:::-;29724:3;29717:58;29624:157;;:::o;29787:115::-;29872:23;29889:5;29872:23;:::i;:::-;29867:3;29860:36;29787:115;;:::o;29908:291::-;30048:3;30070:103;30169:3;30160:6;30152;30070:103;:::i;:::-;30063:110;;30190:3;30183:10;;29908:291;;;;;:::o;30205:271::-;30335:3;30357:93;30446:3;30437:6;30357:93;:::i;:::-;30350:100;;30467:3;30460:10;;30205:271;;;;:::o;30482:265::-;30609:3;30631:90;30717:3;30708:6;30631:90;:::i;:::-;30624:97;;30738:3;30731:10;;30482:265;;;;:::o;30753:435::-;30933:3;30955:95;31046:3;31037:6;30955:95;:::i;:::-;30948:102;;31067:95;31158:3;31149:6;31067:95;:::i;:::-;31060:102;;31179:3;31172:10;;30753:435;;;;;:::o;31194:379::-;31378:3;31400:147;31543:3;31400:147;:::i;:::-;31393:154;;31564:3;31557:10;;31194:379;;;:::o;31579:392::-;31717:3;31732:73;31801:3;31792:6;31732:73;:::i;:::-;31830:1;31825:3;31821:11;31814:18;;31842:75;31913:3;31904:6;31842:75;:::i;:::-;31942:2;31937:3;31933:12;31926:19;;31962:3;31955:10;;31579:392;;;;;:::o;31977:222::-;32070:4;32108:2;32097:9;32093:18;32085:26;;32121:71;32189:1;32178:9;32174:17;32165:6;32121:71;:::i;:::-;31977:222;;;;:::o;32205:640::-;32400:4;32438:3;32427:9;32423:19;32415:27;;32452:71;32520:1;32509:9;32505:17;32496:6;32452:71;:::i;:::-;32533:72;32601:2;32590:9;32586:18;32577:6;32533:72;:::i;:::-;32615;32683:2;32672:9;32668:18;32659:6;32615:72;:::i;:::-;32734:9;32728:4;32724:20;32719:2;32708:9;32704:18;32697:48;32762:76;32833:4;32824:6;32762:76;:::i;:::-;32754:84;;32205:640;;;;;;;:::o;32851:332::-;32972:4;33010:2;32999:9;32995:18;32987:26;;33023:71;33091:1;33080:9;33076:17;33067:6;33023:71;:::i;:::-;33104:72;33172:2;33161:9;33157:18;33148:6;33104:72;:::i;:::-;32851:332;;;;;:::o;33189:210::-;33276:4;33314:2;33303:9;33299:18;33291:26;;33327:65;33389:1;33378:9;33374:17;33365:6;33327:65;:::i;:::-;33189:210;;;;:::o;33405:309::-;33516:4;33554:2;33543:9;33539:18;33531:26;;33603:9;33597:4;33593:20;33589:1;33578:9;33574:17;33567:47;33631:76;33702:4;33693:6;33631:76;:::i;:::-;33623:84;;33405:309;;;;:::o;33720:313::-;33833:4;33871:2;33860:9;33856:18;33848:26;;33920:9;33914:4;33910:20;33906:1;33895:9;33891:17;33884:47;33948:78;34021:4;34012:6;33948:78;:::i;:::-;33940:86;;33720:313;;;;:::o;34039:419::-;34205:4;34243:2;34232:9;34228:18;34220:26;;34292:9;34286:4;34282:20;34278:1;34267:9;34263:17;34256:47;34320:131;34446:4;34320:131;:::i;:::-;34312:139;;34039:419;;;:::o;34464:::-;34630:4;34668:2;34657:9;34653:18;34645:26;;34717:9;34711:4;34707:20;34703:1;34692:9;34688:17;34681:47;34745:131;34871:4;34745:131;:::i;:::-;34737:139;;34464:419;;;:::o;34889:::-;35055:4;35093:2;35082:9;35078:18;35070:26;;35142:9;35136:4;35132:20;35128:1;35117:9;35113:17;35106:47;35170:131;35296:4;35170:131;:::i;:::-;35162:139;;34889:419;;;:::o;35314:::-;35480:4;35518:2;35507:9;35503:18;35495:26;;35567:9;35561:4;35557:20;35553:1;35542:9;35538:17;35531:47;35595:131;35721:4;35595:131;:::i;:::-;35587:139;;35314:419;;;:::o;35739:::-;35905:4;35943:2;35932:9;35928:18;35920:26;;35992:9;35986:4;35982:20;35978:1;35967:9;35963:17;35956:47;36020:131;36146:4;36020:131;:::i;:::-;36012:139;;35739:419;;;:::o;36164:::-;36330:4;36368:2;36357:9;36353:18;36345:26;;36417:9;36411:4;36407:20;36403:1;36392:9;36388:17;36381:47;36445:131;36571:4;36445:131;:::i;:::-;36437:139;;36164:419;;;:::o;36589:::-;36755:4;36793:2;36782:9;36778:18;36770:26;;36842:9;36836:4;36832:20;36828:1;36817:9;36813:17;36806:47;36870:131;36996:4;36870:131;:::i;:::-;36862:139;;36589:419;;;:::o;37014:::-;37180:4;37218:2;37207:9;37203:18;37195:26;;37267:9;37261:4;37257:20;37253:1;37242:9;37238:17;37231:47;37295:131;37421:4;37295:131;:::i;:::-;37287:139;;37014:419;;;:::o;37439:::-;37605:4;37643:2;37632:9;37628:18;37620:26;;37692:9;37686:4;37682:20;37678:1;37667:9;37663:17;37656:47;37720:131;37846:4;37720:131;:::i;:::-;37712:139;;37439:419;;;:::o;37864:::-;38030:4;38068:2;38057:9;38053:18;38045:26;;38117:9;38111:4;38107:20;38103:1;38092:9;38088:17;38081:47;38145:131;38271:4;38145:131;:::i;:::-;38137:139;;37864:419;;;:::o;38289:::-;38455:4;38493:2;38482:9;38478:18;38470:26;;38542:9;38536:4;38532:20;38528:1;38517:9;38513:17;38506:47;38570:131;38696:4;38570:131;:::i;:::-;38562:139;;38289:419;;;:::o;38714:::-;38880:4;38918:2;38907:9;38903:18;38895:26;;38967:9;38961:4;38957:20;38953:1;38942:9;38938:17;38931:47;38995:131;39121:4;38995:131;:::i;:::-;38987:139;;38714:419;;;:::o;39139:::-;39305:4;39343:2;39332:9;39328:18;39320:26;;39392:9;39386:4;39382:20;39378:1;39367:9;39363:17;39356:47;39420:131;39546:4;39420:131;:::i;:::-;39412:139;;39139:419;;;:::o;39564:::-;39730:4;39768:2;39757:9;39753:18;39745:26;;39817:9;39811:4;39807:20;39803:1;39792:9;39788:17;39781:47;39845:131;39971:4;39845:131;:::i;:::-;39837:139;;39564:419;;;:::o;39989:::-;40155:4;40193:2;40182:9;40178:18;40170:26;;40242:9;40236:4;40232:20;40228:1;40217:9;40213:17;40206:47;40270:131;40396:4;40270:131;:::i;:::-;40262:139;;39989:419;;;:::o;40414:::-;40580:4;40618:2;40607:9;40603:18;40595:26;;40667:9;40661:4;40657:20;40653:1;40642:9;40638:17;40631:47;40695:131;40821:4;40695:131;:::i;:::-;40687:139;;40414:419;;;:::o;40839:::-;41005:4;41043:2;41032:9;41028:18;41020:26;;41092:9;41086:4;41082:20;41078:1;41067:9;41063:17;41056:47;41120:131;41246:4;41120:131;:::i;:::-;41112:139;;40839:419;;;:::o;41264:::-;41430:4;41468:2;41457:9;41453:18;41445:26;;41517:9;41511:4;41507:20;41503:1;41492:9;41488:17;41481:47;41545:131;41671:4;41545:131;:::i;:::-;41537:139;;41264:419;;;:::o;41689:::-;41855:4;41893:2;41882:9;41878:18;41870:26;;41942:9;41936:4;41932:20;41928:1;41917:9;41913:17;41906:47;41970:131;42096:4;41970:131;:::i;:::-;41962:139;;41689:419;;;:::o;42114:::-;42280:4;42318:2;42307:9;42303:18;42295:26;;42367:9;42361:4;42357:20;42353:1;42342:9;42338:17;42331:47;42395:131;42521:4;42395:131;:::i;:::-;42387:139;;42114:419;;;:::o;42539:::-;42705:4;42743:2;42732:9;42728:18;42720:26;;42792:9;42786:4;42782:20;42778:1;42767:9;42763:17;42756:47;42820:131;42946:4;42820:131;:::i;:::-;42812:139;;42539:419;;;:::o;42964:::-;43130:4;43168:2;43157:9;43153:18;43145:26;;43217:9;43211:4;43207:20;43203:1;43192:9;43188:17;43181:47;43245:131;43371:4;43245:131;:::i;:::-;43237:139;;42964:419;;;:::o;43389:::-;43555:4;43593:2;43582:9;43578:18;43570:26;;43642:9;43636:4;43632:20;43628:1;43617:9;43613:17;43606:47;43670:131;43796:4;43670:131;:::i;:::-;43662:139;;43389:419;;;:::o;43814:::-;43980:4;44018:2;44007:9;44003:18;43995:26;;44067:9;44061:4;44057:20;44053:1;44042:9;44038:17;44031:47;44095:131;44221:4;44095:131;:::i;:::-;44087:139;;43814:419;;;:::o;44239:::-;44405:4;44443:2;44432:9;44428:18;44420:26;;44492:9;44486:4;44482:20;44478:1;44467:9;44463:17;44456:47;44520:131;44646:4;44520:131;:::i;:::-;44512:139;;44239:419;;;:::o;44664:::-;44830:4;44868:2;44857:9;44853:18;44845:26;;44917:9;44911:4;44907:20;44903:1;44892:9;44888:17;44881:47;44945:131;45071:4;44945:131;:::i;:::-;44937:139;;44664:419;;;:::o;45089:::-;45255:4;45293:2;45282:9;45278:18;45270:26;;45342:9;45336:4;45332:20;45328:1;45317:9;45313:17;45306:47;45370:131;45496:4;45370:131;:::i;:::-;45362:139;;45089:419;;;:::o;45514:822::-;45747:4;45785:3;45774:9;45770:19;45762:27;;45799:69;45865:1;45854:9;45850:17;45841:6;45799:69;:::i;:::-;45878:72;45946:2;45935:9;45931:18;45922:6;45878:72;:::i;:::-;45997:9;45991:4;45987:20;45982:2;45971:9;45967:18;45960:48;46025:76;46096:4;46087:6;46025:76;:::i;:::-;46017:84;;46111:66;46173:2;46162:9;46158:18;46149:6;46111:66;:::i;:::-;46225:9;46219:4;46215:20;46209:3;46198:9;46194:19;46187:49;46253:76;46324:4;46315:6;46253:76;:::i;:::-;46245:84;;45514:822;;;;;;;;:::o;46342:739::-;46561:4;46599:3;46588:9;46584:19;46576:27;;46613:69;46679:1;46668:9;46664:17;46655:6;46613:69;:::i;:::-;46729:9;46723:4;46719:20;46714:2;46703:9;46699:18;46692:48;46757:76;46828:4;46819:6;46757:76;:::i;:::-;46749:84;;46843:70;46909:2;46898:9;46894:18;46885:6;46843:70;:::i;:::-;46960:9;46954:4;46950:20;46945:2;46934:9;46930:18;46923:48;46988:86;47069:4;47060:6;47052;46988:86;:::i;:::-;46980:94;;46342:739;;;;;;;;:::o;47087:719::-;47296:4;47334:3;47323:9;47319:19;47311:27;;47348:69;47414:1;47403:9;47399:17;47390:6;47348:69;:::i;:::-;47464:9;47458:4;47454:20;47449:2;47438:9;47434:18;47427:48;47492:76;47563:4;47554:6;47492:76;:::i;:::-;47484:84;;47578:70;47644:2;47633:9;47629:18;47620:6;47578:70;:::i;:::-;47695:9;47689:4;47685:20;47680:2;47669:9;47665:18;47658:48;47723:76;47794:4;47785:6;47723:76;:::i;:::-;47715:84;;47087:719;;;;;;;:::o;47812:1058::-;48110:4;48148:3;48137:9;48133:19;48125:27;;48162:69;48228:1;48217:9;48213:17;48204:6;48162:69;:::i;:::-;48278:9;48272:4;48268:20;48263:2;48252:9;48248:18;48241:48;48306:73;48374:4;48365:6;48306:73;:::i;:::-;48298:81;;48426:9;48420:4;48416:20;48411:2;48400:9;48396:18;48389:48;48454:76;48525:4;48516:6;48454:76;:::i;:::-;48446:84;;48540:88;48624:2;48613:9;48609:18;48600:6;48540:88;:::i;:::-;48638:73;48706:3;48695:9;48691:19;48682:6;48638:73;:::i;:::-;48759:9;48753:4;48749:20;48743:3;48732:9;48728:19;48721:49;48787:76;48858:4;48849:6;48787:76;:::i;:::-;48779:84;;47812:1058;;;;;;;;;:::o;48876:222::-;48969:4;49007:2;48996:9;48992:18;48984:26;;49020:71;49088:1;49077:9;49073:17;49064:6;49020:71;:::i;:::-;48876:222;;;;:::o;49104:332::-;49225:4;49263:2;49252:9;49248:18;49240:26;;49276:71;49344:1;49333:9;49329:17;49320:6;49276:71;:::i;:::-;49357:72;49425:2;49414:9;49410:18;49401:6;49357:72;:::i;:::-;49104:332;;;;;:::o;49442:129::-;49476:6;49503:20;;:::i;:::-;49493:30;;49532:33;49560:4;49552:6;49532:33;:::i;:::-;49442:129;;;:::o;49577:75::-;49610:6;49643:2;49637:9;49627:19;;49577:75;:::o;49658:307::-;49719:4;49809:18;49801:6;49798:30;49795:56;;;49831:18;;:::i;:::-;49795:56;49869:29;49891:6;49869:29;:::i;:::-;49861:37;;49953:4;49947;49943:15;49935:23;;49658:307;;;:::o;49971:308::-;50033:4;50123:18;50115:6;50112:30;50109:56;;;50145:18;;:::i;:::-;50109:56;50183:29;50205:6;50183:29;:::i;:::-;50175:37;;50267:4;50261;50257:15;50249:23;;49971:308;;;:::o;50285:140::-;50333:4;50356:3;50348:11;;50379:3;50376:1;50369:14;50413:4;50410:1;50400:18;50392:26;;50285:140;;;:::o;50431:98::-;50482:6;50516:5;50510:12;50500:22;;50431:98;;;:::o;50535:99::-;50587:6;50621:5;50615:12;50605:22;;50535:99;;;:::o;50640:168::-;50723:11;50757:6;50752:3;50745:19;50797:4;50792:3;50788:14;50773:29;;50640:168;;;;:::o;50814:147::-;50915:11;50952:3;50937:18;;50814:147;;;;:::o;50967:169::-;51051:11;51085:6;51080:3;51073:19;51125:4;51120:3;51116:14;51101:29;;50967:169;;;;:::o;51142:148::-;51244:11;51281:3;51266:18;;51142:148;;;;:::o;51296:305::-;51336:3;51355:20;51373:1;51355:20;:::i;:::-;51350:25;;51389:20;51407:1;51389:20;:::i;:::-;51384:25;;51543:1;51475:66;51471:74;51468:1;51465:81;51462:107;;;51549:18;;:::i;:::-;51462:107;51593:1;51590;51586:9;51579:16;;51296:305;;;;:::o;51607:185::-;51647:1;51664:20;51682:1;51664:20;:::i;:::-;51659:25;;51698:20;51716:1;51698:20;:::i;:::-;51693:25;;51737:1;51727:35;;51742:18;;:::i;:::-;51727:35;51784:1;51781;51777:9;51772:14;;51607:185;;;;:::o;51798:191::-;51838:4;51858:20;51876:1;51858:20;:::i;:::-;51853:25;;51892:20;51910:1;51892:20;:::i;:::-;51887:25;;51931:1;51928;51925:8;51922:34;;;51936:18;;:::i;:::-;51922:34;51981:1;51978;51974:9;51966:17;;51798:191;;;;:::o;51995:96::-;52032:7;52061:24;52079:5;52061:24;:::i;:::-;52050:35;;51995:96;;;:::o;52097:104::-;52142:7;52171:24;52189:5;52171:24;:::i;:::-;52160:35;;52097:104;;;:::o;52207:90::-;52241:7;52284:5;52277:13;52270:21;52259:32;;52207:90;;;:::o;52303:77::-;52340:7;52369:5;52358:16;;52303:77;;;:::o;52386:149::-;52422:7;52462:66;52455:5;52451:78;52440:89;;52386:149;;;:::o;52541:89::-;52577:7;52617:6;52610:5;52606:18;52595:29;;52541:89;;;:::o;52636:126::-;52673:7;52713:42;52706:5;52702:54;52691:65;;52636:126;;;:::o;52768:77::-;52805:7;52834:5;52823:16;;52768:77;;;:::o;52851:101::-;52887:7;52927:18;52920:5;52916:30;52905:41;;52851:101;;;:::o;52958:86::-;52993:7;53033:4;53026:5;53022:16;53011:27;;52958:86;;;:::o;53050:154::-;53134:6;53129:3;53124;53111:30;53196:1;53187:6;53182:3;53178:16;53171:27;53050:154;;;:::o;53210:307::-;53278:1;53288:113;53302:6;53299:1;53296:13;53288:113;;;53387:1;53382:3;53378:11;53372:18;53368:1;53363:3;53359:11;53352:39;53324:2;53321:1;53317:10;53312:15;;53288:113;;;53419:6;53416:1;53413:13;53410:101;;;53499:1;53490:6;53485:3;53481:16;53474:27;53410:101;53259:258;53210:307;;;:::o;53523:320::-;53567:6;53604:1;53598:4;53594:12;53584:22;;53651:1;53645:4;53641:12;53672:18;53662:81;;53728:4;53720:6;53716:17;53706:27;;53662:81;53790:2;53782:6;53779:14;53759:18;53756:38;53753:84;;;53809:18;;:::i;:::-;53753:84;53574:269;53523:320;;;:::o;53849:281::-;53932:27;53954:4;53932:27;:::i;:::-;53924:6;53920:40;54062:6;54050:10;54047:22;54026:18;54014:10;54011:34;54008:62;54005:88;;;54073:18;;:::i;:::-;54005:88;54113:10;54109:2;54102:22;53892:238;53849:281;;:::o;54136:233::-;54175:3;54198:24;54216:5;54198:24;:::i;:::-;54189:33;;54244:66;54237:5;54234:77;54231:103;;;54314:18;;:::i;:::-;54231:103;54361:1;54354:5;54350:13;54343:20;;54136:233;;;:::o;54375:94::-;54413:7;54442:21;54457:5;54442:21;:::i;:::-;54431:32;;54375:94;;;:::o;54475:79::-;54514:7;54543:5;54532:16;;54475:79;;;:::o;54560:176::-;54592:1;54609:20;54627:1;54609:20;:::i;:::-;54604:25;;54643:20;54661:1;54643:20;:::i;:::-;54638:25;;54682:1;54672:35;;54687:18;;:::i;:::-;54672:35;54728:1;54725;54721:9;54716:14;;54560:176;;;;:::o;54742:180::-;54790:77;54787:1;54780:88;54887:4;54884:1;54877:15;54911:4;54908:1;54901:15;54928:180;54976:77;54973:1;54966:88;55073:4;55070:1;55063:15;55097:4;55094:1;55087:15;55114:180;55162:77;55159:1;55152:88;55259:4;55256:1;55249:15;55283:4;55280:1;55273:15;55300:180;55348:77;55345:1;55338:88;55445:4;55442:1;55435:15;55469:4;55466:1;55459:15;55486:180;55534:77;55531:1;55524:88;55631:4;55628:1;55621:15;55655:4;55652:1;55645:15;55672:117;55781:1;55778;55771:12;55795:117;55904:1;55901;55894:12;55918:117;56027:1;56024;56017:12;56041:117;56150:1;56147;56140:12;56164:117;56273:1;56270;56263:12;56287:117;56396:1;56393;56386:12;56410:102;56451:6;56502:2;56498:7;56493:2;56486:5;56482:14;56478:28;56468:38;;56410:102;;;:::o;56518:96::-;56552:8;56601:5;56596:3;56592:15;56571:36;;56518:96;;;:::o;56620:295::-;56760:34;56756:1;56748:6;56744:14;56737:58;56829:34;56824:2;56816:6;56812:15;56805:59;56898:9;56893:2;56885:6;56881:15;56874:34;56620:295;:::o;56921:237::-;57061:34;57057:1;57049:6;57045:14;57038:58;57130:20;57125:2;57117:6;57113:15;57106:45;56921:237;:::o;57164:225::-;57304:34;57300:1;57292:6;57288:14;57281:58;57373:8;57368:2;57360:6;57356:15;57349:33;57164:225;:::o;57395:224::-;57535:34;57531:1;57523:6;57519:14;57512:58;57604:7;57599:2;57591:6;57587:15;57580:32;57395:224;:::o;57625:178::-;57765:30;57761:1;57753:6;57749:14;57742:54;57625:178;:::o;57809:223::-;57949:34;57945:1;57937:6;57933:14;57926:58;58018:6;58013:2;58005:6;58001:15;57994:31;57809:223;:::o;58038:175::-;58178:27;58174:1;58166:6;58162:14;58155:51;58038:175;:::o;58219:233::-;58359:34;58355:1;58347:6;58343:14;58336:58;58428:16;58423:2;58415:6;58411:15;58404:41;58219:233;:::o;58458:176::-;58598:28;58594:1;58586:6;58582:14;58575:52;58458:176;:::o;58640:221::-;58780:34;58776:1;58768:6;58764:14;58757:58;58849:4;58844:2;58836:6;58832:15;58825:29;58640:221;:::o;58867:169::-;59007:21;59003:1;58995:6;58991:14;58984:45;58867:169;:::o;59042:231::-;59182:34;59178:1;59170:6;59166:14;59159:58;59251:14;59246:2;59238:6;59234:15;59227:39;59042:231;:::o;59279:243::-;59419:34;59415:1;59407:6;59403:14;59396:58;59488:26;59483:2;59475:6;59471:15;59464:51;59279:243;:::o;59528:229::-;59668:34;59664:1;59656:6;59652:14;59645:58;59737:12;59732:2;59724:6;59720:15;59713:37;59528:229;:::o;59763:228::-;59903:34;59899:1;59891:6;59887:14;59880:58;59972:11;59967:2;59959:6;59955:15;59948:36;59763:228;:::o;59997:230::-;60137:34;60133:1;60125:6;60121:14;60114:58;60206:13;60201:2;60193:6;60189:15;60182:38;59997:230;:::o;60233:180::-;60373:32;60369:1;60361:6;60357:14;60350:56;60233:180;:::o;60419:182::-;60559:34;60555:1;60547:6;60543:14;60536:58;60419:182;:::o;60607:231::-;60747:34;60743:1;60735:6;60731:14;60724:58;60816:14;60811:2;60803:6;60799:15;60792:39;60607:231;:::o;60844:182::-;60984:34;60980:1;60972:6;60968:14;60961:58;60844:182;:::o;61032:239::-;61172:34;61168:1;61160:6;61156:14;61149:58;61241:22;61236:2;61228:6;61224:15;61217:47;61032:239;:::o;61277:234::-;61417:34;61413:1;61405:6;61401:14;61394:58;61486:17;61481:2;61473:6;61469:15;61462:42;61277:234;:::o;61517:220::-;61657:34;61653:1;61645:6;61641:14;61634:58;61726:3;61721:2;61713:6;61709:15;61702:28;61517:220;:::o;61743:114::-;;:::o;61863:236::-;62003:34;61999:1;61991:6;61987:14;61980:58;62072:19;62067:2;62059:6;62055:15;62048:44;61863:236;:::o;62105:225::-;62245:34;62241:1;62233:6;62229:14;62222:58;62314:8;62309:2;62301:6;62297:15;62290:33;62105:225;:::o;62336:178::-;62476:30;62472:1;62464:6;62460:14;62453:54;62336:178;:::o;62520:173::-;62660:25;62656:1;62648:6;62644:14;62637:49;62520:173;:::o;62699:122::-;62772:24;62790:5;62772:24;:::i;:::-;62765:5;62762:35;62752:63;;62811:1;62808;62801:12;62752:63;62699:122;:::o;62827:138::-;62908:32;62934:5;62908:32;:::i;:::-;62901:5;62898:43;62888:71;;62955:1;62952;62945:12;62888:71;62827:138;:::o;62971:116::-;63041:21;63056:5;63041:21;:::i;:::-;63034:5;63031:32;63021:60;;63077:1;63074;63067:12;63021:60;62971:116;:::o;63093:120::-;63165:23;63182:5;63165:23;:::i;:::-;63158:5;63155:34;63145:62;;63203:1;63200;63193:12;63145:62;63093:120;:::o;63219:::-;63291:23;63308:5;63291:23;:::i;:::-;63284:5;63281:34;63271:62;;63329:1;63326;63319:12;63271:62;63219:120;:::o;63345:122::-;63418:24;63436:5;63418:24;:::i;:::-;63411:5;63408:35;63398:63;;63457:1;63454;63447:12;63398:63;63345:122;:::o;63473:120::-;63545:23;63562:5;63545:23;:::i;:::-;63538:5;63535:34;63525:62;;63583:1;63580;63573:12;63525:62;63473:120;:::o;63599:118::-;63670:22;63686:5;63670:22;:::i;:::-;63663:5;63660:33;63650:61;;63707:1;63704;63697:12;63650:61;63599:118;:::o

Swarm Source

ipfs://d48dafb31a3887bbdf8eb5b4964de7157d952b796737c4fc4eb0a8f45646542a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.