ETH Price: $3,312.56 (+1.93%)
Gas: 3 Gwei

Token

Zero Ape Club (ZAPE)
 

Overview

Max Total Supply

0 ZAPE

Holders

429

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gotdamnhotdog.eth
Balance
2 ZAPE
0xe277dC0Fcf5911906C2912EDE48B7F631D7E2c3E
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:
ZAPE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: BUSL-1.1
// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol
/*
Mint Day: 10 april 2022
Mint Price: Free Mint
Twitter: https://twitter.com/ape_zero
 ________   _______ .______        ______   
|       /  |   ____||   _  \      /  __  \  
`---/  /   |  |__   |  |_)  |    |  |  |  | 
   /  /    |   __|  |      /     |  |  |  | 
  /  /----.|  |____ |  |\  \----.|  `--'  | 
 /________||_______|| _| `._____| \______/  
                                            
     ___      .______    _______      ______  __       __    __  .______   
    /   \     |   _  \  |   ____|    /      ||  |     |  |  |  | |   _  \  
   /  ^  \    |  |_)  | |  |__      |  ,----'|  |     |  |  |  | |  |_)  | 
  /  /_\  \   |   ___/  |   __|     |  |     |  |     |  |  |  | |   _  <  
 /  _____  \  |  |      |  |____    |  `----.|  `----.|  `--'  | |  |_)  | 
/__/     \__\ | _|      |_______|    \______||_______| \______/  |______/  

 */


pragma solidity >=0.5.0;

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

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

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

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

// File: contracts/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/interfaces/ILayerZeroReceiver.sol



pragma solidity >=0.5.0;

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/NonblockingReceiver.sol


pragma solidity ^0.8.6;
abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.7;
contract ZAPE is Ownable, ERC721, NonblockingReceiver {

    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 0;
    uint256 MAX_MINT_ETHEREUM = 1865;
    uint maxTXMint = 2;
    bool start = false;

    uint gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("Zero Ape Club", "ZAPE") { 
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }
    function mint(uint8 numTokens) external payable {
        require(start == true , "ZAPE: Sale hasn't not started yet");
        require(numTokens <= maxTXMint , "ZAPE: Max mint amount per session exceeded");
        require(nextTokenId + numTokens <= MAX_MINT_ETHEREUM, "ZAPE: Mint exceeds supply");
        for (uint256 i = 1; i <= numTokens; i++) {
             _safeMint(msg.sender, ++nextTokenId);
        }       
    }    
    function launch() public onlyOwner{
        start = true;
    }
    function estFee(uint16 _chainId, uint tokenId) public view returns (uint) {
        bytes memory payload = abi.encode(msg.sender, tokenId);

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

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        return messageFee;
    }
    // This function transfers the nft from your address on the 
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint tokenId) public payable {
        require(msg.sender == ownerOf(tokenId), "You must own the token to traverse");
        require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel");

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

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

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

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "ZAPE: 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 donateForDevelop() external payable {
        // thank you
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":[],"name":"donateForDevelop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"estFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","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":"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"}]

60806040526000600c55610749600d556002600e556000600f60006101000a81548160ff021916908315150217905550620557306010553480156200004357600080fd5b50604051620055dd380380620055dd8339818101604052810190620000699190620003dd565b6040518060400160405280600d81526020017f5a65726f2041706520436c7562000000000000000000000000000000000000008152506040518060400160405280600481526020017f5a41504500000000000000000000000000000000000000000000000000000000815250620000f5620000e9620001cc60201b60201c565b620001d460201b60201c565b81600190805190602001906200010d92919062000298565b5080600290805190602001906200012692919062000298565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001c392919062000298565b50505062000615565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a6906200050c565b90600052602060002090601f016020900481019282620002ca576000855562000316565b82601f10620002e557805160ff191683800117855562000316565b8280016001018555821562000316579182015b8281111562000315578251825591602001919060010190620002f8565b5b50905062000325919062000329565b5090565b5b80821115620003445760008160009055506001016200032a565b5090565b60006200035f62000359846200046c565b62000443565b9050828152602081018484840111156200037e576200037d620005db565b5b6200038b848285620004d6565b509392505050565b600081519050620003a481620005fb565b92915050565b600082601f830112620003c257620003c1620005d6565b5b8151620003d484826020860162000348565b91505092915050565b60008060408385031215620003f757620003f6620005e5565b5b600083015167ffffffffffffffff811115620004185762000417620005e0565b5b6200042685828601620003aa565b9250506020620004398582860162000393565b9150509250929050565b60006200044f62000462565b90506200045d828262000542565b919050565b6000604051905090565b600067ffffffffffffffff8211156200048a5762000489620005a7565b5b6200049582620005ea565b9050602081019050919050565b6000620004af82620004b6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004f6578082015181840152602081019050620004d9565b8381111562000506576000848401525b50505050565b600060028204905060018216806200052557607f821691505b602082108114156200053c576200053b62000578565b5b50919050565b6200054d82620005ea565b810181811067ffffffffffffffff821117156200056f576200056e620005a7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200060681620004a2565b81146200061257600080fd5b50565b614fb880620006256000396000f3fe6080604052600436106101d75760003560e01c8063715018a611610102578063b2bdfa7b11610095578063d1deba1f11610064578063d1deba1f1461067b578063e985e9c514610697578063eb8d72b7146106d4578063f2fde38b146106fd576101d7565b8063b2bdfa7b146105ce578063b88d4fde146105f9578063c87b56dd14610622578063cf89fa031461065f576101d7565b80638ee74912116100d15780638ee7491214610513578063943fb8721461055157806395d89b411461057a578063a22cb465146105a5576101d7565b8063715018a61461048a5780637533d788146104a157806377e05b3d146104de5780638da5cb5b146104e8576101d7565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103cb5780636352211e146103f45780636ecd23061461043157806370a082311461044d576101d7565b806323b872dd1461031357806327b1abb01461033c5780632e1a7d4d1461037957806342842e0e146103a2576101d7565b806306fdde03116101b657806306fdde0314610259578063081812fc14610284578063095ea7b3146102c15780631c37a822146102ea576101d7565b80621d3567146101dc57806301339c211461020557806301ffc9a71461021c575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe9190613435565b610726565b005b34801561021157600080fd5b5061021a610968565b005b34801561022857600080fd5b50610243600480360381019061023e91906131f2565b610a01565b6040516102509190613d57565b60405180910390f35b34801561026557600080fd5b5061026e610ae3565b60405161027b9190613d94565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613514565b610b75565b6040516102b89190613cc7565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906131b2565b610bfa565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613435565b610d12565b005b34801561031f57600080fd5b5061033a6004803603810190610335919061309c565b610d92565b005b34801561034857600080fd5b50610363600480360381019061035e91906134d4565b610df2565b6040516103709190614275565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190613514565b610f0c565b005b3480156103ae57600080fd5b506103c960048036038101906103c4919061309c565b61105a565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061324c565b61107a565b005b34801561040057600080fd5b5061041b60048036038101906104169190613514565b611110565b6040516104289190613cc7565b60405180910390f35b61044b60048036038101906104469190613581565b6111c2565b005b34801561045957600080fd5b50610474600480360381019061046f9190612fef565b6112fb565b6040516104819190614275565b60405180910390f35b34801561049657600080fd5b5061049f6113b3565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613295565b61143b565b6040516104d59190613d72565b60405180910390f35b6104e66114db565b005b3480156104f457600080fd5b506104fd6114dd565b60405161050a9190613cc7565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190613322565b611506565b604051610548929190614290565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613514565b61155a565b005b34801561058657600080fd5b5061058f6115e0565b60405161059c9190613d94565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613172565b611672565b005b3480156105da57600080fd5b506105e3611688565b6040516105f09190613cc7565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906130ef565b6116ae565b005b34801561062e57600080fd5b5061064960048036038101906106449190613514565b611710565b6040516106569190613d94565b60405180910390f35b610679600480360381019061067491906134d4565b6117b7565b005b61069560048036038101906106909190613391565b611aaa565b005b3480156106a357600080fd5b506106be60048036038101906106b9919061305c565b611c4a565b6040516106cb9190613d57565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f691906132c2565b611cde565b005b34801561070957600080fd5b50610724600480360381019061071f9190612fef565b611d8a565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078057600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546107a69061455f565b905083511480156107ec5750600960008561ffff1661ffff1681526020019081526020016000206040516107da9190613c4b565b60405180910390208380519060200120145b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290614016565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161086a94939291906141ac565b600060405180830381600087803b15801561088457600080fd5b505af1925050508015610895575060015b610961576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108df9190613c34565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161095494939291906141ac565b60405180910390a1610962565b5b50505050565b610970611e82565b73ffffffffffffffffffffffffffffffffffffffff1661098e6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90613ff6565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610acc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610adc5750610adb82611e8a565b5b9050919050565b606060018054610af29061455f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e9061455f565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b8082611ef4565b610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690613fd6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0582611110565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90614076565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c95611e82565b73ffffffffffffffffffffffffffffffffffffffff161480610cc45750610cc381610cbe611e82565b611c4a565b5b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613ed6565b60405180910390fd5b610d0d8383611f60565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613f96565b60405180910390fd5b610d8c84848484612019565b50505050565b610da3610d9d611e82565b82612046565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990614096565b60405180910390fd5b610ded838383612124565b505050565b6000803383604051602001610e08929190613d2e565b6040516020818303038152906040529050600060019050600081601054604051602001610e36929190613c9b565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830876000876040518663ffffffff1660e01b8152600401610ead9594939291906140f6565b604080518083038186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efc9190613541565b5090508094505050505092915050565b610f14611e82565b73ffffffffffffffffffffffffffffffffffffffff16610f326114dd565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613ff6565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610fd090613c86565b60006040518083038185875af1925050503d806000811461100d576040519150601f19603f3d011682016040523d82523d6000602084013e611012565b606091505b5050905080611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613e76565b60405180910390fd5b5050565b611075838383604051806020016040528060008152506116ae565b505050565b611082611e82565b73ffffffffffffffffffffffffffffffffffffffff166110a06114dd565b73ffffffffffffffffffffffffffffffffffffffff16146110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613ff6565b60405180910390fd5b80600b908051906020019061110c929190612cbe565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613f56565b60405180910390fd5b80915050919050565b60011515600f60009054906101000a900460ff16151514611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906140d6565b60405180910390fd5b600e548160ff161115611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790613f16565b60405180910390fd5b600d548160ff16600c5461127491906143a3565b11156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90613ef6565b60405180910390fd5b6000600190505b8160ff1681116112f7576112e433600c600081546112d9906145c2565b919050819055612380565b80806112ef906145c2565b9150506112bc565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613f36565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113bb611e82565b73ffffffffffffffffffffffffffffffffffffffff166113d96114dd565b73ffffffffffffffffffffffffffffffffffffffff161461142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690613ff6565b60405180910390fd5b611439600061239e565b565b6009602052806000526040600020600091509050805461145a9061455f565b80601f01602080910402602001604051908101604052809291908181526020018280546114869061455f565b80156114d35780601f106114a8576101008083540402835291602001916114d3565b820191906000526020600020905b8154815290600101906020018083116114b657829003601f168201915b505050505081565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611562611e82565b73ffffffffffffffffffffffffffffffffffffffff166115806114dd565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613ff6565b60405180910390fd5b8060108190555050565b6060600280546115ef9061455f565b80601f016020809104026020016040519081016040528092919081815260200182805461161b9061455f565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b61168461167d611e82565b8383612462565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116bf6116b9611e82565b83612046565b6116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614096565b60405180910390fd5b61170a848484846125cf565b50505050565b606061171b82611ef4565b61175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190614056565b60405180910390fd5b600061176461262b565b9050600081511161178457604051806020016040528060008152506117af565b8061178e846126bd565b60405160200161179f929190613c62565b6040516020818303038152906040525b915050919050565b6117c081611110565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613e96565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546118559061455f565b905011611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613e36565b60405180910390fd5b6118a08161281e565b600033826040516020016118b5929190613d2e565b60405160208183030381529060405290506000600190506000816010546040516020016118e3929190613c9b565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b815260040161195a9594939291906140f6565b604080518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a99190613541565b509050803410156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613f76565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b8152600401611a70969594939291906141ff565b6000604051808303818588803b158015611a8957600080fd5b505af1158015611a9d573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff16815260200190815260200160002085604051611ad59190613c34565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906140b6565b60405180910390fd5b806000015483839050148015611b7a575080600101548383604051611b70929190613c1b565b6040518091039020145b611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613e56565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611c10959493929190614157565b600060405180830381600087803b158015611c2a57600080fd5b505af1158015611c3e573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ce6611e82565b73ffffffffffffffffffffffffffffffffffffffff16611d046114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613ff6565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611d84929190612d44565b50505050565b611d92611e82565b73ffffffffffffffffffffffffffffffffffffffff16611db06114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90613ff6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90613dd6565b60405180910390fd5b611e7f8161239e565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fd383611110565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612030919061301c565b9150915061203e8282612380565b505050505050565b600061205182611ef4565b612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790613eb6565b60405180910390fd5b600061209b83611110565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061210a57508373ffffffffffffffffffffffffffffffffffffffff166120f284610b75565b73ffffffffffffffffffffffffffffffffffffffff16145b8061211b575061211a8185611c4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661214482611110565b73ffffffffffffffffffffffffffffffffffffffff161461219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614036565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190613df6565b60405180910390fd5b61221583838361292f565b612220600082611f60565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612270919061442a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c791906143a3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61239a828260405180602001604052806000815250612934565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613e16565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125c29190613d57565b60405180910390a3505050565b6125da848484612124565b6125e68484848461298f565b612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90613db6565b60405180910390fd5b50505050565b6060600b805461263a9061455f565b80601f01602080910402602001604051908101604052809291908181526020018280546126669061455f565b80156126b35780601f10612688576101008083540402835291602001916126b3565b820191906000526020600020905b81548152906001019060200180831161269657829003601f168201915b5050505050905090565b60606000821415612705576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612819565b600082905060005b60008214612737578080612720906145c2565b915050600a8261273091906143f9565b915061270d565b60008167ffffffffffffffff81111561275357612752614714565b5b6040519080825280601f01601f1916602001820160405280156127855781602001600182028036833780820191505090505b5090505b600085146128125760018261279e919061442a565b9150600a856127ad9190614627565b60306127b991906143a3565b60f81b8183815181106127cf576127ce6146e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280b91906143f9565b9450612789565b8093505050505b919050565b600061282982611110565b90506128378160008461292f565b612842600083611f60565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612892919061442a565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b61293e8383612b26565b61294b600084848461298f565b61298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190613db6565b60405180910390fd5b505050565b60006129b08473ffffffffffffffffffffffffffffffffffffffff16612cab565b15612b19578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d9611e82565b8786866040518563ffffffff1660e01b81526004016129fb9493929190613ce2565b602060405180830381600087803b158015612a1557600080fd5b505af1925050508015612a4657506040513d601f19601f82011682018060405250810190612a43919061321f565b60015b612ac9573d8060008114612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b50600081511415612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab890613db6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b1e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90613fb6565b60405180910390fd5b612ba26000838361292f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bf291906143a3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612cca9061455f565b90600052602060002090601f016020900481019282612cec5760008555612d33565b82601f10612d0557805160ff1916838001178555612d33565b82800160010185558215612d33579182015b82811115612d32578251825591602001919060010190612d17565b5b509050612d409190612dca565b5090565b828054612d509061455f565b90600052602060002090601f016020900481019282612d725760008555612db9565b82601f10612d8b57803560ff1916838001178555612db9565b82800160010185558215612db9579182015b82811115612db8578235825591602001919060010190612d9d565b5b509050612dc69190612dca565b5090565b5b80821115612de3576000816000905550600101612dcb565b5090565b6000612dfa612df5846142de565b6142b9565b905082815260208101848484011115612e1657612e15614752565b5b612e2184828561451d565b509392505050565b6000612e3c612e378461430f565b6142b9565b905082815260208101848484011115612e5857612e57614752565b5b612e6384828561451d565b509392505050565b600081359050612e7a81614eca565b92915050565b600081519050612e8f81614ee1565b92915050565b600081359050612ea481614ef8565b92915050565b600081359050612eb981614f0f565b92915050565b600081519050612ece81614f0f565b92915050565b60008083601f840112612eea57612ee9614748565b5b8235905067ffffffffffffffff811115612f0757612f06614743565b5b602083019150836001820283011115612f2357612f2261474d565b5b9250929050565b600082601f830112612f3f57612f3e614748565b5b8135612f4f848260208601612de7565b91505092915050565b600082601f830112612f6d57612f6c614748565b5b8135612f7d848260208601612e29565b91505092915050565b600081359050612f9581614f26565b92915050565b600081359050612faa81614f3d565b92915050565b600081519050612fbf81614f3d565b92915050565b600081359050612fd481614f54565b92915050565b600081359050612fe981614f6b565b92915050565b6000602082840312156130055761300461475c565b5b600061301384828501612e6b565b91505092915050565b600080604083850312156130335761303261475c565b5b600061304185828601612e80565b925050602061305285828601612fb0565b9150509250929050565b600080604083850312156130735761307261475c565b5b600061308185828601612e6b565b925050602061309285828601612e6b565b9150509250929050565b6000806000606084860312156130b5576130b461475c565b5b60006130c386828701612e6b565b93505060206130d486828701612e6b565b92505060406130e586828701612f9b565b9150509250925092565b600080600080608085870312156131095761310861475c565b5b600061311787828801612e6b565b945050602061312887828801612e6b565b935050604061313987828801612f9b565b925050606085013567ffffffffffffffff81111561315a57613159614757565b5b61316687828801612f2a565b91505092959194509250565b600080604083850312156131895761318861475c565b5b600061319785828601612e6b565b92505060206131a885828601612e95565b9150509250929050565b600080604083850312156131c9576131c861475c565b5b60006131d785828601612e6b565b92505060206131e885828601612f9b565b9150509250929050565b6000602082840312156132085761320761475c565b5b600061321684828501612eaa565b91505092915050565b6000602082840312156132355761323461475c565b5b600061324384828501612ebf565b91505092915050565b6000602082840312156132625761326161475c565b5b600082013567ffffffffffffffff8111156132805761327f614757565b5b61328c84828501612f58565b91505092915050565b6000602082840312156132ab576132aa61475c565b5b60006132b984828501612f86565b91505092915050565b6000806000604084860312156132db576132da61475c565b5b60006132e986828701612f86565b935050602084013567ffffffffffffffff81111561330a57613309614757565b5b61331686828701612ed4565b92509250509250925092565b60008060006060848603121561333b5761333a61475c565b5b600061334986828701612f86565b935050602084013567ffffffffffffffff81111561336a57613369614757565b5b61337686828701612f2a565b925050604061338786828701612f9b565b9150509250925092565b6000806000806000608086880312156133ad576133ac61475c565b5b60006133bb88828901612f86565b955050602086013567ffffffffffffffff8111156133dc576133db614757565b5b6133e888828901612f2a565b94505060406133f988828901612fc5565b935050606086013567ffffffffffffffff81111561341a57613419614757565b5b61342688828901612ed4565b92509250509295509295909350565b6000806000806080858703121561344f5761344e61475c565b5b600061345d87828801612f86565b945050602085013567ffffffffffffffff81111561347e5761347d614757565b5b61348a87828801612f2a565b935050604061349b87828801612fc5565b925050606085013567ffffffffffffffff8111156134bc576134bb614757565b5b6134c887828801612f2a565b91505092959194509250565b600080604083850312156134eb576134ea61475c565b5b60006134f985828601612f86565b925050602061350a85828601612f9b565b9150509250929050565b60006020828403121561352a5761352961475c565b5b600061353884828501612f9b565b91505092915050565b600080604083850312156135585761355761475c565b5b600061356685828601612fb0565b925050602061357785828601612fb0565b9150509250929050565b6000602082840312156135975761359661475c565b5b60006135a584828501612fda565b91505092915050565b6135b781614470565b82525050565b6135c68161445e565b82525050565b6135d581614482565b82525050565b6135e48161448e565b82525050565b60006135f6838561436b565b935061360383858461451d565b61360c83614761565b840190509392505050565b6000613623838561437c565b935061363083858461451d565b82840190509392505050565b600061364782614355565b613651818561436b565b935061366181856020860161452c565b61366a81614761565b840191505092915050565b600061368082614355565b61368a818561437c565b935061369a81856020860161452c565b80840191505092915050565b600081546136b38161455f565b6136bd818661436b565b945060018216600081146136d857600181146136ea5761371d565b60ff198316865260208601935061371d565b6136f385614340565b60005b83811015613715578154818901526001820191506020810190506136f6565b808801955050505b50505092915050565b600081546137338161455f565b61373d818661437c565b9450600182166000811461375857600181146137695761379c565b60ff1983168652818601935061379c565b61377285614340565b60005b8381101561379457815481890152600182019150602081019050613775565b838801955050505b50505092915050565b60006137b082614360565b6137ba8185614387565b93506137ca81856020860161452c565b6137d381614761565b840191505092915050565b60006137e982614360565b6137f38185614398565b935061380381856020860161452c565b80840191505092915050565b600061381c603283614387565b91506138278261477f565b604082019050919050565b600061383f602683614387565b915061384a826147ce565b604082019050919050565b6000613862602483614387565b915061386d8261481d565b604082019050919050565b6000613885601983614387565b91506138908261486c565b602082019050919050565b60006138a8602e83614387565b91506138b382614895565b604082019050919050565b60006138cb601a83614387565b91506138d6826148e4565b602082019050919050565b60006138ee601e83614387565b91506138f98261490d565b602082019050919050565b6000613911602283614387565b915061391c82614936565b604082019050919050565b6000613934602c83614387565b915061393f82614985565b604082019050919050565b6000613957603883614387565b9150613962826149d4565b604082019050919050565b600061397a601983614387565b915061398582614a23565b602082019050919050565b600061399d602a83614387565b91506139a882614a4c565b604082019050919050565b60006139c0602a83614387565b91506139cb82614a9b565b604082019050919050565b60006139e3602983614387565b91506139ee82614aea565b604082019050919050565b6000613a06604983614387565b9150613a1182614b39565b606082019050919050565b6000613a29602b83614387565b9150613a3482614bae565b604082019050919050565b6000613a4c602083614387565b9150613a5782614bfd565b602082019050919050565b6000613a6f602c83614387565b9150613a7a82614c26565b604082019050919050565b6000613a92602083614387565b9150613a9d82614c75565b602082019050919050565b6000613ab5603483614387565b9150613ac082614c9e565b604082019050919050565b6000613ad8602983614387565b9150613ae382614ced565b604082019050919050565b6000613afb602f83614387565b9150613b0682614d3c565b604082019050919050565b6000613b1e602183614387565b9150613b2982614d8b565b604082019050919050565b6000613b4160008361437c565b9150613b4c82614dda565b600082019050919050565b6000613b64603183614387565b9150613b6f82614ddd565b604082019050919050565b6000613b87602683614387565b9150613b9282614e2c565b604082019050919050565b6000613baa602183614387565b9150613bb582614e7b565b604082019050919050565b613bc9816144c4565b82525050565b613be0613bdb826144c4565b61460b565b82525050565b613bef816144f2565b82525050565b613c06613c01826144f2565b61461d565b82525050565b613c15816144fc565b82525050565b6000613c28828486613617565b91508190509392505050565b6000613c408284613675565b915081905092915050565b6000613c578284613726565b915081905092915050565b6000613c6e82856137de565b9150613c7a82846137de565b91508190509392505050565b6000613c9182613b34565b9150819050919050565b6000613ca78285613bcf565b600282019150613cb78284613bf5565b6020820191508190509392505050565b6000602082019050613cdc60008301846135bd565b92915050565b6000608082019050613cf760008301876135bd565b613d0460208301866135bd565b613d116040830185613be6565b8181036060830152613d23818461363c565b905095945050505050565b6000604082019050613d4360008301856135bd565b613d506020830184613be6565b9392505050565b6000602082019050613d6c60008301846135cc565b92915050565b60006020820190508181036000830152613d8c818461363c565b905092915050565b60006020820190508181036000830152613dae81846137a5565b905092915050565b60006020820190508181036000830152613dcf8161380f565b9050919050565b60006020820190508181036000830152613def81613832565b9050919050565b60006020820190508181036000830152613e0f81613855565b9050919050565b60006020820190508181036000830152613e2f81613878565b9050919050565b60006020820190508181036000830152613e4f8161389b565b9050919050565b60006020820190508181036000830152613e6f816138be565b9050919050565b60006020820190508181036000830152613e8f816138e1565b9050919050565b60006020820190508181036000830152613eaf81613904565b9050919050565b60006020820190508181036000830152613ecf81613927565b9050919050565b60006020820190508181036000830152613eef8161394a565b9050919050565b60006020820190508181036000830152613f0f8161396d565b9050919050565b60006020820190508181036000830152613f2f81613990565b9050919050565b60006020820190508181036000830152613f4f816139b3565b9050919050565b60006020820190508181036000830152613f6f816139d6565b9050919050565b60006020820190508181036000830152613f8f816139f9565b9050919050565b60006020820190508181036000830152613faf81613a1c565b9050919050565b60006020820190508181036000830152613fcf81613a3f565b9050919050565b60006020820190508181036000830152613fef81613a62565b9050919050565b6000602082019050818103600083015261400f81613a85565b9050919050565b6000602082019050818103600083015261402f81613aa8565b9050919050565b6000602082019050818103600083015261404f81613acb565b9050919050565b6000602082019050818103600083015261406f81613aee565b9050919050565b6000602082019050818103600083015261408f81613b11565b9050919050565b600060208201905081810360008301526140af81613b57565b9050919050565b600060208201905081810360008301526140cf81613b7a565b9050919050565b600060208201905081810360008301526140ef81613b9d565b9050919050565b600060a08201905061410b6000830188613bc0565b61411860208301876135bd565b818103604083015261412a818661363c565b905061413960608301856135cc565b818103608083015261414b818461363c565b90509695505050505050565b600060808201905061416c6000830188613bc0565b818103602083015261417e818761363c565b905061418d6040830186613c0c565b81810360608301526141a08184866135ea565b90509695505050505050565b60006080820190506141c16000830187613bc0565b81810360208301526141d3818661363c565b90506141e26040830185613c0c565b81810360608301526141f4818461363c565b905095945050505050565b600060c0820190506142146000830189613bc0565b818103602083015261422681886136a6565b9050818103604083015261423a818761363c565b905061424960608301866135ae565b61425660808301856135bd565b81810360a0830152614268818461363c565b9050979650505050505050565b600060208201905061428a6000830184613be6565b92915050565b60006040820190506142a56000830185613be6565b6142b260208301846135db565b9392505050565b60006142c36142d4565b90506142cf8282614591565b919050565b6000604051905090565b600067ffffffffffffffff8211156142f9576142f8614714565b5b61430282614761565b9050602081019050919050565b600067ffffffffffffffff82111561432a57614329614714565b5b61433382614761565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143ae826144f2565b91506143b9836144f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ee576143ed614658565b5b828201905092915050565b6000614404826144f2565b915061440f836144f2565b92508261441f5761441e614687565b5b828204905092915050565b6000614435826144f2565b9150614440836144f2565b92508282101561445357614452614658565b5b828203905092915050565b6000614469826144d2565b9050919050565b600061447b826144d2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561454a57808201518184015260208101905061452f565b83811115614559576000848401525b50505050565b6000600282049050600182168061457757607f821691505b6020821081141561458b5761458a6146b6565b5b50919050565b61459a82614761565b810181811067ffffffffffffffff821117156145b9576145b8614714565b5b80604052505050565b60006145cd826144f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614600576145ff614658565b5b600182019050919050565b600061461682614772565b9050919050565b6000819050919050565b6000614632826144f2565b915061463d836144f2565b92508261464d5761464c614687565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f5a4150453a204661696c656420746f2077697468647261772045746865720000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5a4150453a204d696e74206578636565647320737570706c7900000000000000600082015250565b7f5a4150453a204d6178206d696e7420616d6f756e74207065722073657373696f60008201527f6e20657863656564656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5a4150453a206d73672e76616c7565206e6f7420656e6f75676820746f20636f60008201527f766572206d6573736167654665652e2053656e642067617320666f72206d657360208201527f7361676520666565730000000000000000000000000000000000000000000000604082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f5a4150453a2053616c65206861736e2774206e6f74207374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b614ed38161445e565b8114614ede57600080fd5b50565b614eea81614470565b8114614ef557600080fd5b50565b614f0181614482565b8114614f0c57600080fd5b50565b614f1881614498565b8114614f2357600080fd5b50565b614f2f816144c4565b8114614f3a57600080fd5b50565b614f46816144f2565b8114614f5157600080fd5b50565b614f5d816144fc565b8114614f6857600080fd5b50565b614f7481614510565b8114614f7f57600080fd5b5056fea264697066735822122089a32663c2bb4e3223d0ddbe579afd1c474e1e4f134952d96775a74bb8da828b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636e413153384d454538485a4e7079504a37586542505a6d386e426b79394a73737761775a67437257424d742f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d75760003560e01c8063715018a611610102578063b2bdfa7b11610095578063d1deba1f11610064578063d1deba1f1461067b578063e985e9c514610697578063eb8d72b7146106d4578063f2fde38b146106fd576101d7565b8063b2bdfa7b146105ce578063b88d4fde146105f9578063c87b56dd14610622578063cf89fa031461065f576101d7565b80638ee74912116100d15780638ee7491214610513578063943fb8721461055157806395d89b411461057a578063a22cb465146105a5576101d7565b8063715018a61461048a5780637533d788146104a157806377e05b3d146104de5780638da5cb5b146104e8576101d7565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103cb5780636352211e146103f45780636ecd23061461043157806370a082311461044d576101d7565b806323b872dd1461031357806327b1abb01461033c5780632e1a7d4d1461037957806342842e0e146103a2576101d7565b806306fdde03116101b657806306fdde0314610259578063081812fc14610284578063095ea7b3146102c15780631c37a822146102ea576101d7565b80621d3567146101dc57806301339c211461020557806301ffc9a71461021c575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe9190613435565b610726565b005b34801561021157600080fd5b5061021a610968565b005b34801561022857600080fd5b50610243600480360381019061023e91906131f2565b610a01565b6040516102509190613d57565b60405180910390f35b34801561026557600080fd5b5061026e610ae3565b60405161027b9190613d94565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613514565b610b75565b6040516102b89190613cc7565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e391906131b2565b610bfa565b005b3480156102f657600080fd5b50610311600480360381019061030c9190613435565b610d12565b005b34801561031f57600080fd5b5061033a6004803603810190610335919061309c565b610d92565b005b34801561034857600080fd5b50610363600480360381019061035e91906134d4565b610df2565b6040516103709190614275565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190613514565b610f0c565b005b3480156103ae57600080fd5b506103c960048036038101906103c4919061309c565b61105a565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061324c565b61107a565b005b34801561040057600080fd5b5061041b60048036038101906104169190613514565b611110565b6040516104289190613cc7565b60405180910390f35b61044b60048036038101906104469190613581565b6111c2565b005b34801561045957600080fd5b50610474600480360381019061046f9190612fef565b6112fb565b6040516104819190614275565b60405180910390f35b34801561049657600080fd5b5061049f6113b3565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613295565b61143b565b6040516104d59190613d72565b60405180910390f35b6104e66114db565b005b3480156104f457600080fd5b506104fd6114dd565b60405161050a9190613cc7565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190613322565b611506565b604051610548929190614290565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613514565b61155a565b005b34801561058657600080fd5b5061058f6115e0565b60405161059c9190613d94565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613172565b611672565b005b3480156105da57600080fd5b506105e3611688565b6040516105f09190613cc7565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906130ef565b6116ae565b005b34801561062e57600080fd5b5061064960048036038101906106449190613514565b611710565b6040516106569190613d94565b60405180910390f35b610679600480360381019061067491906134d4565b6117b7565b005b61069560048036038101906106909190613391565b611aaa565b005b3480156106a357600080fd5b506106be60048036038101906106b9919061305c565b611c4a565b6040516106cb9190613d57565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f691906132c2565b611cde565b005b34801561070957600080fd5b50610724600480360381019061071f9190612fef565b611d8a565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078057600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546107a69061455f565b905083511480156107ec5750600960008561ffff1661ffff1681526020019081526020016000206040516107da9190613c4b565b60405180910390208380519060200120145b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290614016565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161086a94939291906141ac565b600060405180830381600087803b15801561088457600080fd5b505af1925050508015610895575060015b610961576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108df9190613c34565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161095494939291906141ac565b60405180910390a1610962565b5b50505050565b610970611e82565b73ffffffffffffffffffffffffffffffffffffffff1661098e6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90613ff6565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610acc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610adc5750610adb82611e8a565b5b9050919050565b606060018054610af29061455f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e9061455f565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b8082611ef4565b610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690613fd6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0582611110565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90614076565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c95611e82565b73ffffffffffffffffffffffffffffffffffffffff161480610cc45750610cc381610cbe611e82565b611c4a565b5b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613ed6565b60405180910390fd5b610d0d8383611f60565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613f96565b60405180910390fd5b610d8c84848484612019565b50505050565b610da3610d9d611e82565b82612046565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990614096565b60405180910390fd5b610ded838383612124565b505050565b6000803383604051602001610e08929190613d2e565b6040516020818303038152906040529050600060019050600081601054604051602001610e36929190613c9b565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830876000876040518663ffffffff1660e01b8152600401610ead9594939291906140f6565b604080518083038186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efc9190613541565b5090508094505050505092915050565b610f14611e82565b73ffffffffffffffffffffffffffffffffffffffff16610f326114dd565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613ff6565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610fd090613c86565b60006040518083038185875af1925050503d806000811461100d576040519150601f19603f3d011682016040523d82523d6000602084013e611012565b606091505b5050905080611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613e76565b60405180910390fd5b5050565b611075838383604051806020016040528060008152506116ae565b505050565b611082611e82565b73ffffffffffffffffffffffffffffffffffffffff166110a06114dd565b73ffffffffffffffffffffffffffffffffffffffff16146110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613ff6565b60405180910390fd5b80600b908051906020019061110c929190612cbe565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613f56565b60405180910390fd5b80915050919050565b60011515600f60009054906101000a900460ff16151514611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906140d6565b60405180910390fd5b600e548160ff161115611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790613f16565b60405180910390fd5b600d548160ff16600c5461127491906143a3565b11156112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90613ef6565b60405180910390fd5b6000600190505b8160ff1681116112f7576112e433600c600081546112d9906145c2565b919050819055612380565b80806112ef906145c2565b9150506112bc565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613f36565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113bb611e82565b73ffffffffffffffffffffffffffffffffffffffff166113d96114dd565b73ffffffffffffffffffffffffffffffffffffffff161461142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690613ff6565b60405180910390fd5b611439600061239e565b565b6009602052806000526040600020600091509050805461145a9061455f565b80601f01602080910402602001604051908101604052809291908181526020018280546114869061455f565b80156114d35780601f106114a8576101008083540402835291602001916114d3565b820191906000526020600020905b8154815290600101906020018083116114b657829003601f168201915b505050505081565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611562611e82565b73ffffffffffffffffffffffffffffffffffffffff166115806114dd565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613ff6565b60405180910390fd5b8060108190555050565b6060600280546115ef9061455f565b80601f016020809104026020016040519081016040528092919081815260200182805461161b9061455f565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b61168461167d611e82565b8383612462565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116bf6116b9611e82565b83612046565b6116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614096565b60405180910390fd5b61170a848484846125cf565b50505050565b606061171b82611ef4565b61175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190614056565b60405180910390fd5b600061176461262b565b9050600081511161178457604051806020016040528060008152506117af565b8061178e846126bd565b60405160200161179f929190613c62565b6040516020818303038152906040525b915050919050565b6117c081611110565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613e96565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546118559061455f565b905011611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613e36565b60405180910390fd5b6118a08161281e565b600033826040516020016118b5929190613d2e565b60405160208183030381529060405290506000600190506000816010546040516020016118e3929190613c9b565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b815260040161195a9594939291906140f6565b604080518083038186803b15801561197157600080fd5b505afa158015611985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a99190613541565b509050803410156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613f76565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b8152600401611a70969594939291906141ff565b6000604051808303818588803b158015611a8957600080fd5b505af1158015611a9d573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff16815260200190815260200160002085604051611ad59190613c34565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b41906140b6565b60405180910390fd5b806000015483839050148015611b7a575080600101548383604051611b70929190613c1b565b6040518091039020145b611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613e56565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611c10959493929190614157565b600060405180830381600087803b158015611c2a57600080fd5b505af1158015611c3e573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ce6611e82565b73ffffffffffffffffffffffffffffffffffffffff16611d046114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613ff6565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611d84929190612d44565b50505050565b611d92611e82565b73ffffffffffffffffffffffffffffffffffffffff16611db06114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90613ff6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90613dd6565b60405180910390fd5b611e7f8161239e565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fd383611110565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612030919061301c565b9150915061203e8282612380565b505050505050565b600061205182611ef4565b612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790613eb6565b60405180910390fd5b600061209b83611110565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061210a57508373ffffffffffffffffffffffffffffffffffffffff166120f284610b75565b73ffffffffffffffffffffffffffffffffffffffff16145b8061211b575061211a8185611c4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661214482611110565b73ffffffffffffffffffffffffffffffffffffffff161461219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614036565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190613df6565b60405180910390fd5b61221583838361292f565b612220600082611f60565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612270919061442a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c791906143a3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61239a828260405180602001604052806000815250612934565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613e16565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125c29190613d57565b60405180910390a3505050565b6125da848484612124565b6125e68484848461298f565b612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c90613db6565b60405180910390fd5b50505050565b6060600b805461263a9061455f565b80601f01602080910402602001604051908101604052809291908181526020018280546126669061455f565b80156126b35780601f10612688576101008083540402835291602001916126b3565b820191906000526020600020905b81548152906001019060200180831161269657829003601f168201915b5050505050905090565b60606000821415612705576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612819565b600082905060005b60008214612737578080612720906145c2565b915050600a8261273091906143f9565b915061270d565b60008167ffffffffffffffff81111561275357612752614714565b5b6040519080825280601f01601f1916602001820160405280156127855781602001600182028036833780820191505090505b5090505b600085146128125760018261279e919061442a565b9150600a856127ad9190614627565b60306127b991906143a3565b60f81b8183815181106127cf576127ce6146e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280b91906143f9565b9450612789565b8093505050505b919050565b600061282982611110565b90506128378160008461292f565b612842600083611f60565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612892919061442a565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b61293e8383612b26565b61294b600084848461298f565b61298a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298190613db6565b60405180910390fd5b505050565b60006129b08473ffffffffffffffffffffffffffffffffffffffff16612cab565b15612b19578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d9611e82565b8786866040518563ffffffff1660e01b81526004016129fb9493929190613ce2565b602060405180830381600087803b158015612a1557600080fd5b505af1925050508015612a4657506040513d601f19601f82011682018060405250810190612a43919061321f565b60015b612ac9573d8060008114612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b50600081511415612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab890613db6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b1e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90613fb6565b60405180910390fd5b612ba26000838361292f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bf291906143a3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612cca9061455f565b90600052602060002090601f016020900481019282612cec5760008555612d33565b82601f10612d0557805160ff1916838001178555612d33565b82800160010185558215612d33579182015b82811115612d32578251825591602001919060010190612d17565b5b509050612d409190612dca565b5090565b828054612d509061455f565b90600052602060002090601f016020900481019282612d725760008555612db9565b82601f10612d8b57803560ff1916838001178555612db9565b82800160010185558215612db9579182015b82811115612db8578235825591602001919060010190612d9d565b5b509050612dc69190612dca565b5090565b5b80821115612de3576000816000905550600101612dcb565b5090565b6000612dfa612df5846142de565b6142b9565b905082815260208101848484011115612e1657612e15614752565b5b612e2184828561451d565b509392505050565b6000612e3c612e378461430f565b6142b9565b905082815260208101848484011115612e5857612e57614752565b5b612e6384828561451d565b509392505050565b600081359050612e7a81614eca565b92915050565b600081519050612e8f81614ee1565b92915050565b600081359050612ea481614ef8565b92915050565b600081359050612eb981614f0f565b92915050565b600081519050612ece81614f0f565b92915050565b60008083601f840112612eea57612ee9614748565b5b8235905067ffffffffffffffff811115612f0757612f06614743565b5b602083019150836001820283011115612f2357612f2261474d565b5b9250929050565b600082601f830112612f3f57612f3e614748565b5b8135612f4f848260208601612de7565b91505092915050565b600082601f830112612f6d57612f6c614748565b5b8135612f7d848260208601612e29565b91505092915050565b600081359050612f9581614f26565b92915050565b600081359050612faa81614f3d565b92915050565b600081519050612fbf81614f3d565b92915050565b600081359050612fd481614f54565b92915050565b600081359050612fe981614f6b565b92915050565b6000602082840312156130055761300461475c565b5b600061301384828501612e6b565b91505092915050565b600080604083850312156130335761303261475c565b5b600061304185828601612e80565b925050602061305285828601612fb0565b9150509250929050565b600080604083850312156130735761307261475c565b5b600061308185828601612e6b565b925050602061309285828601612e6b565b9150509250929050565b6000806000606084860312156130b5576130b461475c565b5b60006130c386828701612e6b565b93505060206130d486828701612e6b565b92505060406130e586828701612f9b565b9150509250925092565b600080600080608085870312156131095761310861475c565b5b600061311787828801612e6b565b945050602061312887828801612e6b565b935050604061313987828801612f9b565b925050606085013567ffffffffffffffff81111561315a57613159614757565b5b61316687828801612f2a565b91505092959194509250565b600080604083850312156131895761318861475c565b5b600061319785828601612e6b565b92505060206131a885828601612e95565b9150509250929050565b600080604083850312156131c9576131c861475c565b5b60006131d785828601612e6b565b92505060206131e885828601612f9b565b9150509250929050565b6000602082840312156132085761320761475c565b5b600061321684828501612eaa565b91505092915050565b6000602082840312156132355761323461475c565b5b600061324384828501612ebf565b91505092915050565b6000602082840312156132625761326161475c565b5b600082013567ffffffffffffffff8111156132805761327f614757565b5b61328c84828501612f58565b91505092915050565b6000602082840312156132ab576132aa61475c565b5b60006132b984828501612f86565b91505092915050565b6000806000604084860312156132db576132da61475c565b5b60006132e986828701612f86565b935050602084013567ffffffffffffffff81111561330a57613309614757565b5b61331686828701612ed4565b92509250509250925092565b60008060006060848603121561333b5761333a61475c565b5b600061334986828701612f86565b935050602084013567ffffffffffffffff81111561336a57613369614757565b5b61337686828701612f2a565b925050604061338786828701612f9b565b9150509250925092565b6000806000806000608086880312156133ad576133ac61475c565b5b60006133bb88828901612f86565b955050602086013567ffffffffffffffff8111156133dc576133db614757565b5b6133e888828901612f2a565b94505060406133f988828901612fc5565b935050606086013567ffffffffffffffff81111561341a57613419614757565b5b61342688828901612ed4565b92509250509295509295909350565b6000806000806080858703121561344f5761344e61475c565b5b600061345d87828801612f86565b945050602085013567ffffffffffffffff81111561347e5761347d614757565b5b61348a87828801612f2a565b935050604061349b87828801612fc5565b925050606085013567ffffffffffffffff8111156134bc576134bb614757565b5b6134c887828801612f2a565b91505092959194509250565b600080604083850312156134eb576134ea61475c565b5b60006134f985828601612f86565b925050602061350a85828601612f9b565b9150509250929050565b60006020828403121561352a5761352961475c565b5b600061353884828501612f9b565b91505092915050565b600080604083850312156135585761355761475c565b5b600061356685828601612fb0565b925050602061357785828601612fb0565b9150509250929050565b6000602082840312156135975761359661475c565b5b60006135a584828501612fda565b91505092915050565b6135b781614470565b82525050565b6135c68161445e565b82525050565b6135d581614482565b82525050565b6135e48161448e565b82525050565b60006135f6838561436b565b935061360383858461451d565b61360c83614761565b840190509392505050565b6000613623838561437c565b935061363083858461451d565b82840190509392505050565b600061364782614355565b613651818561436b565b935061366181856020860161452c565b61366a81614761565b840191505092915050565b600061368082614355565b61368a818561437c565b935061369a81856020860161452c565b80840191505092915050565b600081546136b38161455f565b6136bd818661436b565b945060018216600081146136d857600181146136ea5761371d565b60ff198316865260208601935061371d565b6136f385614340565b60005b83811015613715578154818901526001820191506020810190506136f6565b808801955050505b50505092915050565b600081546137338161455f565b61373d818661437c565b9450600182166000811461375857600181146137695761379c565b60ff1983168652818601935061379c565b61377285614340565b60005b8381101561379457815481890152600182019150602081019050613775565b838801955050505b50505092915050565b60006137b082614360565b6137ba8185614387565b93506137ca81856020860161452c565b6137d381614761565b840191505092915050565b60006137e982614360565b6137f38185614398565b935061380381856020860161452c565b80840191505092915050565b600061381c603283614387565b91506138278261477f565b604082019050919050565b600061383f602683614387565b915061384a826147ce565b604082019050919050565b6000613862602483614387565b915061386d8261481d565b604082019050919050565b6000613885601983614387565b91506138908261486c565b602082019050919050565b60006138a8602e83614387565b91506138b382614895565b604082019050919050565b60006138cb601a83614387565b91506138d6826148e4565b602082019050919050565b60006138ee601e83614387565b91506138f98261490d565b602082019050919050565b6000613911602283614387565b915061391c82614936565b604082019050919050565b6000613934602c83614387565b915061393f82614985565b604082019050919050565b6000613957603883614387565b9150613962826149d4565b604082019050919050565b600061397a601983614387565b915061398582614a23565b602082019050919050565b600061399d602a83614387565b91506139a882614a4c565b604082019050919050565b60006139c0602a83614387565b91506139cb82614a9b565b604082019050919050565b60006139e3602983614387565b91506139ee82614aea565b604082019050919050565b6000613a06604983614387565b9150613a1182614b39565b606082019050919050565b6000613a29602b83614387565b9150613a3482614bae565b604082019050919050565b6000613a4c602083614387565b9150613a5782614bfd565b602082019050919050565b6000613a6f602c83614387565b9150613a7a82614c26565b604082019050919050565b6000613a92602083614387565b9150613a9d82614c75565b602082019050919050565b6000613ab5603483614387565b9150613ac082614c9e565b604082019050919050565b6000613ad8602983614387565b9150613ae382614ced565b604082019050919050565b6000613afb602f83614387565b9150613b0682614d3c565b604082019050919050565b6000613b1e602183614387565b9150613b2982614d8b565b604082019050919050565b6000613b4160008361437c565b9150613b4c82614dda565b600082019050919050565b6000613b64603183614387565b9150613b6f82614ddd565b604082019050919050565b6000613b87602683614387565b9150613b9282614e2c565b604082019050919050565b6000613baa602183614387565b9150613bb582614e7b565b604082019050919050565b613bc9816144c4565b82525050565b613be0613bdb826144c4565b61460b565b82525050565b613bef816144f2565b82525050565b613c06613c01826144f2565b61461d565b82525050565b613c15816144fc565b82525050565b6000613c28828486613617565b91508190509392505050565b6000613c408284613675565b915081905092915050565b6000613c578284613726565b915081905092915050565b6000613c6e82856137de565b9150613c7a82846137de565b91508190509392505050565b6000613c9182613b34565b9150819050919050565b6000613ca78285613bcf565b600282019150613cb78284613bf5565b6020820191508190509392505050565b6000602082019050613cdc60008301846135bd565b92915050565b6000608082019050613cf760008301876135bd565b613d0460208301866135bd565b613d116040830185613be6565b8181036060830152613d23818461363c565b905095945050505050565b6000604082019050613d4360008301856135bd565b613d506020830184613be6565b9392505050565b6000602082019050613d6c60008301846135cc565b92915050565b60006020820190508181036000830152613d8c818461363c565b905092915050565b60006020820190508181036000830152613dae81846137a5565b905092915050565b60006020820190508181036000830152613dcf8161380f565b9050919050565b60006020820190508181036000830152613def81613832565b9050919050565b60006020820190508181036000830152613e0f81613855565b9050919050565b60006020820190508181036000830152613e2f81613878565b9050919050565b60006020820190508181036000830152613e4f8161389b565b9050919050565b60006020820190508181036000830152613e6f816138be565b9050919050565b60006020820190508181036000830152613e8f816138e1565b9050919050565b60006020820190508181036000830152613eaf81613904565b9050919050565b60006020820190508181036000830152613ecf81613927565b9050919050565b60006020820190508181036000830152613eef8161394a565b9050919050565b60006020820190508181036000830152613f0f8161396d565b9050919050565b60006020820190508181036000830152613f2f81613990565b9050919050565b60006020820190508181036000830152613f4f816139b3565b9050919050565b60006020820190508181036000830152613f6f816139d6565b9050919050565b60006020820190508181036000830152613f8f816139f9565b9050919050565b60006020820190508181036000830152613faf81613a1c565b9050919050565b60006020820190508181036000830152613fcf81613a3f565b9050919050565b60006020820190508181036000830152613fef81613a62565b9050919050565b6000602082019050818103600083015261400f81613a85565b9050919050565b6000602082019050818103600083015261402f81613aa8565b9050919050565b6000602082019050818103600083015261404f81613acb565b9050919050565b6000602082019050818103600083015261406f81613aee565b9050919050565b6000602082019050818103600083015261408f81613b11565b9050919050565b600060208201905081810360008301526140af81613b57565b9050919050565b600060208201905081810360008301526140cf81613b7a565b9050919050565b600060208201905081810360008301526140ef81613b9d565b9050919050565b600060a08201905061410b6000830188613bc0565b61411860208301876135bd565b818103604083015261412a818661363c565b905061413960608301856135cc565b818103608083015261414b818461363c565b90509695505050505050565b600060808201905061416c6000830188613bc0565b818103602083015261417e818761363c565b905061418d6040830186613c0c565b81810360608301526141a08184866135ea565b90509695505050505050565b60006080820190506141c16000830187613bc0565b81810360208301526141d3818661363c565b90506141e26040830185613c0c565b81810360608301526141f4818461363c565b905095945050505050565b600060c0820190506142146000830189613bc0565b818103602083015261422681886136a6565b9050818103604083015261423a818761363c565b905061424960608301866135ae565b61425660808301856135bd565b81810360a0830152614268818461363c565b9050979650505050505050565b600060208201905061428a6000830184613be6565b92915050565b60006040820190506142a56000830185613be6565b6142b260208301846135db565b9392505050565b60006142c36142d4565b90506142cf8282614591565b919050565b6000604051905090565b600067ffffffffffffffff8211156142f9576142f8614714565b5b61430282614761565b9050602081019050919050565b600067ffffffffffffffff82111561432a57614329614714565b5b61433382614761565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143ae826144f2565b91506143b9836144f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ee576143ed614658565b5b828201905092915050565b6000614404826144f2565b915061440f836144f2565b92508261441f5761441e614687565b5b828204905092915050565b6000614435826144f2565b9150614440836144f2565b92508282101561445357614452614658565b5b828203905092915050565b6000614469826144d2565b9050919050565b600061447b826144d2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561454a57808201518184015260208101905061452f565b83811115614559576000848401525b50505050565b6000600282049050600182168061457757607f821691505b6020821081141561458b5761458a6146b6565b5b50919050565b61459a82614761565b810181811067ffffffffffffffff821117156145b9576145b8614714565b5b80604052505050565b60006145cd826144f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614600576145ff614658565b5b600182019050919050565b600061461682614772565b9050919050565b6000819050919050565b6000614632826144f2565b915061463d836144f2565b92508261464d5761464c614687565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f5a4150453a204661696c656420746f2077697468647261772045746865720000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5a4150453a204d696e74206578636565647320737570706c7900000000000000600082015250565b7f5a4150453a204d6178206d696e7420616d6f756e74207065722073657373696f60008201527f6e20657863656564656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5a4150453a206d73672e76616c7565206e6f7420656e6f75676820746f20636f60008201527f766572206d6573736167654665652e2053656e642067617320666f72206d657360208201527f7361676520666565730000000000000000000000000000000000000000000000604082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f5a4150453a2053616c65206861736e2774206e6f74207374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b614ed38161445e565b8114614ede57600080fd5b50565b614eea81614470565b8114614ef557600080fd5b50565b614f0181614482565b8114614f0c57600080fd5b50565b614f1881614498565b8114614f2357600080fd5b50565b614f2f816144c4565b8114614f3a57600080fd5b50565b614f46816144f2565b8114614f5157600080fd5b50565b614f5d816144fc565b8114614f6857600080fd5b50565b614f7481614510565b8114614f7f57600080fd5b5056fea264697066735822122089a32663c2bb4e3223d0ddbe579afd1c474e1e4f134952d96775a74bb8da828b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d636e413153384d454538485a4e7079504a37586542505a6d386e426b79394a73737761775a67437257424d742f00000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d636e413153384d454538485a4e7079504a37586542505a
Arg [4] : 6d386e426b79394a73737761775a67437257424d742f00000000000000000000


Deployed Bytecode Sourcemap

48135:4556:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45390:949;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49096:65;;;;;;;;;;;;;:::i;:::-;;32471:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34975:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34498:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46347:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35725:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49167:625;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51764:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36135:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51528:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33110:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48655:431;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32840:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13461:103;;;;;;;;;;;;;:::i;:::-;;45232:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51626:75;;;:::i;:::-;;12810:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45135:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;52024:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33585:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35268:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48198:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36391:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33760:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49930:1590;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47179:758;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35494:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47945:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13719:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45390:949;45552:8;;;;;;;;;;;45530:31;;:10;:31;;;45522:40;;;;;;45673:19;:32;45693:11;45673:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;45651:11;:18;:61;:134;;;;;45752:19;:32;45772:11;45752:32;;;;;;;;;;;;;;;45742:43;;;;;;:::i;:::-;;;;;;;;45726:11;45716:22;;;;;;:69;45651:134;45643:213;;;;;;;;;;;;:::i;:::-;;;;;;;;;45984:4;:16;;;46001:11;46014;46027:6;46035:8;45984:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45980:352;;46191:52;;;;;;;;46206:8;:15;46191:52;;;;46233:8;46223:19;;;;;;46191:52;;;46140:14;:27;46155:11;46140:27;;;;;;;;;;;;;;;46168:11;46140:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;46181:6;46140:48;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;;;;;46263:57;46277:11;46290;46303:6;46311:8;46263:57;;;;;;;;;:::i;:::-;;;;;;;;45980:352;;;;45390:949;;;;:::o;49096:65::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49149:4:::1;49141:5;;:12;;;;;;;;;;;;;;;;;;49096:65::o:0;32471:305::-;32573:4;32625:25;32610:40;;;:11;:40;;;;:105;;;;32682:33;32667:48;;;:11;:48;;;;32610:105;:158;;;;32732:36;32756:11;32732:23;:36::i;:::-;32610:158;32590:178;;32471:305;;;:::o;33416:100::-;33470:13;33503:5;33496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33416:100;:::o;34975:221::-;35051:7;35079:16;35087:7;35079;:16::i;:::-;35071:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35164:15;:24;35180:7;35164:24;;;;;;;;;;;;;;;;;;;;;35157:31;;34975:221;;;:::o;34498:411::-;34579:13;34595:23;34610:7;34595:14;:23::i;:::-;34579:39;;34643:5;34637:11;;:2;:11;;;;34629:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34737:5;34721:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34746:37;34763:5;34770:12;:10;:12::i;:::-;34746:16;:37::i;:::-;34721:62;34699:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34880:21;34889:2;34893:7;34880:8;:21::i;:::-;34568:341;34498:411;;:::o;46347:356::-;46538:4;46516:27;;:10;:27;;;46508:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;46640:55;46652:11;46665;46678:6;46686:8;46640:10;:55::i;:::-;46347:356;;;;:::o;35725:339::-;35920:41;35939:12;:10;:12::i;:::-;35953:7;35920:18;:41::i;:::-;35912:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;36028:28;36038:4;36044:2;36048:7;36028:9;:28::i;:::-;35725:339;;;:::o;49167:625::-;49235:4;49252:20;49286:10;49298:7;49275:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49252:54;;49392:14;49409:1;49392:18;;49421:26;49467:7;49476:26;;49450:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49421:82;;49658:15;49679:8;;;;;;;;;;;:21;;;49701:8;49719:4;49726:7;49735:5;49742:13;49679:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49657:99;;;49774:10;49767:17;;;;;;49167:625;;;;:::o;51764:176::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51823:9:::1;51846:6;;;;;;;;;;;51838:20;;51866:3;51838:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51822:52;;;51893:4;51885:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;51811:129;51764:176:::0;:::o;36135:185::-;36273:39;36290:4;36296:2;36300:7;36273:39;;;;;;;;;;;;:16;:39::i;:::-;36135:185;;;:::o;51528:90::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51607:3:::1;51597:7;:13;;;;;;;;;;;;:::i;:::-;;51528:90:::0;:::o;33110:239::-;33182:7;33202:13;33218:7;:16;33226:7;33218:16;;;;;;;;;;;;;;;;;;;;;33202:32;;33270:1;33253:19;;:5;:19;;;;33245:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33336:5;33329:12;;;33110:239;;;:::o;48655:431::-;48731:4;48722:13;;:5;;;;;;;;;;;:13;;;48714:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48806:9;;48793;:22;;;;48785:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;48909:17;;48896:9;48882:23;;:11;;:23;;;;:::i;:::-;:44;;48874:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;48972:9;48984:1;48972:13;;48967:105;48992:9;48987:14;;:1;:14;48967:105;;49024:36;49034:10;49048:11;;49046:13;;;;;:::i;:::-;;;;;;;49024:9;:36::i;:::-;49003:3;;;;;:::i;:::-;;;;48967:105;;;;48655:431;:::o;32840:208::-;32912:7;32957:1;32940:19;;:5;:19;;;;32932:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33024:9;:16;33034:5;33024:16;;;;;;;;;;;;;;;;33017:23;;32840:208;;;:::o;13461:103::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13526:30:::1;13553:1;13526:18;:30::i;:::-;13461:103::o:0;45232:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51626:75::-;:::o;12810:87::-;12856:7;12883:6;;;;;;;;;;;12876:13;;12810:87;:::o;45135:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52024:125::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52135:6:::1;52106:26;:35;;;;52024:125:::0;:::o;33585:104::-;33641:13;33674:7;33667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33585:104;:::o;35268:155::-;35363:52;35382:12;:10;:12::i;:::-;35396:8;35406;35363:18;:52::i;:::-;35268:155;;:::o;48198:21::-;;;;;;;;;;;;;:::o;36391:328::-;36566:41;36585:12;:10;:12::i;:::-;36599:7;36566:18;:41::i;:::-;36558:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;36672:39;36686:4;36692:2;36696:7;36705:5;36672:13;:39::i;:::-;36391:328;;;;:::o;33760:334::-;33833:13;33867:16;33875:7;33867;:16::i;:::-;33859:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33948:21;33972:10;:8;:10::i;:::-;33948:34;;34024:1;34006:7;34000:21;:25;:86;;;;;;;;;;;;;;;;;34052:7;34061:18;:7;:16;:18::i;:::-;34035:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34000:86;33993:93;;;33760:334;;;:::o;49930:1590::-;50033:16;50041:7;50033;:16::i;:::-;50019:30;;:10;:30;;;50011:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50146:1;50107:19;:29;50127:8;50107:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;50099:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;50278:14;50284:7;50278:5;:14::i;:::-;50366:20;50400:10;50412:7;50389:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50366:54;;50506:14;50523:1;50506:18;;50535:26;50581:7;50590:26;;50564:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50535:82;;50772:15;50793:8;;;;;;;;;;;:21;;;50815:8;50833:4;50840:7;50849:5;50856:13;50793:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50771:99;;;50912:10;50899:9;:23;;50891:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;51013:8;;;;;;;;;;;:13;;;51034:9;51059:8;51131:19;:29;51151:8;51131:29;;;;;;;;;;;;;;;51219:7;51302:10;51369:3;51449:13;51013:499;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000:1520;;;;49930:1590;;:::o;47179:758::-;47360:32;47395:14;:27;47410:11;47395:27;;;;;;;;;;;;;;;47423:11;47395:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;47436:6;47395:48;;;;;;;;;;;;;47360:83;;47495:1;47487:10;;47462:9;:21;;;:35;;47454:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;47578:9;:23;;;47559:8;;:15;;:42;:90;;;;;47628:9;:21;;;47615:8;;47605:19;;;;;;;:::i;:::-;;;;;;;;:44;47559:90;47551:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;47754:1;47728:9;:23;;:27;;;;47798:1;47790:10;;47766:9;:21;;:34;;;;47869:4;:16;;;47886:11;47899;47912:6;47920:8;;47869:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47304:633;47179:758;;;;;:::o;35494:164::-;35591:4;35615:18;:25;35634:5;35615:25;;;;;;;;;;;;;;;:35;35641:8;35615:35;;;;;;;;;;;;;;;;;;;;;;;;;35608:42;;35494:164;;;;:::o;47945:158::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48081:14:::1;;48049:19;:29;48069:8;48049:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;47945:158:::0;;;:::o;13719:201::-;13041:12;:10;:12::i;:::-;13030:23;;:7;:5;:7::i;:::-;:23;;;13022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13828:1:::1;13808:22;;:8;:22;;;;13800:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13884:28;13903:8;13884:18;:28::i;:::-;13719:201:::0;:::o;11534:98::-;11587:7;11614:10;11607:17;;11534:98;:::o;25242:157::-;25327:4;25366:25;25351:40;;;:11;:40;;;;25344:47;;25242:157;;;:::o;38229:127::-;38294:4;38346:1;38318:30;;:7;:16;38326:7;38318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;38311:37;;38229:127;;;:::o;42142:174::-;42244:2;42217:15;:24;42233:7;42217:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42300:7;42296:2;42262:46;;42271:23;42286:7;42271:14;:23::i;:::-;42262:46;;;;;;;;;;;;42142:174;;:::o;52240:338::-;52393:14;52409:12;52436:8;52425:37;;;;;;;;;;;;:::i;:::-;52392:70;;;;52544:26;52554:6;52562:7;52544:9;:26::i;:::-;52362:216;;52240:338;;;;:::o;38523:348::-;38616:4;38641:16;38649:7;38641;:16::i;:::-;38633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38717:13;38733:23;38748:7;38733:14;:23::i;:::-;38717:39;;38786:5;38775:16;;:7;:16;;;:51;;;;38819:7;38795:31;;:20;38807:7;38795:11;:20::i;:::-;:31;;;38775:51;:87;;;;38830:32;38847:5;38854:7;38830:16;:32::i;:::-;38775:87;38767:96;;;38523:348;;;;:::o;41446:578::-;41605:4;41578:31;;:23;41593:7;41578:14;:23::i;:::-;:31;;;41570:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41688:1;41674:16;;:2;:16;;;;41666:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41744:39;41765:4;41771:2;41775:7;41744:20;:39::i;:::-;41848:29;41865:1;41869:7;41848:8;:29::i;:::-;41909:1;41890:9;:15;41900:4;41890:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41938:1;41921:9;:13;41931:2;41921:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41969:2;41950:7;:16;41958:7;41950:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42008:7;42004:2;41989:27;;41998:4;41989:27;;;;;;;;;;;;41446:578;;;:::o;39213:110::-;39289:26;39299:2;39303:7;39289:26;;;;;;;;;;;;:9;:26::i;:::-;39213:110;;:::o;14080:191::-;14154:16;14173:6;;;;;;;;;;;14154:25;;14199:8;14190:6;;:17;;;;;;;;;;;;;;;;;;14254:8;14223:40;;14244:8;14223:40;;;;;;;;;;;;14143:128;14080:191;:::o;42458:315::-;42613:8;42604:17;;:5;:17;;;;42596:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;42700:8;42662:18;:25;42681:5;42662:25;;;;;;;;;;;;;;;:35;42688:8;42662:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42746:8;42724:41;;42739:5;42724:41;;;42756:8;42724:41;;;;;;:::i;:::-;;;;;;;;42458:315;;;:::o;37601:::-;37758:28;37768:4;37774:2;37778:7;37758:9;:28::i;:::-;37805:48;37828:4;37834:2;37838:7;37847:5;37805:22;:48::i;:::-;37797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;37601:315;;;;:::o;52588:100::-;52640:13;52673:7;52666:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52588:100;:::o;9096:723::-;9152:13;9382:1;9373:5;:10;9369:53;;;9400:10;;;;;;;;;;;;;;;;;;;;;9369:53;9432:12;9447:5;9432:20;;9463:14;9488:78;9503:1;9495:4;:9;9488:78;;9521:8;;;;;:::i;:::-;;;;9552:2;9544:10;;;;;:::i;:::-;;;9488:78;;;9576:19;9608:6;9598:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9576:39;;9626:154;9642:1;9633:5;:10;9626:154;;9670:1;9660:11;;;;;:::i;:::-;;;9737:2;9729:5;:10;;;;:::i;:::-;9716:2;:24;;;;:::i;:::-;9703:39;;9686:6;9693;9686:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9766:2;9757:11;;;;;:::i;:::-;;;9626:154;;;9804:6;9790:21;;;;;9096:723;;;;:::o;40749:360::-;40809:13;40825:23;40840:7;40825:14;:23::i;:::-;40809:39;;40861:48;40882:5;40897:1;40901:7;40861:20;:48::i;:::-;40950:29;40967:1;40971:7;40950:8;:29::i;:::-;41012:1;40992:9;:16;41002:5;40992:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;41031:7;:16;41039:7;41031:16;;;;;;;;;;;;41024:23;;;;;;;;;;;41093:7;41089:1;41065:36;;41074:5;41065:36;;;;;;;;;;;;40798:311;40749:360;:::o;44709:126::-;;;;:::o;39550:321::-;39680:18;39686:2;39690:7;39680:5;:18::i;:::-;39731:54;39762:1;39766:2;39770:7;39779:5;39731:22;:54::i;:::-;39709:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;39550:321;;;:::o;43338:799::-;43493:4;43514:15;:2;:13;;;:15::i;:::-;43510:620;;;43566:2;43550:36;;;43587:12;:10;:12::i;:::-;43601:4;43607:7;43616:5;43550:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43546:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43809:1;43792:6;:13;:18;43788:272;;;43835:60;;;;;;;;;;:::i;:::-;;;;;;;;43788:272;44010:6;44004:13;43995:6;43991:2;43987:15;43980:38;43546:529;43683:41;;;43673:51;;;:6;:51;;;;43666:58;;;;;43510:620;44114:4;44107:11;;43338:799;;;;;;;:::o;40207:313::-;40301:1;40287:16;;:2;:16;;;;40279:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40353:45;40382:1;40386:2;40390:7;40353:20;:45::i;:::-;40428:1;40411:9;:13;40421:2;40411:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40459:2;40440:7;:16;40448:7;40440:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40504:7;40500:2;40479:33;;40496:1;40479:33;;;;;;;;;;;;40207:313;;:::o;15098:387::-;15158:4;15366:12;15433:7;15421:20;15413:28;;15476:1;15469:4;:8;15462:15;;;15098:387;;;:::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:115::-;28933:23;28950:5;28933:23;:::i;:::-;28928:3;28921:36;28848:115;;:::o;28969:153::-;29072:43;29091:23;29108:5;29091:23;:::i;:::-;29072:43;:::i;:::-;29067:3;29060:56;28969:153;;:::o;29128:118::-;29215:24;29233:5;29215:24;:::i;:::-;29210:3;29203:37;29128:118;;:::o;29252:157::-;29357:45;29377:24;29395:5;29377:24;:::i;:::-;29357:45;:::i;:::-;29352:3;29345:58;29252:157;;:::o;29415:115::-;29500:23;29517:5;29500:23;:::i;:::-;29495:3;29488:36;29415:115;;:::o;29536:291::-;29676:3;29698:103;29797:3;29788:6;29780;29698:103;:::i;:::-;29691:110;;29818:3;29811:10;;29536:291;;;;;:::o;29833:271::-;29963:3;29985:93;30074:3;30065:6;29985:93;:::i;:::-;29978:100;;30095:3;30088:10;;29833:271;;;;:::o;30110:265::-;30237:3;30259:90;30345:3;30336:6;30259:90;:::i;:::-;30252:97;;30366:3;30359:10;;30110:265;;;;:::o;30381:435::-;30561:3;30583:95;30674:3;30665:6;30583:95;:::i;:::-;30576:102;;30695:95;30786:3;30777:6;30695:95;:::i;:::-;30688:102;;30807:3;30800:10;;30381:435;;;;;:::o;30822:379::-;31006:3;31028:147;31171:3;31028:147;:::i;:::-;31021:154;;31192:3;31185:10;;30822:379;;;:::o;31207:392::-;31345:3;31360:73;31429:3;31420:6;31360:73;:::i;:::-;31458:1;31453:3;31449:11;31442:18;;31470:75;31541:3;31532:6;31470:75;:::i;:::-;31570:2;31565:3;31561:12;31554:19;;31590:3;31583:10;;31207:392;;;;;:::o;31605:222::-;31698:4;31736:2;31725:9;31721:18;31713:26;;31749:71;31817:1;31806:9;31802:17;31793:6;31749:71;:::i;:::-;31605:222;;;;:::o;31833:640::-;32028:4;32066:3;32055:9;32051:19;32043:27;;32080:71;32148:1;32137:9;32133:17;32124:6;32080:71;:::i;:::-;32161:72;32229:2;32218:9;32214:18;32205:6;32161:72;:::i;:::-;32243;32311:2;32300:9;32296:18;32287:6;32243:72;:::i;:::-;32362:9;32356:4;32352:20;32347:2;32336:9;32332:18;32325:48;32390:76;32461:4;32452:6;32390:76;:::i;:::-;32382:84;;31833:640;;;;;;;:::o;32479:332::-;32600:4;32638:2;32627:9;32623:18;32615:26;;32651:71;32719:1;32708:9;32704:17;32695:6;32651:71;:::i;:::-;32732:72;32800:2;32789:9;32785:18;32776:6;32732:72;:::i;:::-;32479:332;;;;;:::o;32817:210::-;32904:4;32942:2;32931:9;32927:18;32919:26;;32955:65;33017:1;33006:9;33002:17;32993:6;32955:65;:::i;:::-;32817:210;;;;:::o;33033:309::-;33144:4;33182:2;33171:9;33167:18;33159:26;;33231:9;33225:4;33221:20;33217:1;33206:9;33202:17;33195:47;33259:76;33330:4;33321:6;33259:76;:::i;:::-;33251:84;;33033:309;;;;:::o;33348:313::-;33461:4;33499:2;33488:9;33484:18;33476:26;;33548:9;33542:4;33538:20;33534:1;33523:9;33519:17;33512:47;33576:78;33649:4;33640:6;33576:78;:::i;:::-;33568:86;;33348:313;;;;:::o;33667:419::-;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:131;34074:4;33948:131;:::i;:::-;33940:139;;33667:419;;;:::o;34092:::-;34258:4;34296:2;34285:9;34281:18;34273:26;;34345:9;34339:4;34335:20;34331:1;34320:9;34316:17;34309:47;34373:131;34499:4;34373:131;:::i;:::-;34365:139;;34092:419;;;:::o;34517:::-;34683:4;34721:2;34710:9;34706:18;34698:26;;34770:9;34764:4;34760:20;34756:1;34745:9;34741:17;34734:47;34798:131;34924:4;34798:131;:::i;:::-;34790:139;;34517:419;;;:::o;34942:::-;35108:4;35146:2;35135:9;35131:18;35123:26;;35195:9;35189:4;35185:20;35181:1;35170:9;35166:17;35159:47;35223:131;35349:4;35223:131;:::i;:::-;35215:139;;34942:419;;;:::o;35367:::-;35533:4;35571:2;35560:9;35556:18;35548:26;;35620:9;35614:4;35610:20;35606:1;35595:9;35591:17;35584:47;35648:131;35774:4;35648:131;:::i;:::-;35640:139;;35367:419;;;:::o;35792:::-;35958:4;35996:2;35985:9;35981:18;35973:26;;36045:9;36039:4;36035:20;36031:1;36020:9;36016:17;36009:47;36073:131;36199:4;36073:131;:::i;:::-;36065:139;;35792:419;;;:::o;36217:::-;36383:4;36421:2;36410:9;36406:18;36398:26;;36470:9;36464:4;36460:20;36456:1;36445:9;36441:17;36434:47;36498:131;36624:4;36498:131;:::i;:::-;36490:139;;36217:419;;;:::o;36642:::-;36808:4;36846:2;36835:9;36831:18;36823:26;;36895:9;36889:4;36885:20;36881:1;36870:9;36866:17;36859:47;36923:131;37049:4;36923:131;:::i;:::-;36915:139;;36642:419;;;:::o;37067:::-;37233:4;37271:2;37260:9;37256:18;37248:26;;37320:9;37314:4;37310:20;37306:1;37295:9;37291:17;37284:47;37348:131;37474:4;37348:131;:::i;:::-;37340:139;;37067:419;;;:::o;37492:::-;37658:4;37696:2;37685:9;37681:18;37673:26;;37745:9;37739:4;37735:20;37731:1;37720:9;37716:17;37709:47;37773:131;37899:4;37773:131;:::i;:::-;37765:139;;37492:419;;;:::o;37917:::-;38083:4;38121:2;38110:9;38106:18;38098:26;;38170:9;38164:4;38160:20;38156:1;38145:9;38141:17;38134:47;38198:131;38324:4;38198:131;:::i;:::-;38190:139;;37917:419;;;:::o;38342:::-;38508:4;38546:2;38535:9;38531:18;38523:26;;38595:9;38589:4;38585:20;38581:1;38570:9;38566:17;38559:47;38623:131;38749:4;38623:131;:::i;:::-;38615:139;;38342:419;;;:::o;38767:::-;38933:4;38971:2;38960:9;38956:18;38948:26;;39020:9;39014:4;39010:20;39006:1;38995:9;38991:17;38984:47;39048:131;39174:4;39048:131;:::i;:::-;39040:139;;38767:419;;;:::o;39192:::-;39358:4;39396:2;39385:9;39381:18;39373:26;;39445:9;39439:4;39435:20;39431:1;39420:9;39416:17;39409:47;39473:131;39599:4;39473:131;:::i;:::-;39465:139;;39192:419;;;:::o;39617:::-;39783:4;39821:2;39810:9;39806:18;39798:26;;39870:9;39864:4;39860:20;39856:1;39845:9;39841:17;39834:47;39898:131;40024:4;39898:131;:::i;:::-;39890:139;;39617:419;;;:::o;40042:::-;40208:4;40246:2;40235:9;40231:18;40223:26;;40295:9;40289:4;40285:20;40281:1;40270:9;40266:17;40259:47;40323:131;40449:4;40323:131;:::i;:::-;40315:139;;40042:419;;;:::o;40467:::-;40633:4;40671:2;40660:9;40656:18;40648:26;;40720:9;40714:4;40710:20;40706:1;40695:9;40691:17;40684:47;40748:131;40874:4;40748:131;:::i;:::-;40740:139;;40467:419;;;:::o;40892:::-;41058:4;41096:2;41085:9;41081:18;41073:26;;41145:9;41139:4;41135:20;41131:1;41120:9;41116:17;41109:47;41173:131;41299:4;41173:131;:::i;:::-;41165:139;;40892:419;;;:::o;41317:::-;41483:4;41521:2;41510:9;41506:18;41498:26;;41570:9;41564:4;41560:20;41556:1;41545:9;41541:17;41534:47;41598:131;41724:4;41598:131;:::i;:::-;41590:139;;41317:419;;;:::o;41742:::-;41908:4;41946:2;41935:9;41931:18;41923:26;;41995:9;41989:4;41985:20;41981:1;41970:9;41966:17;41959:47;42023:131;42149:4;42023:131;:::i;:::-;42015:139;;41742:419;;;:::o;42167:::-;42333:4;42371:2;42360:9;42356:18;42348:26;;42420:9;42414:4;42410:20;42406:1;42395:9;42391:17;42384:47;42448:131;42574:4;42448:131;:::i;:::-;42440:139;;42167:419;;;:::o;42592:::-;42758:4;42796:2;42785:9;42781:18;42773:26;;42845:9;42839:4;42835:20;42831:1;42820:9;42816:17;42809:47;42873:131;42999:4;42873:131;:::i;:::-;42865:139;;42592:419;;;:::o;43017:::-;43183:4;43221:2;43210:9;43206:18;43198:26;;43270:9;43264:4;43260:20;43256:1;43245:9;43241:17;43234:47;43298:131;43424:4;43298:131;:::i;:::-;43290:139;;43017:419;;;:::o;43442:::-;43608:4;43646:2;43635:9;43631:18;43623:26;;43695:9;43689:4;43685:20;43681:1;43670:9;43666:17;43659:47;43723:131;43849:4;43723:131;:::i;:::-;43715:139;;43442:419;;;:::o;43867:::-;44033:4;44071:2;44060:9;44056:18;44048:26;;44120:9;44114:4;44110:20;44106:1;44095:9;44091:17;44084:47;44148:131;44274:4;44148:131;:::i;:::-;44140:139;;43867:419;;;:::o;44292:::-;44458:4;44496:2;44485:9;44481:18;44473:26;;44545:9;44539:4;44535:20;44531:1;44520:9;44516:17;44509:47;44573:131;44699:4;44573:131;:::i;:::-;44565:139;;44292:419;;;:::o;44717:822::-;44950:4;44988:3;44977:9;44973:19;44965:27;;45002:69;45068:1;45057:9;45053:17;45044:6;45002:69;:::i;:::-;45081:72;45149:2;45138:9;45134:18;45125:6;45081:72;:::i;:::-;45200:9;45194:4;45190:20;45185:2;45174:9;45170:18;45163:48;45228:76;45299:4;45290:6;45228:76;:::i;:::-;45220:84;;45314:66;45376:2;45365:9;45361:18;45352:6;45314:66;:::i;:::-;45428:9;45422:4;45418:20;45412:3;45401:9;45397:19;45390:49;45456:76;45527:4;45518:6;45456:76;:::i;:::-;45448:84;;44717:822;;;;;;;;:::o;45545:739::-;45764:4;45802:3;45791:9;45787:19;45779:27;;45816:69;45882:1;45871:9;45867:17;45858:6;45816:69;:::i;:::-;45932:9;45926:4;45922:20;45917:2;45906:9;45902:18;45895:48;45960:76;46031:4;46022:6;45960:76;:::i;:::-;45952:84;;46046:70;46112:2;46101:9;46097:18;46088:6;46046:70;:::i;:::-;46163:9;46157:4;46153:20;46148:2;46137:9;46133:18;46126:48;46191:86;46272:4;46263:6;46255;46191:86;:::i;:::-;46183:94;;45545:739;;;;;;;;:::o;46290:719::-;46499:4;46537:3;46526:9;46522:19;46514:27;;46551:69;46617:1;46606:9;46602:17;46593:6;46551:69;:::i;:::-;46667:9;46661:4;46657:20;46652:2;46641:9;46637:18;46630:48;46695:76;46766:4;46757:6;46695:76;:::i;:::-;46687:84;;46781:70;46847:2;46836:9;46832:18;46823:6;46781:70;:::i;:::-;46898:9;46892:4;46888:20;46883:2;46872:9;46868:18;46861:48;46926:76;46997:4;46988:6;46926:76;:::i;:::-;46918:84;;46290:719;;;;;;;:::o;47015:1058::-;47313:4;47351:3;47340:9;47336:19;47328:27;;47365:69;47431:1;47420:9;47416:17;47407:6;47365:69;:::i;:::-;47481:9;47475:4;47471:20;47466:2;47455:9;47451:18;47444:48;47509:73;47577:4;47568:6;47509:73;:::i;:::-;47501:81;;47629:9;47623:4;47619:20;47614:2;47603:9;47599:18;47592:48;47657:76;47728:4;47719:6;47657:76;:::i;:::-;47649:84;;47743:88;47827:2;47816:9;47812:18;47803:6;47743:88;:::i;:::-;47841:73;47909:3;47898:9;47894:19;47885:6;47841:73;:::i;:::-;47962:9;47956:4;47952:20;47946:3;47935:9;47931:19;47924:49;47990:76;48061:4;48052:6;47990:76;:::i;:::-;47982:84;;47015:1058;;;;;;;;;:::o;48079:222::-;48172:4;48210:2;48199:9;48195:18;48187:26;;48223:71;48291:1;48280:9;48276:17;48267:6;48223:71;:::i;:::-;48079:222;;;;:::o;48307:332::-;48428:4;48466:2;48455:9;48451:18;48443:26;;48479:71;48547:1;48536:9;48532:17;48523:6;48479:71;:::i;:::-;48560:72;48628:2;48617:9;48613:18;48604:6;48560:72;:::i;:::-;48307:332;;;;;:::o;48645:129::-;48679:6;48706:20;;:::i;:::-;48696:30;;48735:33;48763:4;48755:6;48735:33;:::i;:::-;48645:129;;;:::o;48780:75::-;48813:6;48846:2;48840:9;48830:19;;48780:75;:::o;48861:307::-;48922:4;49012:18;49004:6;49001:30;48998:56;;;49034:18;;:::i;:::-;48998:56;49072:29;49094:6;49072:29;:::i;:::-;49064:37;;49156:4;49150;49146:15;49138:23;;48861:307;;;:::o;49174:308::-;49236:4;49326:18;49318:6;49315:30;49312:56;;;49348:18;;:::i;:::-;49312:56;49386:29;49408:6;49386:29;:::i;:::-;49378:37;;49470:4;49464;49460:15;49452:23;;49174:308;;;:::o;49488:140::-;49536:4;49559:3;49551:11;;49582:3;49579:1;49572:14;49616:4;49613:1;49603:18;49595:26;;49488:140;;;:::o;49634:98::-;49685:6;49719:5;49713:12;49703:22;;49634:98;;;:::o;49738:99::-;49790:6;49824:5;49818:12;49808:22;;49738:99;;;:::o;49843:168::-;49926:11;49960:6;49955:3;49948:19;50000:4;49995:3;49991:14;49976:29;;49843:168;;;;:::o;50017:147::-;50118:11;50155:3;50140:18;;50017:147;;;;:::o;50170:169::-;50254:11;50288:6;50283:3;50276:19;50328:4;50323:3;50319:14;50304:29;;50170:169;;;;:::o;50345:148::-;50447:11;50484:3;50469:18;;50345:148;;;;:::o;50499:305::-;50539:3;50558:20;50576:1;50558:20;:::i;:::-;50553:25;;50592:20;50610:1;50592:20;:::i;:::-;50587:25;;50746:1;50678:66;50674:74;50671:1;50668:81;50665:107;;;50752:18;;:::i;:::-;50665:107;50796:1;50793;50789:9;50782:16;;50499:305;;;;:::o;50810:185::-;50850:1;50867:20;50885:1;50867:20;:::i;:::-;50862:25;;50901:20;50919:1;50901:20;:::i;:::-;50896:25;;50940:1;50930:35;;50945:18;;:::i;:::-;50930:35;50987:1;50984;50980:9;50975:14;;50810:185;;;;:::o;51001:191::-;51041:4;51061:20;51079:1;51061:20;:::i;:::-;51056:25;;51095:20;51113:1;51095:20;:::i;:::-;51090:25;;51134:1;51131;51128:8;51125:34;;;51139:18;;:::i;:::-;51125:34;51184:1;51181;51177:9;51169:17;;51001:191;;;;:::o;51198:96::-;51235:7;51264:24;51282:5;51264:24;:::i;:::-;51253:35;;51198:96;;;:::o;51300:104::-;51345:7;51374:24;51392:5;51374:24;:::i;:::-;51363:35;;51300:104;;;:::o;51410:90::-;51444:7;51487:5;51480:13;51473:21;51462:32;;51410:90;;;:::o;51506:77::-;51543:7;51572:5;51561:16;;51506:77;;;:::o;51589:149::-;51625:7;51665:66;51658:5;51654:78;51643:89;;51589:149;;;:::o;51744:89::-;51780:7;51820:6;51813:5;51809:18;51798:29;;51744:89;;;:::o;51839:126::-;51876:7;51916:42;51909:5;51905:54;51894:65;;51839:126;;;:::o;51971:77::-;52008:7;52037:5;52026:16;;51971:77;;;:::o;52054:101::-;52090:7;52130:18;52123:5;52119:30;52108:41;;52054:101;;;:::o;52161:86::-;52196:7;52236:4;52229:5;52225:16;52214:27;;52161:86;;;:::o;52253:154::-;52337:6;52332:3;52327;52314:30;52399:1;52390:6;52385:3;52381:16;52374:27;52253:154;;;:::o;52413:307::-;52481:1;52491:113;52505:6;52502:1;52499:13;52491:113;;;52590:1;52585:3;52581:11;52575:18;52571:1;52566:3;52562:11;52555:39;52527:2;52524:1;52520:10;52515:15;;52491:113;;;52622:6;52619:1;52616:13;52613:101;;;52702:1;52693:6;52688:3;52684:16;52677:27;52613:101;52462:258;52413:307;;;:::o;52726:320::-;52770:6;52807:1;52801:4;52797:12;52787:22;;52854:1;52848:4;52844:12;52875:18;52865:81;;52931:4;52923:6;52919:17;52909:27;;52865:81;52993:2;52985:6;52982:14;52962:18;52959:38;52956:84;;;53012:18;;:::i;:::-;52956:84;52777:269;52726:320;;;:::o;53052:281::-;53135:27;53157:4;53135:27;:::i;:::-;53127:6;53123:40;53265:6;53253:10;53250:22;53229:18;53217:10;53214:34;53211:62;53208:88;;;53276:18;;:::i;:::-;53208:88;53316:10;53312:2;53305:22;53095:238;53052:281;;:::o;53339:233::-;53378:3;53401:24;53419:5;53401:24;:::i;:::-;53392:33;;53447:66;53440:5;53437:77;53434:103;;;53517:18;;:::i;:::-;53434:103;53564:1;53557:5;53553:13;53546:20;;53339:233;;;:::o;53578:94::-;53616:7;53645:21;53660:5;53645:21;:::i;:::-;53634:32;;53578:94;;;:::o;53678:79::-;53717:7;53746:5;53735:16;;53678:79;;;:::o;53763:176::-;53795:1;53812:20;53830:1;53812:20;:::i;:::-;53807:25;;53846:20;53864:1;53846:20;:::i;:::-;53841:25;;53885:1;53875:35;;53890:18;;:::i;:::-;53875:35;53931:1;53928;53924:9;53919:14;;53763:176;;;;:::o;53945:180::-;53993:77;53990:1;53983:88;54090:4;54087:1;54080:15;54114:4;54111:1;54104:15;54131:180;54179:77;54176:1;54169:88;54276:4;54273:1;54266:15;54300:4;54297:1;54290:15;54317:180;54365:77;54362:1;54355:88;54462:4;54459:1;54452:15;54486:4;54483:1;54476:15;54503:180;54551:77;54548:1;54541:88;54648:4;54645:1;54638:15;54672:4;54669:1;54662:15;54689:180;54737:77;54734:1;54727:88;54834:4;54831:1;54824:15;54858:4;54855:1;54848:15;54875:117;54984:1;54981;54974:12;54998:117;55107:1;55104;55097:12;55121:117;55230:1;55227;55220:12;55244:117;55353:1;55350;55343:12;55367:117;55476:1;55473;55466:12;55490:117;55599:1;55596;55589:12;55613:102;55654:6;55705:2;55701:7;55696:2;55689:5;55685:14;55681:28;55671:38;;55613:102;;;:::o;55721:96::-;55755:8;55804:5;55799:3;55795:15;55774:36;;55721:96;;;:::o;55823:237::-;55963:34;55959:1;55951:6;55947:14;55940:58;56032:20;56027:2;56019:6;56015:15;56008:45;55823:237;:::o;56066:225::-;56206:34;56202:1;56194:6;56190:14;56183:58;56275:8;56270:2;56262:6;56258:15;56251:33;56066:225;:::o;56297:223::-;56437:34;56433:1;56425:6;56421:14;56414:58;56506:6;56501:2;56493:6;56489:15;56482:31;56297:223;:::o;56526:175::-;56666:27;56662:1;56654:6;56650:14;56643:51;56526:175;:::o;56707:233::-;56847:34;56843:1;56835:6;56831:14;56824:58;56916:16;56911:2;56903:6;56899:15;56892:41;56707:233;:::o;56946:176::-;57086:28;57082:1;57074:6;57070:14;57063:52;56946:176;:::o;57128:180::-;57268:32;57264:1;57256:6;57252:14;57245:56;57128:180;:::o;57314:221::-;57454:34;57450:1;57442:6;57438:14;57431:58;57523:4;57518:2;57510:6;57506:15;57499:29;57314:221;:::o;57541:231::-;57681:34;57677:1;57669:6;57665:14;57658:58;57750:14;57745:2;57737:6;57733:15;57726:39;57541:231;:::o;57778:243::-;57918:34;57914:1;57906:6;57902:14;57895:58;57987:26;57982:2;57974:6;57970:15;57963:51;57778:243;:::o;58027:175::-;58167:27;58163:1;58155:6;58151:14;58144:51;58027:175;:::o;58208:229::-;58348:34;58344:1;58336:6;58332:14;58325:58;58417:12;58412:2;58404:6;58400:15;58393:37;58208:229;:::o;58443:::-;58583:34;58579:1;58571:6;58567:14;58560:58;58652:12;58647:2;58639:6;58635:15;58628:37;58443:229;:::o;58678:228::-;58818:34;58814:1;58806:6;58802:14;58795:58;58887:11;58882:2;58874:6;58870:15;58863:36;58678:228;:::o;58912:297::-;59052:34;59048:1;59040:6;59036:14;59029:58;59121:34;59116:2;59108:6;59104:15;59097:59;59190:11;59185:2;59177:6;59173:15;59166:36;58912:297;:::o;59215:230::-;59355:34;59351:1;59343:6;59339:14;59332:58;59424:13;59419:2;59411:6;59407:15;59400:38;59215:230;:::o;59451:182::-;59591:34;59587:1;59579:6;59575:14;59568:58;59451:182;:::o;59639:231::-;59779:34;59775:1;59767:6;59763:14;59756:58;59848:14;59843:2;59835:6;59831:15;59824:39;59639:231;:::o;59876:182::-;60016:34;60012:1;60004:6;60000:14;59993:58;59876:182;:::o;60064:239::-;60204:34;60200:1;60192:6;60188:14;60181:58;60273:22;60268:2;60260:6;60256:15;60249:47;60064:239;:::o;60309:228::-;60449:34;60445:1;60437:6;60433:14;60426:58;60518:11;60513:2;60505:6;60501:15;60494:36;60309:228;:::o;60543:234::-;60683:34;60679:1;60671:6;60667:14;60660:58;60752:17;60747:2;60739:6;60735:15;60728:42;60543:234;:::o;60783:220::-;60923:34;60919:1;60911:6;60907:14;60900:58;60992:3;60987:2;60979:6;60975:15;60968:28;60783:220;:::o;61009:114::-;;:::o;61129:236::-;61269:34;61265:1;61257:6;61253:14;61246:58;61338:19;61333:2;61325:6;61321:15;61314:44;61129:236;:::o;61371:225::-;61511:34;61507:1;61499:6;61495:14;61488:58;61580:8;61575:2;61567:6;61563:15;61556:33;61371:225;:::o;61602:220::-;61742:34;61738:1;61730:6;61726:14;61719:58;61811:3;61806:2;61798:6;61794:15;61787:28;61602:220;:::o;61828:122::-;61901:24;61919:5;61901:24;:::i;:::-;61894:5;61891:35;61881:63;;61940:1;61937;61930:12;61881:63;61828:122;:::o;61956:138::-;62037:32;62063:5;62037:32;:::i;:::-;62030:5;62027:43;62017:71;;62084:1;62081;62074:12;62017:71;61956:138;:::o;62100:116::-;62170:21;62185:5;62170:21;:::i;:::-;62163:5;62160:32;62150:60;;62206:1;62203;62196:12;62150:60;62100:116;:::o;62222:120::-;62294:23;62311:5;62294:23;:::i;:::-;62287:5;62284:34;62274:62;;62332:1;62329;62322:12;62274:62;62222:120;:::o;62348:::-;62420:23;62437:5;62420:23;:::i;:::-;62413:5;62410:34;62400:62;;62458:1;62455;62448:12;62400:62;62348:120;:::o;62474:122::-;62547:24;62565:5;62547:24;:::i;:::-;62540:5;62537:35;62527:63;;62586:1;62583;62576:12;62527:63;62474:122;:::o;62602:120::-;62674:23;62691:5;62674:23;:::i;:::-;62667:5;62664:34;62654:62;;62712:1;62709;62702:12;62654:62;62602:120;:::o;62728:118::-;62799:22;62815:5;62799:22;:::i;:::-;62792:5;62789:33;62779:61;;62836:1;62833;62826:12;62779:61;62728:118;:::o

Swarm Source

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