ETH Price: $2,687.38 (-1.72%)

Token

Little Mouse (LMOUSE)
 

Overview

Max Total Supply

0 LMOUSE

Holders

287

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LMOUSE
0x5b853b52e1C5205562FFaa10c37ad1B29796eAb3
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:
LittleMouse

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol



pragma solidity >=0.5.0;

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

pragma solidity 0.8.4;





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

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

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

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

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

    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 == trustedSourceLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedSourceLookup[_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.");
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedSourceLookup[_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 setTrustedSource(uint16 _chainId, bytes calldata _trustedSource) external onlyOwner {
        require(trustedSourceLookup[_chainId].length == 0, "The trusted source address has already been set for the chainId!");
        trustedSourceLookup[_chainId] = _trustedSource;
    }
}
// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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 (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/LittleMouse.sol



pragma solidity 0.8.4;




/// @title A LayerZero OmnichainNonFungibleToken example
/// @author sirarthurmoney
/// @notice You can use this to mint ONFT and transfer across chain
/// @dev All function calls are currently implemented without side effects
contract LittleMouse is ERC721, NonblockingReceiver, ILayerZeroUserApplicationConfig {

    string public baseTokenURI;
    string public thecontractURI;
    uint256 public gasForDestinationLzReceive = 350000;

    uint256 nextTokenId;
    uint256 maxMint;
    uint256 public publicSaleStartTime = 0;
    uint256 public maxMintPerWallet = 10;
    uint256 public maxMintPerTx = 2;
    mapping(address => uint256) public minted;

    /// @notice Constructor for the OmnichainNonFungibleToken
    /// @param _baseTokenURI the Uniform Resource Identifier (URI) for tokenId token
    /// @param _layerZeroEndpoint handles message transmission across chains
    /// @param _startToken the starting mint number on this chain
    /// @param _maxMint the max number of mints on this chain
    constructor(
        string memory _baseTokenURI,
        string memory _contractURI,
        address _layerZeroEndpoint,
        uint256 _startToken,
        uint256 _maxMint
    )
    ERC721("Little Mouse", "LMOUSE"){
        setBaseURI(_baseTokenURI);
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        nextTokenId = _startToken;
        maxMint = _maxMint;
    }

    function setPublicSaleStartTime(uint256 newTime) public onlyOwner {
        publicSaleStartTime = newTime;
    }

    function setMaxMintPerWallet(uint256 newMaxMintPerWallet) external onlyOwner {
        maxMintPerWallet = newMaxMintPerWallet;
    }

    function setMaxMintPerTx(uint256 newMaxMintPerTx) external onlyOwner {
        maxMintPerTx = newMaxMintPerTx;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        thecontractURI = _contractURI;
    }

    /**
     * pre-mint for community giveaways
     */
    function giveawayMint(uint8 numTokens) public onlyOwner {
        require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply");
        
        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    /// @notice Mint your OmnichainNonFungibleToken
    function mint(uint8 numTokens) external payable {
        require(msg.sender == tx.origin, "User wallet required");
        require(publicSaleStartTime != 0 && publicSaleStartTime <= block.timestamp, "sales is not started");

        require(numTokens <= maxMintPerTx, "Max 2 NFTs per transaction");
        require(minted[msg.sender] + numTokens <= maxMintPerWallet, "limit per wallet reached");
        require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply");

        for (uint i=0; i < numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }

        minted[msg.sender] += numTokens;
    }

    /// @notice Burn _tokenId on source chain and mint on destination chain
    /// @param _chainId the destination chain id you want to transfer too
    /// @param _tokenId the id of the NFT you want to transfer
 function traverseChains(
        uint16 _chainId,
        uint256 _tokenId
    ) public payable {
        require(msg.sender == ownerOf(_tokenId), "Message sender must own the Little Mouse.");
        require(trustedSourceLookup[_chainId].length != 0, "This chain is not a trusted source source.");

        // burn NFT on source chain
         _burn(_tokenId);

        // encode payload w/ sender address and NFT token id
        bytes memory payload = abi.encode(msg.sender, _tokenId);

        // encode adapterParams w/ extra gas for destination chain
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        // use LayerZero estimateFees for cross chain delivery
        (uint quotedLayerZeroFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);

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

        endpoint.send{value:msg.value}(
            _chainId,                      // destination chainId
            trustedSourceLookup[_chainId], // destination address of nft
            payload,                       // abi.encode()'ed bytes
            payable(msg.sender),           // refund address
            address(0x0),                  // future parameter
            adapterParams                  // adapterParams
        );
    }

    /// @notice Set the baseTokenURI
    /// @param _baseTokenURI to set
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    /// @notice Get the contract URI
    function contractURI() public view returns (string memory) {
        return thecontractURI;
    }

    /// @notice Get the base URI
    function _baseURI() override internal view returns (string memory) {
        return baseTokenURI;
    }

    /// @notice Override the _LzReceive internal function of the NonblockingReceiver
    // @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
    /// @dev safe mints the ONFT on your destination chain
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal override  {
        (address _dstOmnichainNFTAddress, uint256 omnichainNFT_tokenId) = abi.decode(_payload, (address, uint256));
        _safeMint(_dstOmnichainNFTAddress, omnichainNFT_tokenId);
    }

    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }
    //---------------------------DAO CALL----------------------------------------
    // generic config for user Application
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external override onlyOwner {
        endpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        endpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        endpoint.setReceiveVersion(_version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
        endpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }

    function renounceOwnership() public override onlyOwner {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_startToken","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"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":[{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"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":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForDestinationLzReceive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint8","name":"numTokens","type":"uint8"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTime","type":"uint256"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedSource","type":"bytes"}],"name":"setTrustedSource","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":[],"name":"thecontractURI","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":"trustedSourceLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]

608060405262055730600c556000600f55600a60105560026011553480156200002757600080fd5b50604051620064843803806200648483398181016040528101906200004d91906200046b565b6040518060400160405280600c81526020017f4c6974746c65204d6f75736500000000000000000000000000000000000000008152506040518060400160405280600681526020017f4c4d4f55534500000000000000000000000000000000000000000000000000008152508160009080519060200190620000d19291906200031b565b508060019080519060200190620000ea9291906200031b565b5050506200010d620001016200017860201b60201c565b6200018060201b60201c565b6200011e856200024660201b60201c565b82600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d8190555080600e81905550505050505062000784565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002566200017860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027c620002f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cc9062000546565b60405180910390fd5b80600a9080519060200190620002ed9291906200031b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000329906200064c565b90600052602060002090601f0160209004810192826200034d576000855562000399565b82601f106200036857805160ff191683800117855562000399565b8280016001018555821562000399579182015b82811115620003985782518255916020019190600101906200037b565b5b509050620003a89190620003ac565b5090565b5b80821115620003c7576000816000905550600101620003ad565b5090565b6000620003e2620003dc8462000591565b62000568565b905082815260208101848484011115620003fb57600080fd5b6200040884828562000616565b509392505050565b600081519050620004218162000750565b92915050565b600082601f8301126200043957600080fd5b81516200044b848260208601620003cb565b91505092915050565b60008151905062000465816200076a565b92915050565b600080600080600060a086880312156200048457600080fd5b600086015167ffffffffffffffff8111156200049f57600080fd5b620004ad8882890162000427565b955050602086015167ffffffffffffffff811115620004cb57600080fd5b620004d98882890162000427565b9450506040620004ec8882890162000410565b9350506060620004ff8882890162000454565b9250506080620005128882890162000454565b9150509295509295909350565b60006200052e602083620005c7565b91506200053b8262000727565b602082019050919050565b6000602082019050818103600083015262000561816200051f565b9050919050565b60006200057462000587565b905062000582828262000682565b919050565b6000604051905090565b600067ffffffffffffffff821115620005af57620005ae620006e7565b5b620005ba8262000716565b9050602081019050919050565b600082825260208201905092915050565b6000620005e582620005ec565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200063657808201518184015260208101905062000619565b8381111562000646576000848401525b50505050565b600060028204905060018216806200066557607f821691505b602082108114156200067c576200067b620006b8565b5b50919050565b6200068d8262000716565b810181811067ffffffffffffffff82111715620006af57620006ae620006e7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200075b81620005d8565b81146200076757600080fd5b50565b62000775816200060c565b81146200078157600080fd5b50565b615cf080620007946000396000f3fe6080604052600436106102665760003560e01c8063715018a611610144578063c87b56dd116100b6578063d73f057e1161007a578063d73f057e146108f9578063de7fcb1d14610922578063e8a3d4851461094d578063e985e9c514610978578063f2fde38b146109b5578063f3234f40146109de57610266565b8063c87b56dd14610830578063cbed8b9c1461086d578063cf89fa0314610896578063d1deba1f146108b2578063d547cfb7146108ce57610266565b8063943fb87211610108578063943fb8721461073657806395d89b411461075f578063a22cb4651461078a578063afdf6134146107b3578063b228d925146107dc578063b88d4fde1461080757610266565b8063715018a61461065057806381c986ee146106675780638da5cb5b146106a45780638ee74912146106cf578063938e3d7b1461070d57610266565b806342842e0e116101dd578063616cdb1e116101a1578063616cdb1e1461053d5780636352211e146105665780636bb7b1d9146105a35780636d5d40c6146105ce5780636ecd2306146105f757806370a082311461061357610266565b806342842e0e1461046e57806342d65a8d1461049757806346f67ba4146104c057806355f804b3146104e95780635e280f111461051257610266565b8063095ea7b31161022f578063095ea7b31461036257806310ddb1371461038b5780631c37a822146103b45780631e7269c5146103dd57806323b872dd1461041a57806335d450141461044357610266565b80621d35671461026b57806301ffc9a71461029457806306fdde03146102d157806307e0db17146102fc578063081812fc14610325575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d9190613f8a565b610a09565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613d77565b610c4b565b6040516102c89190614950565b60405180910390f35b3480156102dd57600080fd5b506102e6610d2d565b6040516102f391906149a8565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613e0a565b610dbf565b005b34801561033157600080fd5b5061034c600480360381019061034791906140d9565b610ecb565b60405161035991906148c0565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613d3b565b610f50565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613e0a565b611068565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613f8a565b611174565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613b94565b6111f4565b6040516104119190614f84565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613c35565b61120c565b005b34801561044f57600080fd5b5061045861126c565b60405161046591906149a8565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613c35565b6112fa565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613e33565b61131a565b005b3480156104cc57600080fd5b506104e760048036038101906104e2919061413e565b61142c565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613dc9565b611540565b005b34801561051e57600080fd5b506105276115d6565b604051610534919061498d565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f91906140d9565b6115fc565b005b34801561057257600080fd5b5061058d600480360381019061058891906140d9565b611682565b60405161059a91906148c0565b60405180910390f35b3480156105af57600080fd5b506105b8611734565b6040516105c59190614f84565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906140d9565b61173a565b005b610611600480360381019061060c919061413e565b6117c0565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613b94565b611a4d565b6040516106479190614f84565b60405180910390f35b34801561065c57600080fd5b50610665611b05565b005b34801561067357600080fd5b5061068e60048036038101906106899190613e0a565b611b83565b60405161069b919061496b565b60405180910390f35b3480156106b057600080fd5b506106b9611c23565b6040516106c691906148c0565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613e8b565b611c4d565b604051610704929190614f9f565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613dc9565b611ca1565b005b34801561074257600080fd5b5061075d600480360381019061075891906140d9565b611d37565b005b34801561076b57600080fd5b50610774611dbd565b60405161078191906149a8565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190613cff565b611e4f565b005b3480156107bf57600080fd5b506107da60048036038101906107d591906140d9565b611e65565b005b3480156107e857600080fd5b506107f1611eeb565b6040516107fe9190614f84565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613c84565b611ef1565b005b34801561083c57600080fd5b50610857600480360381019061085291906140d9565b611f53565b60405161086491906149a8565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f919061401d565b611ffa565b005b6108b060048036038101906108ab919061409d565b612112565b005b6108cc60048036038101906108c79190613ef2565b612406565b005b3480156108da57600080fd5b506108e36125a6565b6040516108f091906149a8565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613e33565b612634565b005b34801561092e57600080fd5b5061093761274a565b6040516109449190614f84565b60405180910390f35b34801561095957600080fd5b50610962612750565b60405161096f91906149a8565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613bf9565b6127e2565b6040516109ac9190614950565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d79190613b94565b612876565b005b3480156109ea57600080fd5b506109f361296e565b604051610a009190614f84565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6357600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610a8990615292565b90508351148015610acf5750600960008561ffff1661ffff168152602001908152602001600020604051610abd9190614859565b60405180910390208380519060200120145b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590614c2a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610b4d9493929190614e6d565b600060405180830381600087803b158015610b6757600080fd5b505af1925050508015610b78575060015b610c44576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610bc29190614842565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610c379493929190614e6d565b60405180910390a1610c45565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d265750610d2582612974565b5b9050919050565b606060008054610d3c90615292565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6890615292565b8015610db55780601f10610d8a57610100808354040283529160200191610db5565b820191906000526020600020905b815481529060010190602001808311610d9857829003601f168201915b5050505050905090565b610dc76129de565b73ffffffffffffffffffffffffffffffffffffffff16610de5611c23565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e969190614d6a565b600060405180830381600087803b158015610eb057600080fd5b505af1158015610ec4573d6000803e3d6000fd5b5050505050565b6000610ed6826129e6565b610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90614bea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f5b82611682565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614c6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610feb6129de565b73ffffffffffffffffffffffffffffffffffffffff16148061101a5750611019816110146129de565b6127e2565b5b611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090614b4a565b60405180910390fd5b6110638383612a52565b505050565b6110706129de565b73ffffffffffffffffffffffffffffffffffffffff1661108e611c23565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b815260040161113f9190614d6a565b600060405180830381600087803b15801561115957600080fd5b505af115801561116d573d6000803e3d6000fd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990614baa565b60405180910390fd5b6111ee84848484612b0b565b50505050565b60126020528060005260406000206000915090505481565b61121d6112176129de565b82612b38565b61125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614cca565b60405180910390fd5b611267838383612c16565b505050565b600b805461127990615292565b80601f01602080910402602001604051908101604052809291908181526020018280546112a590615292565b80156112f25780601f106112c7576101008083540402835291602001916112f2565b820191906000526020600020905b8154815290600101906020018083116112d557829003601f168201915b505050505081565b61131583838360405180602001604052806000815250611ef1565b505050565b6113226129de565b73ffffffffffffffffffffffffffffffffffffffff16611340611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b81526004016113f593929190614de6565b600060405180830381600087803b15801561140f57600080fd5b505af1158015611423573d6000803e3d6000fd5b50505050505050565b6114346129de565b73ffffffffffffffffffffffffffffffffffffffff16611452611c23565b73ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90614c0a565b60405180910390fd5b600e548160ff16600d546114bc91906150b2565b11156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490614aca565b60405180910390fd5b60005b8160ff1681101561153c5761152933600d6000815461151e906152f5565b919050819055612e7d565b8080611534906152f5565b915050611500565b5050565b6115486129de565b73ffffffffffffffffffffffffffffffffffffffff16611566611c23565b73ffffffffffffffffffffffffffffffffffffffff16146115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614c0a565b60405180910390fd5b80600a90805190602001906115d292919061387f565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116046129de565b73ffffffffffffffffffffffffffffffffffffffff16611622611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614c0a565b60405180910390fd5b8060118190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290614b8a565b60405180910390fd5b80915050919050565b600f5481565b6117426129de565b73ffffffffffffffffffffffffffffffffffffffff16611760611c23565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614c0a565b60405180910390fd5b80600f8190555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614c8a565b60405180910390fd5b6000600f5414158015611843575042600f5411155b611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614d4a565b60405180910390fd5b6011548160ff1611156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190614b0a565b60405180910390fd5b6010548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191b91906150b2565b111561195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390614a4a565b60405180910390fd5b600e548160ff16600d5461197091906150b2565b11156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890614aca565b60405180910390fd5b60005b8160ff168110156119f0576119dd33600d600081546119d2906152f5565b919050819055612e7d565b80806119e8906152f5565b9150506119b4565b508060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4391906150b2565b9250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590614b6a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b0d6129de565b73ffffffffffffffffffffffffffffffffffffffff16611b2b611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7890614c0a565b60405180910390fd5b565b60096020528060005260406000206000915090508054611ba290615292565b80601f0160208091040260200160405190810160405280929190818152602001828054611bce90615292565b8015611c1b5780601f10611bf057610100808354040283529160200191611c1b565b820191906000526020600020905b815481529060010190602001808311611bfe57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611ca96129de565b73ffffffffffffffffffffffffffffffffffffffff16611cc7611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614c0a565b60405180910390fd5b80600b9080519060200190611d3392919061387f565b5050565b611d3f6129de565b73ffffffffffffffffffffffffffffffffffffffff16611d5d611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90614c0a565b60405180910390fd5b80600c8190555050565b606060018054611dcc90615292565b80601f0160208091040260200160405190810160405280929190818152602001828054611df890615292565b8015611e455780601f10611e1a57610100808354040283529160200191611e45565b820191906000526020600020905b815481529060010190602001808311611e2857829003601f168201915b5050505050905090565b611e61611e5a6129de565b8383612e9b565b5050565b611e6d6129de565b73ffffffffffffffffffffffffffffffffffffffff16611e8b611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed890614c0a565b60405180910390fd5b8060108190555050565b60105481565b611f02611efc6129de565b83612b38565b611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890614cca565b60405180910390fd5b611f4d84848484613008565b50505050565b6060611f5e826129e6565b611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490614c4a565b60405180910390fd5b6000611fa7613064565b90506000815111611fc75760405180602001604052806000815250611ff2565b80611fd1846130f6565b604051602001611fe2929190614870565b6040516020818303038152906040525b915050919050565b6120026129de565b73ffffffffffffffffffffffffffffffffffffffff16612020611c23565b73ffffffffffffffffffffffffffffffffffffffff1614612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b81526004016120d9959493929190614f36565b600060405180830381600087803b1580156120f357600080fd5b505af1158015612107573d6000803e3d6000fd5b505050505050505050565b61211b81611682565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90614b2a565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546121b090615292565b905014156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90614cea565b60405180910390fd5b6121fc816132a3565b60003382604051602001612211929190614927565b6040516020818303038152906040529050600060019050600081600c5460405160200161223f929190614894565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016122b6959493929190614d85565b604080518083038186803b1580156122cd57600080fd5b505afa1580156122e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123059190614102565b5090508034101561234b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234290614caa565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016123cc96959493929190614ec0565b6000604051808303818588803b1580156123e557600080fd5b505af11580156123f9573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516124319190614842565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d90614d2a565b60405180910390fd5b8060000154838390501480156124d65750806001015483836040516124cc929190614829565b6040518091039020145b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614aaa565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161256c959493929190614e18565b600060405180830381600087803b15801561258657600080fd5b505af115801561259a573d6000803e3d6000fd5b50505050505050505050565b600a80546125b390615292565b80601f01602080910402602001604051908101604052809291908181526020018280546125df90615292565b801561262c5780601f106126015761010080835404028352916020019161262c565b820191906000526020600020905b81548152906001019060200180831161260f57829003601f168201915b505050505081565b61263c6129de565b73ffffffffffffffffffffffffffffffffffffffff1661265a611c23565b73ffffffffffffffffffffffffffffffffffffffff16146126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790614c0a565b60405180910390fd5b6000600960008561ffff1661ffff16815260200190815260200160002080546126d890615292565b90501461271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190614d0a565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190612744929190613905565b50505050565b60115481565b6060600b805461275f90615292565b80601f016020809104026020016040519081016040528092919081815260200182805461278b90615292565b80156127d85780601f106127ad576101008083540402835291602001916127d8565b820191906000526020600020905b8154815290600101906020018083116127bb57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61287e6129de565b73ffffffffffffffffffffffffffffffffffffffff1661289c611c23565b73ffffffffffffffffffffffffffffffffffffffff16146128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990614c0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612959906149ea565b60405180910390fd5b61296b816133c0565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ac583611682565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612b229190613bbd565b91509150612b308282612e7d565b505050505050565b6000612b43826129e6565b612b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7990614aea565b60405180910390fd5b6000612b8d83611682565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bfc57508373ffffffffffffffffffffffffffffffffffffffff16612be484610ecb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c0d5750612c0c81856127e2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c3682611682565b73ffffffffffffffffffffffffffffffffffffffff1614612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8390614a0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390614a6a565b60405180910390fd5b612d07838383613486565b612d12600082612a52565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d629190615139565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db991906150b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e7883838361348b565b505050565b612e97828260405180602001604052806000815250613490565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614a8a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ffb9190614950565b60405180910390a3505050565b613013848484612c16565b61301f848484846134eb565b61305e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613055906149ca565b60405180910390fd5b50505050565b6060600a805461307390615292565b80601f016020809104026020016040519081016040528092919081815260200182805461309f90615292565b80156130ec5780601f106130c1576101008083540402835291602001916130ec565b820191906000526020600020905b8154815290600101906020018083116130cf57829003601f168201915b5050505050905090565b6060600082141561313e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061329e565b600082905060005b60008214613170578080613159906152f5565b915050600a826131699190615108565b9150613146565b60008167ffffffffffffffff8111156131b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131e45781602001600182028036833780820191505090505b5090505b60008514613297576001826131fd9190615139565b9150600a8561320c919061535a565b603061321891906150b2565b60f81b818381518110613254577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132909190615108565b94506131e8565b8093505050505b919050565b60006132ae82611682565b90506132bc81600084613486565b6132c7600083612a52565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133179190615139565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133bc8160008461348b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b61349a8383613682565b6134a760008484846134eb565b6134e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134dd906149ca565b60405180910390fd5b505050565b600061350c8473ffffffffffffffffffffffffffffffffffffffff1661385c565b15613675578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135356129de565b8786866040518563ffffffff1660e01b815260040161355794939291906148db565b602060405180830381600087803b15801561357157600080fd5b505af19250505080156135a257506040513d601f19601f8201168201806040525081019061359f9190613da0565b60015b613625573d80600081146135d2576040519150601f19603f3d011682016040523d82523d6000602084013e6135d7565b606091505b5060008151141561361d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613614906149ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061367a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e990614bca565b60405180910390fd5b6136fb816129e6565b1561373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373290614a2a565b60405180910390fd5b61374760008383613486565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461379791906150b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138586000838361348b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461388b90615292565b90600052602060002090601f0160209004810192826138ad57600085556138f4565b82601f106138c657805160ff19168380011785556138f4565b828001600101855582156138f4579182015b828111156138f35782518255916020019190600101906138d8565b5b509050613901919061398b565b5090565b82805461391190615292565b90600052602060002090601f016020900481019282613933576000855561397a565b82601f1061394c57803560ff191683800117855561397a565b8280016001018555821561397a579182015b8281111561397957823582559160200191906001019061395e565b5b509050613987919061398b565b5090565b5b808211156139a457600081600090555060010161398c565b5090565b60006139bb6139b684614fed565b614fc8565b9050828152602081018484840111156139d357600080fd5b6139de848285615250565b509392505050565b60006139f96139f48461501e565b614fc8565b905082815260208101848484011115613a1157600080fd5b613a1c848285615250565b509392505050565b600081359050613a3381615c02565b92915050565b600081519050613a4881615c19565b92915050565b600081359050613a5d81615c30565b92915050565b600081359050613a7281615c47565b92915050565b600081519050613a8781615c47565b92915050565b60008083601f840112613a9f57600080fd5b8235905067ffffffffffffffff811115613ab857600080fd5b602083019150836001820283011115613ad057600080fd5b9250929050565b600082601f830112613ae857600080fd5b8135613af88482602086016139a8565b91505092915050565b600082601f830112613b1257600080fd5b8135613b228482602086016139e6565b91505092915050565b600081359050613b3a81615c5e565b92915050565b600081359050613b4f81615c75565b92915050565b600081519050613b6481615c75565b92915050565b600081359050613b7981615c8c565b92915050565b600081359050613b8e81615ca3565b92915050565b600060208284031215613ba657600080fd5b6000613bb484828501613a24565b91505092915050565b60008060408385031215613bd057600080fd5b6000613bde85828601613a39565b9250506020613bef85828601613b55565b9150509250929050565b60008060408385031215613c0c57600080fd5b6000613c1a85828601613a24565b9250506020613c2b85828601613a24565b9150509250929050565b600080600060608486031215613c4a57600080fd5b6000613c5886828701613a24565b9350506020613c6986828701613a24565b9250506040613c7a86828701613b40565b9150509250925092565b60008060008060808587031215613c9a57600080fd5b6000613ca887828801613a24565b9450506020613cb987828801613a24565b9350506040613cca87828801613b40565b925050606085013567ffffffffffffffff811115613ce757600080fd5b613cf387828801613ad7565b91505092959194509250565b60008060408385031215613d1257600080fd5b6000613d2085828601613a24565b9250506020613d3185828601613a4e565b9150509250929050565b60008060408385031215613d4e57600080fd5b6000613d5c85828601613a24565b9250506020613d6d85828601613b40565b9150509250929050565b600060208284031215613d8957600080fd5b6000613d9784828501613a63565b91505092915050565b600060208284031215613db257600080fd5b6000613dc084828501613a78565b91505092915050565b600060208284031215613ddb57600080fd5b600082013567ffffffffffffffff811115613df557600080fd5b613e0184828501613b01565b91505092915050565b600060208284031215613e1c57600080fd5b6000613e2a84828501613b2b565b91505092915050565b600080600060408486031215613e4857600080fd5b6000613e5686828701613b2b565b935050602084013567ffffffffffffffff811115613e7357600080fd5b613e7f86828701613a8d565b92509250509250925092565b600080600060608486031215613ea057600080fd5b6000613eae86828701613b2b565b935050602084013567ffffffffffffffff811115613ecb57600080fd5b613ed786828701613ad7565b9250506040613ee886828701613b40565b9150509250925092565b600080600080600060808688031215613f0a57600080fd5b6000613f1888828901613b2b565b955050602086013567ffffffffffffffff811115613f3557600080fd5b613f4188828901613ad7565b9450506040613f5288828901613b6a565b935050606086013567ffffffffffffffff811115613f6f57600080fd5b613f7b88828901613a8d565b92509250509295509295909350565b60008060008060808587031215613fa057600080fd5b6000613fae87828801613b2b565b945050602085013567ffffffffffffffff811115613fcb57600080fd5b613fd787828801613ad7565b9350506040613fe887828801613b6a565b925050606085013567ffffffffffffffff81111561400557600080fd5b61401187828801613ad7565b91505092959194509250565b60008060008060006080868803121561403557600080fd5b600061404388828901613b2b565b955050602061405488828901613b2b565b945050604061406588828901613b40565b935050606086013567ffffffffffffffff81111561408257600080fd5b61408e88828901613a8d565b92509250509295509295909350565b600080604083850312156140b057600080fd5b60006140be85828601613b2b565b92505060206140cf85828601613b40565b9150509250929050565b6000602082840312156140eb57600080fd5b60006140f984828501613b40565b91505092915050565b6000806040838503121561411557600080fd5b600061412385828601613b55565b925050602061413485828601613b55565b9150509250929050565b60006020828403121561415057600080fd5b600061415e84828501613b7f565b91505092915050565b6141708161517f565b82525050565b61417f8161516d565b82525050565b61418e81615191565b82525050565b61419d8161519d565b82525050565b60006141af838561507a565b93506141bc838584615250565b6141c583615447565b840190509392505050565b60006141dc838561508b565b93506141e9838584615250565b82840190509392505050565b600061420082615064565b61420a818561507a565b935061421a81856020860161525f565b61422381615447565b840191505092915050565b600061423982615064565b614243818561508b565b935061425381856020860161525f565b80840191505092915050565b6000815461426c81615292565b614276818661507a565b9450600182166000811461429157600181146142a3576142d6565b60ff19831686526020860193506142d6565b6142ac8561504f565b60005b838110156142ce578154818901526001820191506020810190506142af565b808801955050505b50505092915050565b600081546142ec81615292565b6142f6818661508b565b94506001821660008114614311576001811461432257614355565b60ff19831686528186019350614355565b61432b8561504f565b60005b8381101561434d5781548189015260018201915060208101905061432e565b838801955050505b50505092915050565b6143678161522c565b82525050565b60006143788261506f565b6143828185615096565b935061439281856020860161525f565b61439b81615447565b840191505092915050565b60006143b18261506f565b6143bb81856150a7565b93506143cb81856020860161525f565b80840191505092915050565b60006143e4603283615096565b91506143ef82615465565b604082019050919050565b6000614407602683615096565b9150614412826154b4565b604082019050919050565b600061442a602583615096565b915061443582615503565b604082019050919050565b600061444d601c83615096565b915061445882615552565b602082019050919050565b6000614470601883615096565b915061447b8261557b565b602082019050919050565b6000614493602483615096565b915061449e826155a4565b604082019050919050565b60006144b6601983615096565b91506144c1826155f3565b602082019050919050565b60006144d9601a83615096565b91506144e48261561c565b602082019050919050565b60006144fc601383615096565b915061450782615645565b602082019050919050565b600061451f602c83615096565b915061452a8261566e565b604082019050919050565b6000614542601a83615096565b915061454d826156bd565b602082019050919050565b6000614565602983615096565b9150614570826156e6565b604082019050919050565b6000614588603883615096565b915061459382615735565b604082019050919050565b60006145ab602a83615096565b91506145b682615784565b604082019050919050565b60006145ce602983615096565b91506145d9826157d3565b604082019050919050565b60006145f1602b83615096565b91506145fc82615822565b604082019050919050565b6000614614602083615096565b915061461f82615871565b602082019050919050565b6000614637602c83615096565b91506146428261589a565b604082019050919050565b600061465a602083615096565b9150614665826158e9565b602082019050919050565b600061467d603483615096565b915061468882615912565b604082019050919050565b60006146a0602f83615096565b91506146ab82615961565b604082019050919050565b60006146c3602183615096565b91506146ce826159b0565b604082019050919050565b60006146e6601483615096565b91506146f1826159ff565b602082019050919050565b6000614709605183615096565b915061471482615a28565b606082019050919050565b600061472c603183615096565b915061473782615a9d565b604082019050919050565b600061474f602a83615096565b915061475a82615aec565b604082019050919050565b6000614772604083615096565b915061477d82615b3b565b604082019050919050565b6000614795602683615096565b91506147a082615b8a565b604082019050919050565b60006147b8601483615096565b91506147c382615bd9565b602082019050919050565b6147d7816151d3565b82525050565b6147ee6147e9826151d3565b61533e565b82525050565b6147fd81615201565b82525050565b61481461480f82615201565b615350565b82525050565b6148238161520b565b82525050565b60006148368284866141d0565b91508190509392505050565b600061484e828461422e565b915081905092915050565b600061486582846142df565b915081905092915050565b600061487c82856143a6565b915061488882846143a6565b91508190509392505050565b60006148a082856147dd565b6002820191506148b08284614803565b6020820191508190509392505050565b60006020820190506148d56000830184614176565b92915050565b60006080820190506148f06000830187614176565b6148fd6020830186614176565b61490a60408301856147f4565b818103606083015261491c81846141f5565b905095945050505050565b600060408201905061493c6000830185614176565b61494960208301846147f4565b9392505050565b60006020820190506149656000830184614185565b92915050565b6000602082019050818103600083015261498581846141f5565b905092915050565b60006020820190506149a2600083018461435e565b92915050565b600060208201905081810360008301526149c2818461436d565b905092915050565b600060208201905081810360008301526149e3816143d7565b9050919050565b60006020820190508181036000830152614a03816143fa565b9050919050565b60006020820190508181036000830152614a238161441d565b9050919050565b60006020820190508181036000830152614a4381614440565b9050919050565b60006020820190508181036000830152614a6381614463565b9050919050565b60006020820190508181036000830152614a8381614486565b9050919050565b60006020820190508181036000830152614aa3816144a9565b9050919050565b60006020820190508181036000830152614ac3816144cc565b9050919050565b60006020820190508181036000830152614ae3816144ef565b9050919050565b60006020820190508181036000830152614b0381614512565b9050919050565b60006020820190508181036000830152614b2381614535565b9050919050565b60006020820190508181036000830152614b4381614558565b9050919050565b60006020820190508181036000830152614b638161457b565b9050919050565b60006020820190508181036000830152614b838161459e565b9050919050565b60006020820190508181036000830152614ba3816145c1565b9050919050565b60006020820190508181036000830152614bc3816145e4565b9050919050565b60006020820190508181036000830152614be381614607565b9050919050565b60006020820190508181036000830152614c038161462a565b9050919050565b60006020820190508181036000830152614c238161464d565b9050919050565b60006020820190508181036000830152614c4381614670565b9050919050565b60006020820190508181036000830152614c6381614693565b9050919050565b60006020820190508181036000830152614c83816146b6565b9050919050565b60006020820190508181036000830152614ca3816146d9565b9050919050565b60006020820190508181036000830152614cc3816146fc565b9050919050565b60006020820190508181036000830152614ce38161471f565b9050919050565b60006020820190508181036000830152614d0381614742565b9050919050565b60006020820190508181036000830152614d2381614765565b9050919050565b60006020820190508181036000830152614d4381614788565b9050919050565b60006020820190508181036000830152614d63816147ab565b9050919050565b6000602082019050614d7f60008301846147ce565b92915050565b600060a082019050614d9a60008301886147ce565b614da76020830187614176565b8181036040830152614db981866141f5565b9050614dc86060830185614185565b8181036080830152614dda81846141f5565b90509695505050505050565b6000604082019050614dfb60008301866147ce565b8181036020830152614e0e8184866141a3565b9050949350505050565b6000608082019050614e2d60008301886147ce565b8181036020830152614e3f81876141f5565b9050614e4e604083018661481a565b8181036060830152614e618184866141a3565b90509695505050505050565b6000608082019050614e8260008301876147ce565b8181036020830152614e9481866141f5565b9050614ea3604083018561481a565b8181036060830152614eb581846141f5565b905095945050505050565b600060c082019050614ed560008301896147ce565b8181036020830152614ee7818861425f565b90508181036040830152614efb81876141f5565b9050614f0a6060830186614167565b614f176080830185614176565b81810360a0830152614f2981846141f5565b9050979650505050505050565b6000608082019050614f4b60008301886147ce565b614f5860208301876147ce565b614f6560408301866147f4565b8181036060830152614f788184866141a3565b90509695505050505050565b6000602082019050614f9960008301846147f4565b92915050565b6000604082019050614fb460008301856147f4565b614fc16020830184614194565b9392505050565b6000614fd2614fe3565b9050614fde82826152c4565b919050565b6000604051905090565b600067ffffffffffffffff82111561500857615007615418565b5b61501182615447565b9050602081019050919050565b600067ffffffffffffffff82111561503957615038615418565b5b61504282615447565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150bd82615201565b91506150c883615201565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150fd576150fc61538b565b5b828201905092915050565b600061511382615201565b915061511e83615201565b92508261512e5761512d6153ba565b5b828204905092915050565b600061514482615201565b915061514f83615201565b9250828210156151625761516161538b565b5b828203905092915050565b6000615178826151e1565b9050919050565b600061518a826151e1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b60006152378261523e565b9050919050565b6000615249826151e1565b9050919050565b82818337600083830152505050565b60005b8381101561527d578082015181840152602081019050615262565b8381111561528c576000848401525b50505050565b600060028204905060018216806152aa57607f821691505b602082108114156152be576152bd6153e9565b5b50919050565b6152cd82615447565b810181811067ffffffffffffffff821117156152ec576152eb615418565b5b80604052505050565b600061530082615201565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153335761533261538b565b5b600182019050919050565b600061534982615458565b9050919050565b6000819050919050565b600061536582615201565b915061537083615201565b9250826153805761537f6153ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d61782032204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4d6573736167652073656e646572206d757374206f776e20746865204c69747460008201527f6c65204d6f7573652e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f557365722077616c6c6574207265717569726564000000000000000000000000600082015250565b7f4c6974746c65204d6f7573653a206d73672e76616c7565206e6f7420656e6f7560008201527f676820746f20636f766572206d6573736167654665652e2053656e642067617360208201527f20666f72206d6573736167652066656573000000000000000000000000000000604082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5468697320636861696e206973206e6f742061207472757374656420736f757260008201527f636520736f757263652e00000000000000000000000000000000000000000000602082015250565b7f546865207472757374656420736f75726365206164647265737320686173206160008201527f6c7265616479206265656e2073657420666f722074686520636861696e496421602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b615c0b8161516d565b8114615c1657600080fd5b50565b615c228161517f565b8114615c2d57600080fd5b50565b615c3981615191565b8114615c4457600080fd5b50565b615c50816151a7565b8114615c5b57600080fd5b50565b615c67816151d3565b8114615c7257600080fd5b50565b615c7e81615201565b8114615c8957600080fd5b50565b615c958161520b565b8114615ca057600080fd5b50565b615cac8161521f565b8114615cb757600080fd5b5056fea26469706673582212202000d6485bed54cc689c0e5da04d1ef6298f562bd40f00c96ac98fa4182b0cfe64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f77656e6d696e742e6d7970696e6174612e636c6f75642f697066732f516d59616e4e3150523369577a7a646a4d354e55644a364d6232463238554a51786d51444c6448547a66586232512f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f77656e6d696e742e6d7970696e6174612e636c6f75642f697066732f516d544d344464375841394774465a56594c414d466b4256316b597a5133384e6332386646455563474c526666760000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102665760003560e01c8063715018a611610144578063c87b56dd116100b6578063d73f057e1161007a578063d73f057e146108f9578063de7fcb1d14610922578063e8a3d4851461094d578063e985e9c514610978578063f2fde38b146109b5578063f3234f40146109de57610266565b8063c87b56dd14610830578063cbed8b9c1461086d578063cf89fa0314610896578063d1deba1f146108b2578063d547cfb7146108ce57610266565b8063943fb87211610108578063943fb8721461073657806395d89b411461075f578063a22cb4651461078a578063afdf6134146107b3578063b228d925146107dc578063b88d4fde1461080757610266565b8063715018a61461065057806381c986ee146106675780638da5cb5b146106a45780638ee74912146106cf578063938e3d7b1461070d57610266565b806342842e0e116101dd578063616cdb1e116101a1578063616cdb1e1461053d5780636352211e146105665780636bb7b1d9146105a35780636d5d40c6146105ce5780636ecd2306146105f757806370a082311461061357610266565b806342842e0e1461046e57806342d65a8d1461049757806346f67ba4146104c057806355f804b3146104e95780635e280f111461051257610266565b8063095ea7b31161022f578063095ea7b31461036257806310ddb1371461038b5780631c37a822146103b45780631e7269c5146103dd57806323b872dd1461041a57806335d450141461044357610266565b80621d35671461026b57806301ffc9a71461029457806306fdde03146102d157806307e0db17146102fc578063081812fc14610325575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d9190613f8a565b610a09565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613d77565b610c4b565b6040516102c89190614950565b60405180910390f35b3480156102dd57600080fd5b506102e6610d2d565b6040516102f391906149a8565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613e0a565b610dbf565b005b34801561033157600080fd5b5061034c600480360381019061034791906140d9565b610ecb565b60405161035991906148c0565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613d3b565b610f50565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613e0a565b611068565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613f8a565b611174565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613b94565b6111f4565b6040516104119190614f84565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613c35565b61120c565b005b34801561044f57600080fd5b5061045861126c565b60405161046591906149a8565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613c35565b6112fa565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613e33565b61131a565b005b3480156104cc57600080fd5b506104e760048036038101906104e2919061413e565b61142c565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613dc9565b611540565b005b34801561051e57600080fd5b506105276115d6565b604051610534919061498d565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f91906140d9565b6115fc565b005b34801561057257600080fd5b5061058d600480360381019061058891906140d9565b611682565b60405161059a91906148c0565b60405180910390f35b3480156105af57600080fd5b506105b8611734565b6040516105c59190614f84565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906140d9565b61173a565b005b610611600480360381019061060c919061413e565b6117c0565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613b94565b611a4d565b6040516106479190614f84565b60405180910390f35b34801561065c57600080fd5b50610665611b05565b005b34801561067357600080fd5b5061068e60048036038101906106899190613e0a565b611b83565b60405161069b919061496b565b60405180910390f35b3480156106b057600080fd5b506106b9611c23565b6040516106c691906148c0565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613e8b565b611c4d565b604051610704929190614f9f565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613dc9565b611ca1565b005b34801561074257600080fd5b5061075d600480360381019061075891906140d9565b611d37565b005b34801561076b57600080fd5b50610774611dbd565b60405161078191906149a8565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190613cff565b611e4f565b005b3480156107bf57600080fd5b506107da60048036038101906107d591906140d9565b611e65565b005b3480156107e857600080fd5b506107f1611eeb565b6040516107fe9190614f84565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613c84565b611ef1565b005b34801561083c57600080fd5b50610857600480360381019061085291906140d9565b611f53565b60405161086491906149a8565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f919061401d565b611ffa565b005b6108b060048036038101906108ab919061409d565b612112565b005b6108cc60048036038101906108c79190613ef2565b612406565b005b3480156108da57600080fd5b506108e36125a6565b6040516108f091906149a8565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613e33565b612634565b005b34801561092e57600080fd5b5061093761274a565b6040516109449190614f84565b60405180910390f35b34801561095957600080fd5b50610962612750565b60405161096f91906149a8565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613bf9565b6127e2565b6040516109ac9190614950565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d79190613b94565b612876565b005b3480156109ea57600080fd5b506109f361296e565b604051610a009190614f84565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6357600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610a8990615292565b90508351148015610acf5750600960008561ffff1661ffff168152602001908152602001600020604051610abd9190614859565b60405180910390208380519060200120145b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590614c2a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610b4d9493929190614e6d565b600060405180830381600087803b158015610b6757600080fd5b505af1925050508015610b78575060015b610c44576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610bc29190614842565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610c379493929190614e6d565b60405180910390a1610c45565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d1657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d265750610d2582612974565b5b9050919050565b606060008054610d3c90615292565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6890615292565b8015610db55780601f10610d8a57610100808354040283529160200191610db5565b820191906000526020600020905b815481529060010190602001808311610d9857829003601f168201915b5050505050905090565b610dc76129de565b73ffffffffffffffffffffffffffffffffffffffff16610de5611c23565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e969190614d6a565b600060405180830381600087803b158015610eb057600080fd5b505af1158015610ec4573d6000803e3d6000fd5b5050505050565b6000610ed6826129e6565b610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90614bea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f5b82611682565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614c6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610feb6129de565b73ffffffffffffffffffffffffffffffffffffffff16148061101a5750611019816110146129de565b6127e2565b5b611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090614b4a565b60405180910390fd5b6110638383612a52565b505050565b6110706129de565b73ffffffffffffffffffffffffffffffffffffffff1661108e611c23565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b815260040161113f9190614d6a565b600060405180830381600087803b15801561115957600080fd5b505af115801561116d573d6000803e3d6000fd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990614baa565b60405180910390fd5b6111ee84848484612b0b565b50505050565b60126020528060005260406000206000915090505481565b61121d6112176129de565b82612b38565b61125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614cca565b60405180910390fd5b611267838383612c16565b505050565b600b805461127990615292565b80601f01602080910402602001604051908101604052809291908181526020018280546112a590615292565b80156112f25780601f106112c7576101008083540402835291602001916112f2565b820191906000526020600020905b8154815290600101906020018083116112d557829003601f168201915b505050505081565b61131583838360405180602001604052806000815250611ef1565b505050565b6113226129de565b73ffffffffffffffffffffffffffffffffffffffff16611340611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b81526004016113f593929190614de6565b600060405180830381600087803b15801561140f57600080fd5b505af1158015611423573d6000803e3d6000fd5b50505050505050565b6114346129de565b73ffffffffffffffffffffffffffffffffffffffff16611452611c23565b73ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90614c0a565b60405180910390fd5b600e548160ff16600d546114bc91906150b2565b11156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490614aca565b60405180910390fd5b60005b8160ff1681101561153c5761152933600d6000815461151e906152f5565b919050819055612e7d565b8080611534906152f5565b915050611500565b5050565b6115486129de565b73ffffffffffffffffffffffffffffffffffffffff16611566611c23565b73ffffffffffffffffffffffffffffffffffffffff16146115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390614c0a565b60405180910390fd5b80600a90805190602001906115d292919061387f565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116046129de565b73ffffffffffffffffffffffffffffffffffffffff16611622611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614c0a565b60405180910390fd5b8060118190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290614b8a565b60405180910390fd5b80915050919050565b600f5481565b6117426129de565b73ffffffffffffffffffffffffffffffffffffffff16611760611c23565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614c0a565b60405180910390fd5b80600f8190555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614c8a565b60405180910390fd5b6000600f5414158015611843575042600f5411155b611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614d4a565b60405180910390fd5b6011548160ff1611156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190614b0a565b60405180910390fd5b6010548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461191b91906150b2565b111561195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390614a4a565b60405180910390fd5b600e548160ff16600d5461197091906150b2565b11156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890614aca565b60405180910390fd5b60005b8160ff168110156119f0576119dd33600d600081546119d2906152f5565b919050819055612e7d565b80806119e8906152f5565b9150506119b4565b508060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4391906150b2565b9250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590614b6a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b0d6129de565b73ffffffffffffffffffffffffffffffffffffffff16611b2b611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7890614c0a565b60405180910390fd5b565b60096020528060005260406000206000915090508054611ba290615292565b80601f0160208091040260200160405190810160405280929190818152602001828054611bce90615292565b8015611c1b5780601f10611bf057610100808354040283529160200191611c1b565b820191906000526020600020905b815481529060010190602001808311611bfe57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611ca96129de565b73ffffffffffffffffffffffffffffffffffffffff16611cc7611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614c0a565b60405180910390fd5b80600b9080519060200190611d3392919061387f565b5050565b611d3f6129de565b73ffffffffffffffffffffffffffffffffffffffff16611d5d611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90614c0a565b60405180910390fd5b80600c8190555050565b606060018054611dcc90615292565b80601f0160208091040260200160405190810160405280929190818152602001828054611df890615292565b8015611e455780601f10611e1a57610100808354040283529160200191611e45565b820191906000526020600020905b815481529060010190602001808311611e2857829003601f168201915b5050505050905090565b611e61611e5a6129de565b8383612e9b565b5050565b611e6d6129de565b73ffffffffffffffffffffffffffffffffffffffff16611e8b611c23565b73ffffffffffffffffffffffffffffffffffffffff1614611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed890614c0a565b60405180910390fd5b8060108190555050565b60105481565b611f02611efc6129de565b83612b38565b611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890614cca565b60405180910390fd5b611f4d84848484613008565b50505050565b6060611f5e826129e6565b611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490614c4a565b60405180910390fd5b6000611fa7613064565b90506000815111611fc75760405180602001604052806000815250611ff2565b80611fd1846130f6565b604051602001611fe2929190614870565b6040516020818303038152906040525b915050919050565b6120026129de565b73ffffffffffffffffffffffffffffffffffffffff16612020611c23565b73ffffffffffffffffffffffffffffffffffffffff1614612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614c0a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b81526004016120d9959493929190614f36565b600060405180830381600087803b1580156120f357600080fd5b505af1158015612107573d6000803e3d6000fd5b505050505050505050565b61211b81611682565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f90614b2a565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546121b090615292565b905014156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90614cea565b60405180910390fd5b6121fc816132a3565b60003382604051602001612211929190614927565b6040516020818303038152906040529050600060019050600081600c5460405160200161223f929190614894565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016122b6959493929190614d85565b604080518083038186803b1580156122cd57600080fd5b505afa1580156122e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123059190614102565b5090508034101561234b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234290614caa565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016123cc96959493929190614ec0565b6000604051808303818588803b1580156123e557600080fd5b505af11580156123f9573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516124319190614842565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d90614d2a565b60405180910390fd5b8060000154838390501480156124d65750806001015483836040516124cc929190614829565b6040518091039020145b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614aaa565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161256c959493929190614e18565b600060405180830381600087803b15801561258657600080fd5b505af115801561259a573d6000803e3d6000fd5b50505050505050505050565b600a80546125b390615292565b80601f01602080910402602001604051908101604052809291908181526020018280546125df90615292565b801561262c5780601f106126015761010080835404028352916020019161262c565b820191906000526020600020905b81548152906001019060200180831161260f57829003601f168201915b505050505081565b61263c6129de565b73ffffffffffffffffffffffffffffffffffffffff1661265a611c23565b73ffffffffffffffffffffffffffffffffffffffff16146126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790614c0a565b60405180910390fd5b6000600960008561ffff1661ffff16815260200190815260200160002080546126d890615292565b90501461271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190614d0a565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190612744929190613905565b50505050565b60115481565b6060600b805461275f90615292565b80601f016020809104026020016040519081016040528092919081815260200182805461278b90615292565b80156127d85780601f106127ad576101008083540402835291602001916127d8565b820191906000526020600020905b8154815290600101906020018083116127bb57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61287e6129de565b73ffffffffffffffffffffffffffffffffffffffff1661289c611c23565b73ffffffffffffffffffffffffffffffffffffffff16146128f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e990614c0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612959906149ea565b60405180910390fd5b61296b816133c0565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ac583611682565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612b229190613bbd565b91509150612b308282612e7d565b505050505050565b6000612b43826129e6565b612b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7990614aea565b60405180910390fd5b6000612b8d83611682565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bfc57508373ffffffffffffffffffffffffffffffffffffffff16612be484610ecb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c0d5750612c0c81856127e2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c3682611682565b73ffffffffffffffffffffffffffffffffffffffff1614612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8390614a0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390614a6a565b60405180910390fd5b612d07838383613486565b612d12600082612a52565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d629190615139565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db991906150b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e7883838361348b565b505050565b612e97828260405180602001604052806000815250613490565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614a8a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ffb9190614950565b60405180910390a3505050565b613013848484612c16565b61301f848484846134eb565b61305e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613055906149ca565b60405180910390fd5b50505050565b6060600a805461307390615292565b80601f016020809104026020016040519081016040528092919081815260200182805461309f90615292565b80156130ec5780601f106130c1576101008083540402835291602001916130ec565b820191906000526020600020905b8154815290600101906020018083116130cf57829003601f168201915b5050505050905090565b6060600082141561313e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061329e565b600082905060005b60008214613170578080613159906152f5565b915050600a826131699190615108565b9150613146565b60008167ffffffffffffffff8111156131b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131e45781602001600182028036833780820191505090505b5090505b60008514613297576001826131fd9190615139565b9150600a8561320c919061535a565b603061321891906150b2565b60f81b818381518110613254577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132909190615108565b94506131e8565b8093505050505b919050565b60006132ae82611682565b90506132bc81600084613486565b6132c7600083612a52565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133179190615139565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133bc8160008461348b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b61349a8383613682565b6134a760008484846134eb565b6134e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134dd906149ca565b60405180910390fd5b505050565b600061350c8473ffffffffffffffffffffffffffffffffffffffff1661385c565b15613675578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135356129de565b8786866040518563ffffffff1660e01b815260040161355794939291906148db565b602060405180830381600087803b15801561357157600080fd5b505af19250505080156135a257506040513d601f19601f8201168201806040525081019061359f9190613da0565b60015b613625573d80600081146135d2576040519150601f19603f3d011682016040523d82523d6000602084013e6135d7565b606091505b5060008151141561361d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613614906149ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061367a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e990614bca565b60405180910390fd5b6136fb816129e6565b1561373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373290614a2a565b60405180910390fd5b61374760008383613486565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461379791906150b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138586000838361348b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461388b90615292565b90600052602060002090601f0160209004810192826138ad57600085556138f4565b82601f106138c657805160ff19168380011785556138f4565b828001600101855582156138f4579182015b828111156138f35782518255916020019190600101906138d8565b5b509050613901919061398b565b5090565b82805461391190615292565b90600052602060002090601f016020900481019282613933576000855561397a565b82601f1061394c57803560ff191683800117855561397a565b8280016001018555821561397a579182015b8281111561397957823582559160200191906001019061395e565b5b509050613987919061398b565b5090565b5b808211156139a457600081600090555060010161398c565b5090565b60006139bb6139b684614fed565b614fc8565b9050828152602081018484840111156139d357600080fd5b6139de848285615250565b509392505050565b60006139f96139f48461501e565b614fc8565b905082815260208101848484011115613a1157600080fd5b613a1c848285615250565b509392505050565b600081359050613a3381615c02565b92915050565b600081519050613a4881615c19565b92915050565b600081359050613a5d81615c30565b92915050565b600081359050613a7281615c47565b92915050565b600081519050613a8781615c47565b92915050565b60008083601f840112613a9f57600080fd5b8235905067ffffffffffffffff811115613ab857600080fd5b602083019150836001820283011115613ad057600080fd5b9250929050565b600082601f830112613ae857600080fd5b8135613af88482602086016139a8565b91505092915050565b600082601f830112613b1257600080fd5b8135613b228482602086016139e6565b91505092915050565b600081359050613b3a81615c5e565b92915050565b600081359050613b4f81615c75565b92915050565b600081519050613b6481615c75565b92915050565b600081359050613b7981615c8c565b92915050565b600081359050613b8e81615ca3565b92915050565b600060208284031215613ba657600080fd5b6000613bb484828501613a24565b91505092915050565b60008060408385031215613bd057600080fd5b6000613bde85828601613a39565b9250506020613bef85828601613b55565b9150509250929050565b60008060408385031215613c0c57600080fd5b6000613c1a85828601613a24565b9250506020613c2b85828601613a24565b9150509250929050565b600080600060608486031215613c4a57600080fd5b6000613c5886828701613a24565b9350506020613c6986828701613a24565b9250506040613c7a86828701613b40565b9150509250925092565b60008060008060808587031215613c9a57600080fd5b6000613ca887828801613a24565b9450506020613cb987828801613a24565b9350506040613cca87828801613b40565b925050606085013567ffffffffffffffff811115613ce757600080fd5b613cf387828801613ad7565b91505092959194509250565b60008060408385031215613d1257600080fd5b6000613d2085828601613a24565b9250506020613d3185828601613a4e565b9150509250929050565b60008060408385031215613d4e57600080fd5b6000613d5c85828601613a24565b9250506020613d6d85828601613b40565b9150509250929050565b600060208284031215613d8957600080fd5b6000613d9784828501613a63565b91505092915050565b600060208284031215613db257600080fd5b6000613dc084828501613a78565b91505092915050565b600060208284031215613ddb57600080fd5b600082013567ffffffffffffffff811115613df557600080fd5b613e0184828501613b01565b91505092915050565b600060208284031215613e1c57600080fd5b6000613e2a84828501613b2b565b91505092915050565b600080600060408486031215613e4857600080fd5b6000613e5686828701613b2b565b935050602084013567ffffffffffffffff811115613e7357600080fd5b613e7f86828701613a8d565b92509250509250925092565b600080600060608486031215613ea057600080fd5b6000613eae86828701613b2b565b935050602084013567ffffffffffffffff811115613ecb57600080fd5b613ed786828701613ad7565b9250506040613ee886828701613b40565b9150509250925092565b600080600080600060808688031215613f0a57600080fd5b6000613f1888828901613b2b565b955050602086013567ffffffffffffffff811115613f3557600080fd5b613f4188828901613ad7565b9450506040613f5288828901613b6a565b935050606086013567ffffffffffffffff811115613f6f57600080fd5b613f7b88828901613a8d565b92509250509295509295909350565b60008060008060808587031215613fa057600080fd5b6000613fae87828801613b2b565b945050602085013567ffffffffffffffff811115613fcb57600080fd5b613fd787828801613ad7565b9350506040613fe887828801613b6a565b925050606085013567ffffffffffffffff81111561400557600080fd5b61401187828801613ad7565b91505092959194509250565b60008060008060006080868803121561403557600080fd5b600061404388828901613b2b565b955050602061405488828901613b2b565b945050604061406588828901613b40565b935050606086013567ffffffffffffffff81111561408257600080fd5b61408e88828901613a8d565b92509250509295509295909350565b600080604083850312156140b057600080fd5b60006140be85828601613b2b565b92505060206140cf85828601613b40565b9150509250929050565b6000602082840312156140eb57600080fd5b60006140f984828501613b40565b91505092915050565b6000806040838503121561411557600080fd5b600061412385828601613b55565b925050602061413485828601613b55565b9150509250929050565b60006020828403121561415057600080fd5b600061415e84828501613b7f565b91505092915050565b6141708161517f565b82525050565b61417f8161516d565b82525050565b61418e81615191565b82525050565b61419d8161519d565b82525050565b60006141af838561507a565b93506141bc838584615250565b6141c583615447565b840190509392505050565b60006141dc838561508b565b93506141e9838584615250565b82840190509392505050565b600061420082615064565b61420a818561507a565b935061421a81856020860161525f565b61422381615447565b840191505092915050565b600061423982615064565b614243818561508b565b935061425381856020860161525f565b80840191505092915050565b6000815461426c81615292565b614276818661507a565b9450600182166000811461429157600181146142a3576142d6565b60ff19831686526020860193506142d6565b6142ac8561504f565b60005b838110156142ce578154818901526001820191506020810190506142af565b808801955050505b50505092915050565b600081546142ec81615292565b6142f6818661508b565b94506001821660008114614311576001811461432257614355565b60ff19831686528186019350614355565b61432b8561504f565b60005b8381101561434d5781548189015260018201915060208101905061432e565b838801955050505b50505092915050565b6143678161522c565b82525050565b60006143788261506f565b6143828185615096565b935061439281856020860161525f565b61439b81615447565b840191505092915050565b60006143b18261506f565b6143bb81856150a7565b93506143cb81856020860161525f565b80840191505092915050565b60006143e4603283615096565b91506143ef82615465565b604082019050919050565b6000614407602683615096565b9150614412826154b4565b604082019050919050565b600061442a602583615096565b915061443582615503565b604082019050919050565b600061444d601c83615096565b915061445882615552565b602082019050919050565b6000614470601883615096565b915061447b8261557b565b602082019050919050565b6000614493602483615096565b915061449e826155a4565b604082019050919050565b60006144b6601983615096565b91506144c1826155f3565b602082019050919050565b60006144d9601a83615096565b91506144e48261561c565b602082019050919050565b60006144fc601383615096565b915061450782615645565b602082019050919050565b600061451f602c83615096565b915061452a8261566e565b604082019050919050565b6000614542601a83615096565b915061454d826156bd565b602082019050919050565b6000614565602983615096565b9150614570826156e6565b604082019050919050565b6000614588603883615096565b915061459382615735565b604082019050919050565b60006145ab602a83615096565b91506145b682615784565b604082019050919050565b60006145ce602983615096565b91506145d9826157d3565b604082019050919050565b60006145f1602b83615096565b91506145fc82615822565b604082019050919050565b6000614614602083615096565b915061461f82615871565b602082019050919050565b6000614637602c83615096565b91506146428261589a565b604082019050919050565b600061465a602083615096565b9150614665826158e9565b602082019050919050565b600061467d603483615096565b915061468882615912565b604082019050919050565b60006146a0602f83615096565b91506146ab82615961565b604082019050919050565b60006146c3602183615096565b91506146ce826159b0565b604082019050919050565b60006146e6601483615096565b91506146f1826159ff565b602082019050919050565b6000614709605183615096565b915061471482615a28565b606082019050919050565b600061472c603183615096565b915061473782615a9d565b604082019050919050565b600061474f602a83615096565b915061475a82615aec565b604082019050919050565b6000614772604083615096565b915061477d82615b3b565b604082019050919050565b6000614795602683615096565b91506147a082615b8a565b604082019050919050565b60006147b8601483615096565b91506147c382615bd9565b602082019050919050565b6147d7816151d3565b82525050565b6147ee6147e9826151d3565b61533e565b82525050565b6147fd81615201565b82525050565b61481461480f82615201565b615350565b82525050565b6148238161520b565b82525050565b60006148368284866141d0565b91508190509392505050565b600061484e828461422e565b915081905092915050565b600061486582846142df565b915081905092915050565b600061487c82856143a6565b915061488882846143a6565b91508190509392505050565b60006148a082856147dd565b6002820191506148b08284614803565b6020820191508190509392505050565b60006020820190506148d56000830184614176565b92915050565b60006080820190506148f06000830187614176565b6148fd6020830186614176565b61490a60408301856147f4565b818103606083015261491c81846141f5565b905095945050505050565b600060408201905061493c6000830185614176565b61494960208301846147f4565b9392505050565b60006020820190506149656000830184614185565b92915050565b6000602082019050818103600083015261498581846141f5565b905092915050565b60006020820190506149a2600083018461435e565b92915050565b600060208201905081810360008301526149c2818461436d565b905092915050565b600060208201905081810360008301526149e3816143d7565b9050919050565b60006020820190508181036000830152614a03816143fa565b9050919050565b60006020820190508181036000830152614a238161441d565b9050919050565b60006020820190508181036000830152614a4381614440565b9050919050565b60006020820190508181036000830152614a6381614463565b9050919050565b60006020820190508181036000830152614a8381614486565b9050919050565b60006020820190508181036000830152614aa3816144a9565b9050919050565b60006020820190508181036000830152614ac3816144cc565b9050919050565b60006020820190508181036000830152614ae3816144ef565b9050919050565b60006020820190508181036000830152614b0381614512565b9050919050565b60006020820190508181036000830152614b2381614535565b9050919050565b60006020820190508181036000830152614b4381614558565b9050919050565b60006020820190508181036000830152614b638161457b565b9050919050565b60006020820190508181036000830152614b838161459e565b9050919050565b60006020820190508181036000830152614ba3816145c1565b9050919050565b60006020820190508181036000830152614bc3816145e4565b9050919050565b60006020820190508181036000830152614be381614607565b9050919050565b60006020820190508181036000830152614c038161462a565b9050919050565b60006020820190508181036000830152614c238161464d565b9050919050565b60006020820190508181036000830152614c4381614670565b9050919050565b60006020820190508181036000830152614c6381614693565b9050919050565b60006020820190508181036000830152614c83816146b6565b9050919050565b60006020820190508181036000830152614ca3816146d9565b9050919050565b60006020820190508181036000830152614cc3816146fc565b9050919050565b60006020820190508181036000830152614ce38161471f565b9050919050565b60006020820190508181036000830152614d0381614742565b9050919050565b60006020820190508181036000830152614d2381614765565b9050919050565b60006020820190508181036000830152614d4381614788565b9050919050565b60006020820190508181036000830152614d63816147ab565b9050919050565b6000602082019050614d7f60008301846147ce565b92915050565b600060a082019050614d9a60008301886147ce565b614da76020830187614176565b8181036040830152614db981866141f5565b9050614dc86060830185614185565b8181036080830152614dda81846141f5565b90509695505050505050565b6000604082019050614dfb60008301866147ce565b8181036020830152614e0e8184866141a3565b9050949350505050565b6000608082019050614e2d60008301886147ce565b8181036020830152614e3f81876141f5565b9050614e4e604083018661481a565b8181036060830152614e618184866141a3565b90509695505050505050565b6000608082019050614e8260008301876147ce565b8181036020830152614e9481866141f5565b9050614ea3604083018561481a565b8181036060830152614eb581846141f5565b905095945050505050565b600060c082019050614ed560008301896147ce565b8181036020830152614ee7818861425f565b90508181036040830152614efb81876141f5565b9050614f0a6060830186614167565b614f176080830185614176565b81810360a0830152614f2981846141f5565b9050979650505050505050565b6000608082019050614f4b60008301886147ce565b614f5860208301876147ce565b614f6560408301866147f4565b8181036060830152614f788184866141a3565b90509695505050505050565b6000602082019050614f9960008301846147f4565b92915050565b6000604082019050614fb460008301856147f4565b614fc16020830184614194565b9392505050565b6000614fd2614fe3565b9050614fde82826152c4565b919050565b6000604051905090565b600067ffffffffffffffff82111561500857615007615418565b5b61501182615447565b9050602081019050919050565b600067ffffffffffffffff82111561503957615038615418565b5b61504282615447565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150bd82615201565b91506150c883615201565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150fd576150fc61538b565b5b828201905092915050565b600061511382615201565b915061511e83615201565b92508261512e5761512d6153ba565b5b828204905092915050565b600061514482615201565b915061514f83615201565b9250828210156151625761516161538b565b5b828203905092915050565b6000615178826151e1565b9050919050565b600061518a826151e1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b60006152378261523e565b9050919050565b6000615249826151e1565b9050919050565b82818337600083830152505050565b60005b8381101561527d578082015181840152602081019050615262565b8381111561528c576000848401525b50505050565b600060028204905060018216806152aa57607f821691505b602082108114156152be576152bd6153e9565b5b50919050565b6152cd82615447565b810181811067ffffffffffffffff821117156152ec576152eb615418565b5b80604052505050565b600061530082615201565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153335761533261538b565b5b600182019050919050565b600061534982615458565b9050919050565b6000819050919050565b600061536582615201565b915061537083615201565b9250826153805761537f6153ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d61782032204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4d6573736167652073656e646572206d757374206f776e20746865204c69747460008201527f6c65204d6f7573652e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f557365722077616c6c6574207265717569726564000000000000000000000000600082015250565b7f4c6974746c65204d6f7573653a206d73672e76616c7565206e6f7420656e6f7560008201527f676820746f20636f766572206d6573736167654665652e2053656e642067617360208201527f20666f72206d6573736167652066656573000000000000000000000000000000604082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5468697320636861696e206973206e6f742061207472757374656420736f757260008201527f636520736f757263652e00000000000000000000000000000000000000000000602082015250565b7f546865207472757374656420736f75726365206164647265737320686173206160008201527f6c7265616479206265656e2073657420666f722074686520636861696e496421602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b615c0b8161516d565b8114615c1657600080fd5b50565b615c228161517f565b8114615c2d57600080fd5b50565b615c3981615191565b8114615c4457600080fd5b50565b615c50816151a7565b8114615c5b57600080fd5b50565b615c67816151d3565b8114615c7257600080fd5b50565b615c7e81615201565b8114615c8957600080fd5b50565b615c958161520b565b8114615ca057600080fd5b50565b615cac8161521f565b8114615cb757600080fd5b5056fea26469706673582212202000d6485bed54cc689c0e5da04d1ef6298f562bd40f00c96ac98fa4182b0cfe64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f77656e6d696e742e6d7970696e6174612e636c6f75642f697066732f516d59616e4e3150523369577a7a646a4d354e55644a364d6232463238554a51786d51444c6448547a66586232512f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f77656e6d696e742e6d7970696e6174612e636c6f75642f697066732f516d544d344464375841394774465a56594c414d466b4256316b597a5133384e6332386646455563474c526666760000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://wenmint.mypinata.cloud/ipfs/QmYanN1PR3iWzzdjM5NUdJ6Mb2F28UJQxmQDLdHTzfXb2Q/
Arg [1] : _contractURI (string): https://wenmint.mypinata.cloud/ipfs/QmTM4Dd7XA9GtFZVYLAMFkBV1kYzQ38Nc28fFEUcGLRffv
Arg [2] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [3] : _startToken (uint256): 500
Arg [4] : _maxMint (uint256): 1000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [6] : 68747470733a2f2f77656e6d696e742e6d7970696e6174612e636c6f75642f69
Arg [7] : 7066732f516d59616e4e3150523369577a7a646a4d354e55644a364d62324632
Arg [8] : 38554a51786d51444c6448547a66586232512f00000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [10] : 68747470733a2f2f77656e6d696e742e6d7970696e6174612e636c6f75642f69
Arg [11] : 7066732f516d544d344464375841394774465a56594c414d466b4256316b597a
Arg [12] : 5133384e6332386646455563474c526666760000000000000000000000000000


Deployed Bytecode Sourcemap

48683:6743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14062:935;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35264:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36209:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54918:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37768:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37291:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55047:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15005:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49078:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38518:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48810:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38928:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55182:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50461:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53238:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13512:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50151:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35903:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48952:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49887:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50786:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35633:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55366:57;;;;;;;;;;;;;:::i;:::-;;13749:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11888:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13652:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;50277:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54401:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36378:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38061:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50009:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48997:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39184:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36553:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54662:248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51646:1509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15644:758;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48777:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16410:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49040:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53397:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38287:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12797:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48845:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14062:935;14224:8;;;;;;;;;;;14202:31;;:10;:31;;;14194:40;;;;;;14345:19;:32;14365:11;14345:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;14323:11;:18;:61;:134;;;;;14424:19;:32;14444:11;14424:32;;;;;;;;;;;;;;;14414:43;;;;;;:::i;:::-;;;;;;;;14398:11;14388:22;;;;;;:69;14323:134;14315:199;;;;;;;;;;;;:::i;:::-;;;;;;;;;14642:4;:16;;;14659:11;14672;14685:6;14693:8;14642:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14638:352;;14849:52;;;;;;;;14864:8;:15;14849:52;;;;14891:8;14881:19;;;;;;14849:52;;;14798:14;:27;14813:11;14798:27;;;;;;;;;;;;;;;14826:11;14798:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;14839:6;14798:48;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;;;;;14921:57;14935:11;14948;14961:6;14969:8;14921:57;;;;;;;;;:::i;:::-;;;;;;;;14638:352;;;;14062:935;;;;:::o;35264:305::-;35366:4;35418:25;35403:40;;;:11;:40;;;;:105;;;;35475:33;35460:48;;;:11;:48;;;;35403:105;:158;;;;35525:36;35549:11;35525:23;:36::i;:::-;35403:158;35383:178;;35264:305;;;:::o;36209:100::-;36263:13;36296:5;36289:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36209:100;:::o;54918:121::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54998:8:::1;;;;;;;;;;;:23;;;55022:8;54998:33;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54918:121:::0;:::o;37768:221::-;37844:7;37872:16;37880:7;37872;:16::i;:::-;37864:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37957:15;:24;37973:7;37957:24;;;;;;;;;;;;;;;;;;;;;37950:31;;37768:221;;;:::o;37291:411::-;37372:13;37388:23;37403:7;37388:14;:23::i;:::-;37372:39;;37436:5;37430:11;;:2;:11;;;;37422:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37530:5;37514:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37539:37;37556:5;37563:12;:10;:12::i;:::-;37539:16;:37::i;:::-;37514:62;37492:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;37673:21;37682:2;37686:7;37673:8;:21::i;:::-;37291:411;;;:::o;55047:127::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55130:8:::1;;;;;;;;;;;:26;;;55157:8;55130:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55047:127:::0;:::o;15005:318::-;15196:4;15174:27;;:10;:27;;;15166:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;15260:55;15272:11;15285;15298:6;15306:8;15260:10;:55::i;:::-;15005:318;;;;:::o;49078:41::-;;;;;;;;;;;;;;;;;:::o;38518:339::-;38713:41;38732:12;:10;:12::i;:::-;38746:7;38713:18;:41::i;:::-;38705:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38821:28;38831:4;38837:2;38841:7;38821:9;:28::i;:::-;38518:339;;;:::o;48810:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38928:185::-;39066:39;39083:4;39089:2;39093:7;39066:39;;;;;;;;;;;;:16;:39::i;:::-;38928:185;;;:::o;55182:176::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55297:8:::1;;;;;;;;;;;:27;;;55325:11;55338;;55297:53;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55182:176:::0;;;:::o;50461:264::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50563:7:::1;;50550:9;50536:23;;:11;;:23;;;;:::i;:::-;:34;;50528:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50620:9;50615:103;50639:9;50635:13;;:1;:13;50615:103;;;50670:36;50680:10;50694:11;;50692:13;;;;;:::i;:::-;;;;;;;50670:9;:36::i;:::-;50650:3;;;;;:::i;:::-;;;;50615:103;;;;50461:264:::0;:::o;53238:113::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53330:13:::1;53315:12;:28;;;;;;;;;;;;:::i;:::-;;53238:113:::0;:::o;13512:34::-;;;;;;;;;;;;;:::o;50151:118::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50246:15:::1;50231:12;:30;;;;50151:118:::0;:::o;35903:239::-;35975:7;35995:13;36011:7;:16;36019:7;36011:16;;;;;;;;;;;;;;;;;;;;;35995:32;;36063:1;36046:19;;:5;:19;;;;36038:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36129:5;36122:12;;;35903:239;;;:::o;48952:38::-;;;;:::o;49887:114::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49986:7:::1;49964:19;:29;;;;49887:114:::0;:::o;50786:639::-;50867:9;50853:23;;:10;:23;;;50845:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;50943:1;50920:19;;:24;;:66;;;;;50971:15;50948:19;;:38;;50920:66;50912:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;51045:12;;51032:9;:25;;;;51024:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51141:16;;51128:9;51107:30;;:6;:18;51114:10;51107:18;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:50;;51099:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;51232:7;;51219:9;51205:23;;:11;;:23;;;;:::i;:::-;:34;;51197:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51281:6;51276:98;51295:9;51291:13;;:1;:13;51276:98;;;51326:36;51336:10;51350:11;;51348:13;;;;;:::i;:::-;;;;;;;51326:9;:36::i;:::-;51306:3;;;;;:::i;:::-;;;;51276:98;;;;51408:9;51386:31;;:6;:18;51393:10;51386:18;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;50786:639;:::o;35633:208::-;35705:7;35750:1;35733:19;;:5;:19;;;;35725:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35817:9;:16;35827:5;35817:16;;;;;;;;;;;;;;;;35810:23;;35633:208;;;:::o;55366:57::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55366:57::o;13749:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11888:87::-;11934:7;11961:6;;;;;;;;;;;11954:13;;11888:87;:::o;13652:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50277:117::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50374:12:::1;50357:14;:29;;;;;;;;;;;;:::i;:::-;;50277:117:::0;:::o;54401:128::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54515:6:::1;54486:26;:35;;;;54401:128:::0;:::o;36378:104::-;36434:13;36467:7;36460:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36378:104;:::o;38061:155::-;38156:52;38175:12;:10;:12::i;:::-;38189:8;38199;38156:18;:52::i;:::-;38061:155;;:::o;50009:134::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50116:19:::1;50097:16;:38;;;;50009:134:::0;:::o;48997:36::-;;;;:::o;39184:328::-;39359:41;39378:12;:10;:12::i;:::-;39392:7;39359:18;:41::i;:::-;39351:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;39465:39;39479:4;39485:2;39489:7;39498:5;39465:13;:39::i;:::-;39184:328;;;;:::o;36553:334::-;36626:13;36660:16;36668:7;36660;:16::i;:::-;36652:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36741:21;36765:10;:8;:10::i;:::-;36741:34;;36817:1;36799:7;36793:21;:25;:86;;;;;;;;;;;;;;;;;36845:7;36854:18;:7;:16;:18::i;:::-;36828:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36793:86;36786:93;;;36553:334;;;:::o;54662:248::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54842:8:::1;;;;;;;;;;;:18;;;54861:8;54871;54881:11;54894:7;;54842:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54662:248:::0;;;;;:::o;51646:1509::-;51778:17;51786:8;51778:7;:17::i;:::-;51764:31;;:10;:31;;;51756:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51900:1;51860:19;:29;51880:8;51860:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:41;;51852:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;51999:15;52005:8;51999:5;:15::i;:::-;52089:20;52123:10;52135:8;52112:32;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52089:55;;52225:14;52242:1;52225:18;;52254:26;52300:7;52309:26;;52283:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52254:82;;52414:23;52443:8;;;;;;;;;;;:21;;;52465:8;52483:4;52490:7;52499:5;52506:13;52443:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52413:107;;;52568:18;52555:9;:31;;52533:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;52708:8;;;;;;;;;;;:13;;;52728:9;52753:8;52820:19;:29;52840:8;52820:29;;;;;;;;;;;;;;;52894:7;52971:10;53033:3;53089:13;52708:439;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51646:1509;;;;;;:::o;15644:758::-;15825:32;15860:14;:27;15875:11;15860:27;;;;;;;;;;;;;;;15888:11;15860:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;15901:6;15860:48;;;;;;;;;;;;;15825:83;;15960:1;15952:10;;15927:9;:21;;;:35;;15919:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;16043:9;:23;;;16024:8;;:15;;:42;:90;;;;;16093:9;:21;;;16080:8;;16070:19;;;;;;;:::i;:::-;;;;;;;;:44;16024:90;16016:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;16219:1;16193:9;:23;;:27;;;;16263:1;16255:10;;16231:9;:21;;:34;;;;16334:4;:16;;;16351:11;16364;16377:6;16385:8;;16334:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15644:758;;;;;;:::o;48777:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16410:287::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16562:1:::1;16522:19;:29;16542:8;16522:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:41;16514:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;16675:14;;16643:19;:29;16663:8;16643:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;16410:287:::0;;;:::o;49040:31::-;;;;:::o;53397:99::-;53441:13;53474:14;53467:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53397:99;:::o;38287:164::-;38384:4;38408:18;:25;38427:5;38408:25;;;;;;;;;;;;;;;:35;38434:8;38408:35;;;;;;;;;;;;;;;;;;;;;;;;;38401:42;;38287:164;;;;:::o;12797:201::-;12119:12;:10;:12::i;:::-;12108:23;;:7;:5;:7::i;:::-;:23;;;12100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12906:1:::1;12886:22;;:8;:22;;;;12878:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12962:28;12981:8;12962:18;:28::i;:::-;12797:201:::0;:::o;48845:50::-;;;;:::o;28018:157::-;28103:4;28142:25;28127:40;;;:11;:40;;;;28120:47;;28018:157;;;:::o;10612:98::-;10665:7;10692:10;10685:17;;10612:98;:::o;41022:127::-;41087:4;41139:1;41111:30;;:7;:16;41119:7;41111:16;;;;;;;;;;;;;;;;;;;;;:30;;;;41104:37;;41022:127;;;:::o;45168:174::-;45270:2;45243:15;:24;45259:7;45243:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45326:7;45322:2;45288:46;;45297:23;45312:7;45297:14;:23::i;:::-;45288:46;;;;;;;;;;;;45168:174;;:::o;54078:315::-;54213:31;54246:28;54289:8;54278:40;;;;;;;;;;;;:::i;:::-;54212:106;;;;54329:56;54339:23;54364:20;54329:9;:56::i;:::-;54078:315;;;;;;:::o;41316:348::-;41409:4;41434:16;41442:7;41434;:16::i;:::-;41426:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41510:13;41526:23;41541:7;41526:14;:23::i;:::-;41510:39;;41579:5;41568:16;;:7;:16;;;:51;;;;41612:7;41588:31;;:20;41600:7;41588:11;:20::i;:::-;:31;;;41568:51;:87;;;;41623:32;41640:5;41647:7;41623:16;:32::i;:::-;41568:87;41560:96;;;41316:348;;;;:::o;44425:625::-;44584:4;44557:31;;:23;44572:7;44557:14;:23::i;:::-;:31;;;44549:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44663:1;44649:16;;:2;:16;;;;44641:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44719:39;44740:4;44746:2;44750:7;44719:20;:39::i;:::-;44823:29;44840:1;44844:7;44823:8;:29::i;:::-;44884:1;44865:9;:15;44875:4;44865:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;44913:1;44896:9;:13;44906:2;44896:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44944:2;44925:7;:16;44933:7;44925:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44983:7;44979:2;44964:27;;44973:4;44964:27;;;;;;;;;;;;45004:38;45024:4;45030:2;45034:7;45004:19;:38::i;:::-;44425:625;;;:::o;42006:110::-;42082:26;42092:2;42096:7;42082:26;;;;;;;;;;;;:9;:26::i;:::-;42006:110;;:::o;45484:315::-;45639:8;45630:17;;:5;:17;;;;45622:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45726:8;45688:18;:25;45707:5;45688:25;;;;;;;;;;;;;;;:35;45714:8;45688:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45772:8;45750:41;;45765:5;45750:41;;;45782:8;45750:41;;;;;;:::i;:::-;;;;;;;;45484:315;;;:::o;40394:::-;40551:28;40561:4;40567:2;40571:7;40551:9;:28::i;:::-;40598:48;40621:4;40627:2;40631:7;40640:5;40598:22;:48::i;:::-;40590:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;40394:315;;;;:::o;53538:105::-;53590:13;53623:12;53616:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53538:105;:::o;8174:723::-;8230:13;8460:1;8451:5;:10;8447:53;;;8478:10;;;;;;;;;;;;;;;;;;;;;8447:53;8510:12;8525:5;8510:20;;8541:14;8566:78;8581:1;8573:4;:9;8566:78;;8599:8;;;;;:::i;:::-;;;;8630:2;8622:10;;;;;:::i;:::-;;;8566:78;;;8654:19;8686:6;8676:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8654:39;;8704:154;8720:1;8711:5;:10;8704:154;;8748:1;8738:11;;;;;:::i;:::-;;;8815:2;8807:5;:10;;;;:::i;:::-;8794:2;:24;;;;:::i;:::-;8781:39;;8764:6;8771;8764:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;8844:2;8835:11;;;;;:::i;:::-;;;8704:154;;;8882:6;8868:21;;;;;8174:723;;;;:::o;43668:420::-;43728:13;43744:23;43759:7;43744:14;:23::i;:::-;43728:39;;43780:48;43801:5;43816:1;43820:7;43780:20;:48::i;:::-;43869:29;43886:1;43890:7;43869:8;:29::i;:::-;43931:1;43911:9;:16;43921:5;43911:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;43950:7;:16;43958:7;43950:16;;;;;;;;;;;;43943:23;;;;;;;;;;;44012:7;44008:1;43984:36;;43993:5;43984:36;;;;;;;;;;;;44033:47;44053:5;44068:1;44072:7;44033:19;:47::i;:::-;43668:420;;:::o;13158:191::-;13232:16;13251:6;;;;;;;;;;;13232:25;;13277:8;13268:6;;:17;;;;;;;;;;;;;;;;;;13332:8;13301:40;;13322:8;13301:40;;;;;;;;;;;;13158:191;;:::o;47735:126::-;;;;:::o;48246:125::-;;;;:::o;42343:321::-;42473:18;42479:2;42483:7;42473:5;:18::i;:::-;42524:54;42555:1;42559:2;42563:7;42572:5;42524:22;:54::i;:::-;42502:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;42343:321;;;:::o;46364:799::-;46519:4;46540:15;:2;:13;;;:15::i;:::-;46536:620;;;46592:2;46576:36;;;46613:12;:10;:12::i;:::-;46627:4;46633:7;46642:5;46576:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46572:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46835:1;46818:6;:13;:18;46814:272;;;46861:60;;;;;;;;;;:::i;:::-;;;;;;;;46814:272;47036:6;47030:13;47021:6;47017:2;47013:15;47006:38;46572:529;46709:41;;;46699:51;;;:6;:51;;;;46692:58;;;;;46536:620;47140:4;47133:11;;46364:799;;;;;;;:::o;43000:439::-;43094:1;43080:16;;:2;:16;;;;43072:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43153:16;43161:7;43153;:16::i;:::-;43152:17;43144:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43215:45;43244:1;43248:2;43252:7;43215:20;:45::i;:::-;43290:1;43273:9;:13;43283:2;43273:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43321:2;43302:7;:16;43310:7;43302:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43366:7;43362:2;43341:33;;43358:1;43341:33;;;;;;;;;;;;43387:44;43415:1;43419:2;43423:7;43387:19;:44::i;:::-;43000:439;;:::o;17935:326::-;17995:4;18252:1;18230:7;:19;;;:23;18223:30;;17935:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:159::-;917:5;948:6;942:13;933:22;;964:41;999:5;964:41;:::i;:::-;923:88;;;;:::o;1017:133::-;1060:5;1098:6;1085:20;1076:29;;1114:30;1138:5;1114:30;:::i;:::-;1066:84;;;;:::o;1156:137::-;1201:5;1239:6;1226:20;1217:29;;1255:32;1281:5;1255:32;:::i;:::-;1207:86;;;;:::o;1299:141::-;1355:5;1386:6;1380:13;1371:22;;1402:32;1428:5;1402:32;:::i;:::-;1361:79;;;;:::o;1459:351::-;1516:8;1526:6;1576:3;1569:4;1561:6;1557:17;1553:27;1543:2;;1594:1;1591;1584:12;1543:2;1630:6;1617:20;1607:30;;1660:18;1652:6;1649:30;1646:2;;;1692:1;1689;1682:12;1646:2;1729:4;1721:6;1717:17;1705:29;;1783:3;1775:4;1767:6;1763:17;1753:8;1749:32;1746:41;1743:2;;;1800:1;1797;1790:12;1743:2;1533:277;;;;;:::o;1829:271::-;1884:5;1933:3;1926:4;1918:6;1914:17;1910:27;1900:2;;1951:1;1948;1941:12;1900:2;1991:6;1978:20;2016:78;2090:3;2082:6;2075:4;2067:6;2063:17;2016:78;:::i;:::-;2007:87;;1890:210;;;;;:::o;2120:273::-;2176:5;2225:3;2218:4;2210:6;2206:17;2202:27;2192:2;;2243:1;2240;2233:12;2192:2;2283:6;2270:20;2308:79;2383:3;2375:6;2368:4;2360:6;2356:17;2308:79;:::i;:::-;2299:88;;2182:211;;;;;:::o;2399:137::-;2444:5;2482:6;2469:20;2460:29;;2498:32;2524:5;2498:32;:::i;:::-;2450:86;;;;:::o;2542:139::-;2588:5;2626:6;2613:20;2604:29;;2642:33;2669:5;2642:33;:::i;:::-;2594:87;;;;:::o;2687:143::-;2744:5;2775:6;2769:13;2760:22;;2791:33;2818:5;2791:33;:::i;:::-;2750:80;;;;:::o;2836:137::-;2881:5;2919:6;2906:20;2897:29;;2935:32;2961:5;2935:32;:::i;:::-;2887:86;;;;:::o;2979:135::-;3023:5;3061:6;3048:20;3039:29;;3077:31;3102:5;3077:31;:::i;:::-;3029:85;;;;:::o;3120:262::-;3179:6;3228:2;3216:9;3207:7;3203:23;3199:32;3196:2;;;3244:1;3241;3234:12;3196:2;3287:1;3312:53;3357:7;3348:6;3337:9;3333:22;3312:53;:::i;:::-;3302:63;;3258:117;3186:196;;;;:::o;3388:456::-;3475:6;3483;3532:2;3520:9;3511:7;3507:23;3503:32;3500:2;;;3548:1;3545;3538:12;3500:2;3591:1;3616:72;3680:7;3671:6;3660:9;3656:22;3616:72;:::i;:::-;3606:82;;3562:136;3737:2;3763:64;3819:7;3810:6;3799:9;3795:22;3763:64;:::i;:::-;3753:74;;3708:129;3490:354;;;;;:::o;3850:407::-;3918:6;3926;3975:2;3963:9;3954:7;3950:23;3946:32;3943:2;;;3991:1;3988;3981:12;3943:2;4034:1;4059:53;4104:7;4095:6;4084:9;4080:22;4059:53;:::i;:::-;4049:63;;4005:117;4161:2;4187:53;4232:7;4223:6;4212:9;4208:22;4187:53;:::i;:::-;4177:63;;4132:118;3933:324;;;;;:::o;4263:552::-;4340:6;4348;4356;4405:2;4393:9;4384:7;4380:23;4376:32;4373:2;;;4421:1;4418;4411:12;4373:2;4464:1;4489:53;4534:7;4525:6;4514:9;4510:22;4489:53;:::i;:::-;4479:63;;4435:117;4591:2;4617:53;4662:7;4653:6;4642:9;4638:22;4617:53;:::i;:::-;4607:63;;4562:118;4719:2;4745:53;4790:7;4781:6;4770:9;4766:22;4745:53;:::i;:::-;4735:63;;4690:118;4363:452;;;;;:::o;4821:809::-;4916:6;4924;4932;4940;4989:3;4977:9;4968:7;4964:23;4960:33;4957:2;;;5006:1;5003;4996:12;4957:2;5049:1;5074:53;5119:7;5110:6;5099:9;5095:22;5074:53;:::i;:::-;5064:63;;5020:117;5176:2;5202:53;5247:7;5238:6;5227:9;5223:22;5202:53;:::i;:::-;5192:63;;5147:118;5304:2;5330:53;5375:7;5366:6;5355:9;5351:22;5330:53;:::i;:::-;5320:63;;5275:118;5460:2;5449:9;5445:18;5432:32;5491:18;5483:6;5480:30;5477:2;;;5523:1;5520;5513:12;5477:2;5551:62;5605:7;5596:6;5585:9;5581:22;5551:62;:::i;:::-;5541:72;;5403:220;4947:683;;;;;;;:::o;5636:401::-;5701:6;5709;5758:2;5746:9;5737:7;5733:23;5729:32;5726:2;;;5774:1;5771;5764:12;5726:2;5817:1;5842:53;5887:7;5878:6;5867:9;5863:22;5842:53;:::i;:::-;5832:63;;5788:117;5944:2;5970:50;6012:7;6003:6;5992:9;5988:22;5970:50;:::i;:::-;5960:60;;5915:115;5716:321;;;;;:::o;6043:407::-;6111:6;6119;6168:2;6156:9;6147:7;6143:23;6139:32;6136:2;;;6184:1;6181;6174:12;6136:2;6227:1;6252:53;6297:7;6288:6;6277:9;6273:22;6252:53;:::i;:::-;6242:63;;6198:117;6354:2;6380:53;6425:7;6416:6;6405:9;6401:22;6380:53;:::i;:::-;6370:63;;6325:118;6126:324;;;;;:::o;6456:260::-;6514:6;6563:2;6551:9;6542:7;6538:23;6534:32;6531:2;;;6579:1;6576;6569:12;6531:2;6622:1;6647:52;6691:7;6682:6;6671:9;6667:22;6647:52;:::i;:::-;6637:62;;6593:116;6521:195;;;;:::o;6722:282::-;6791:6;6840:2;6828:9;6819:7;6815:23;6811:32;6808:2;;;6856:1;6853;6846:12;6808:2;6899:1;6924:63;6979:7;6970:6;6959:9;6955:22;6924:63;:::i;:::-;6914:73;;6870:127;6798:206;;;;:::o;7010:375::-;7079:6;7128:2;7116:9;7107:7;7103:23;7099:32;7096:2;;;7144:1;7141;7134:12;7096:2;7215:1;7204:9;7200:17;7187:31;7245:18;7237:6;7234:30;7231:2;;;7277:1;7274;7267:12;7231:2;7305:63;7360:7;7351:6;7340:9;7336:22;7305:63;:::i;:::-;7295:73;;7158:220;7086:299;;;;:::o;7391:260::-;7449:6;7498:2;7486:9;7477:7;7473:23;7469:32;7466:2;;;7514:1;7511;7504:12;7466:2;7557:1;7582:52;7626:7;7617:6;7606:9;7602:22;7582:52;:::i;:::-;7572:62;;7528:116;7456:195;;;;:::o;7657:536::-;7735:6;7743;7751;7800:2;7788:9;7779:7;7775:23;7771:32;7768:2;;;7816:1;7813;7806:12;7768:2;7859:1;7884:52;7928:7;7919:6;7908:9;7904:22;7884:52;:::i;:::-;7874:62;;7830:116;8013:2;8002:9;7998:18;7985:32;8044:18;8036:6;8033:30;8030:2;;;8076:1;8073;8066:12;8030:2;8112:64;8168:7;8159:6;8148:9;8144:22;8112:64;:::i;:::-;8094:82;;;;7956:230;7758:435;;;;;:::o;8199:661::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:2;;;8365:1;8362;8355:12;8317:2;8408:1;8433:52;8477:7;8468:6;8457:9;8453:22;8433:52;:::i;:::-;8423:62;;8379:116;8562:2;8551:9;8547:18;8534:32;8593:18;8585:6;8582:30;8579:2;;;8625:1;8622;8615:12;8579:2;8653:62;8707:7;8698:6;8687:9;8683:22;8653:62;:::i;:::-;8643:72;;8505:220;8764:2;8790:53;8835:7;8826:6;8815:9;8811:22;8790:53;:::i;:::-;8780:63;;8735:118;8307:553;;;;;:::o;8866:936::-;8970:6;8978;8986;8994;9002;9051:3;9039:9;9030:7;9026:23;9022:33;9019:2;;;9068:1;9065;9058:12;9019:2;9111:1;9136:52;9180:7;9171:6;9160:9;9156:22;9136:52;:::i;:::-;9126:62;;9082:116;9265:2;9254:9;9250:18;9237:32;9296:18;9288:6;9285:30;9282:2;;;9328:1;9325;9318:12;9282:2;9356:62;9410:7;9401:6;9390:9;9386:22;9356:62;:::i;:::-;9346:72;;9208:220;9467:2;9493:52;9537:7;9528:6;9517:9;9513:22;9493:52;:::i;:::-;9483:62;;9438:117;9622:2;9611:9;9607:18;9594:32;9653:18;9645:6;9642:30;9639:2;;;9685:1;9682;9675:12;9639:2;9721:64;9777:7;9768:6;9757:9;9753:22;9721:64;:::i;:::-;9703:82;;;;9565:230;9009:793;;;;;;;;:::o;9808:916::-;9910:6;9918;9926;9934;9983:3;9971:9;9962:7;9958:23;9954:33;9951:2;;;10000:1;9997;9990:12;9951:2;10043:1;10068:52;10112:7;10103:6;10092:9;10088:22;10068:52;:::i;:::-;10058:62;;10014:116;10197:2;10186:9;10182:18;10169:32;10228:18;10220:6;10217:30;10214:2;;;10260:1;10257;10250:12;10214:2;10288:62;10342:7;10333:6;10322:9;10318:22;10288:62;:::i;:::-;10278:72;;10140:220;10399:2;10425:52;10469:7;10460:6;10449:9;10445:22;10425:52;:::i;:::-;10415:62;;10370:117;10554:2;10543:9;10539:18;10526:32;10585:18;10577:6;10574:30;10571:2;;;10617:1;10614;10607:12;10571:2;10645:62;10699:7;10690:6;10679:9;10675:22;10645:62;:::i;:::-;10635:72;;10497:220;9941:783;;;;;;;:::o;10730:825::-;10825:6;10833;10841;10849;10857;10906:3;10894:9;10885:7;10881:23;10877:33;10874:2;;;10923:1;10920;10913:12;10874:2;10966:1;10991:52;11035:7;11026:6;11015:9;11011:22;10991:52;:::i;:::-;10981:62;;10937:116;11092:2;11118:52;11162:7;11153:6;11142:9;11138:22;11118:52;:::i;:::-;11108:62;;11063:117;11219:2;11245:53;11290:7;11281:6;11270:9;11266:22;11245:53;:::i;:::-;11235:63;;11190:118;11375:2;11364:9;11360:18;11347:32;11406:18;11398:6;11395:30;11392:2;;;11438:1;11435;11428:12;11392:2;11474:64;11530:7;11521:6;11510:9;11506:22;11474:64;:::i;:::-;11456:82;;;;11318:230;10864:691;;;;;;;;:::o;11561:405::-;11628:6;11636;11685:2;11673:9;11664:7;11660:23;11656:32;11653:2;;;11701:1;11698;11691:12;11653:2;11744:1;11769:52;11813:7;11804:6;11793:9;11789:22;11769:52;:::i;:::-;11759:62;;11715:116;11870:2;11896:53;11941:7;11932:6;11921:9;11917:22;11896:53;:::i;:::-;11886:63;;11841:118;11643:323;;;;;:::o;11972:262::-;12031:6;12080:2;12068:9;12059:7;12055:23;12051:32;12048:2;;;12096:1;12093;12086:12;12048:2;12139:1;12164:53;12209:7;12200:6;12189:9;12185:22;12164:53;:::i;:::-;12154:63;;12110:117;12038:196;;;;:::o;12240:440::-;12319:6;12327;12376:2;12364:9;12355:7;12351:23;12347:32;12344:2;;;12392:1;12389;12382:12;12344:2;12435:1;12460:64;12516:7;12507:6;12496:9;12492:22;12460:64;:::i;:::-;12450:74;;12406:128;12573:2;12599:64;12655:7;12646:6;12635:9;12631:22;12599:64;:::i;:::-;12589:74;;12544:129;12334:346;;;;;:::o;12686:258::-;12743:6;12792:2;12780:9;12771:7;12767:23;12763:32;12760:2;;;12808:1;12805;12798:12;12760:2;12851:1;12876:51;12919:7;12910:6;12899:9;12895:22;12876:51;:::i;:::-;12866:61;;12822:115;12750:194;;;;:::o;12950:142::-;13053:32;13079:5;13053:32;:::i;:::-;13048:3;13041:45;13031:61;;:::o;13098:118::-;13185:24;13203:5;13185:24;:::i;:::-;13180:3;13173:37;13163:53;;:::o;13222:109::-;13303:21;13318:5;13303:21;:::i;:::-;13298:3;13291:34;13281:50;;:::o;13337:118::-;13424:24;13442:5;13424:24;:::i;:::-;13419:3;13412:37;13402:53;;:::o;13483:301::-;13579:3;13600:70;13663:6;13658:3;13600:70;:::i;:::-;13593:77;;13680:43;13716:6;13711:3;13704:5;13680:43;:::i;:::-;13748:29;13770:6;13748:29;:::i;:::-;13743:3;13739:39;13732:46;;13583:201;;;;;:::o;13812:314::-;13926:3;13947:88;14028:6;14023:3;13947:88;:::i;:::-;13940:95;;14045:43;14081:6;14076:3;14069:5;14045:43;:::i;:::-;14113:6;14108:3;14104:16;14097:23;;13930:196;;;;;:::o;14132:360::-;14218:3;14246:38;14278:5;14246:38;:::i;:::-;14300:70;14363:6;14358:3;14300:70;:::i;:::-;14293:77;;14379:52;14424:6;14419:3;14412:4;14405:5;14401:16;14379:52;:::i;:::-;14456:29;14478:6;14456:29;:::i;:::-;14451:3;14447:39;14440:46;;14222:270;;;;;:::o;14498:373::-;14602:3;14630:38;14662:5;14630:38;:::i;:::-;14684:88;14765:6;14760:3;14684:88;:::i;:::-;14677:95;;14781:52;14826:6;14821:3;14814:4;14807:5;14803:16;14781:52;:::i;:::-;14858:6;14853:3;14849:16;14842:23;;14606:265;;;;;:::o;14899:798::-;14982:3;15019:5;15013:12;15048:36;15074:9;15048:36;:::i;:::-;15100:70;15163:6;15158:3;15100:70;:::i;:::-;15093:77;;15201:1;15190:9;15186:17;15217:1;15212:135;;;;15361:1;15356:335;;;;15179:512;;15212:135;15296:4;15292:9;15281;15277:25;15272:3;15265:38;15332:4;15327:3;15323:14;15316:21;;15212:135;;15356:335;15423:37;15454:5;15423:37;:::i;:::-;15482:1;15496:154;15510:6;15507:1;15504:13;15496:154;;;15584:7;15578:14;15574:1;15569:3;15565:11;15558:35;15634:1;15625:7;15621:15;15610:26;;15532:4;15529:1;15525:12;15520:17;;15496:154;;;15679:1;15674:3;15670:11;15663:18;;15363:328;;15179:512;;14986:711;;;;;;:::o;15725:841::-;15826:3;15863:5;15857:12;15892:36;15918:9;15892:36;:::i;:::-;15944:88;16025:6;16020:3;15944:88;:::i;:::-;15937:95;;16063:1;16052:9;16048:17;16079:1;16074:137;;;;16225:1;16220:340;;;;16041:519;;16074:137;16158:4;16154:9;16143;16139:25;16134:3;16127:38;16194:6;16189:3;16185:16;16178:23;;16074:137;;16220:340;16287:37;16318:5;16287:37;:::i;:::-;16346:1;16360:154;16374:6;16371:1;16368:13;16360:154;;;16448:7;16442:14;16438:1;16433:3;16429:11;16422:35;16498:1;16489:7;16485:15;16474:26;;16396:4;16393:1;16389:12;16384:17;;16360:154;;;16543:6;16538:3;16534:16;16527:23;;16227:333;;16041:519;;15830:736;;;;;;:::o;16572:183::-;16685:63;16742:5;16685:63;:::i;:::-;16680:3;16673:76;16663:92;;:::o;16761:364::-;16849:3;16877:39;16910:5;16877:39;:::i;:::-;16932:71;16996:6;16991:3;16932:71;:::i;:::-;16925:78;;17012:52;17057:6;17052:3;17045:4;17038:5;17034:16;17012:52;:::i;:::-;17089:29;17111:6;17089:29;:::i;:::-;17084:3;17080:39;17073:46;;16853:272;;;;;:::o;17131:377::-;17237:3;17265:39;17298:5;17265:39;:::i;:::-;17320:89;17402:6;17397:3;17320:89;:::i;:::-;17313:96;;17418:52;17463:6;17458:3;17451:4;17444:5;17440:16;17418:52;:::i;:::-;17495:6;17490:3;17486:16;17479:23;;17241:267;;;;;:::o;17514:366::-;17656:3;17677:67;17741:2;17736:3;17677:67;:::i;:::-;17670:74;;17753:93;17842:3;17753:93;:::i;:::-;17871:2;17866:3;17862:12;17855:19;;17660:220;;;:::o;17886:366::-;18028:3;18049:67;18113:2;18108:3;18049:67;:::i;:::-;18042:74;;18125:93;18214:3;18125:93;:::i;:::-;18243:2;18238:3;18234:12;18227:19;;18032:220;;;:::o;18258:366::-;18400:3;18421:67;18485:2;18480:3;18421:67;:::i;:::-;18414:74;;18497:93;18586:3;18497:93;:::i;:::-;18615:2;18610:3;18606:12;18599:19;;18404:220;;;:::o;18630:366::-;18772:3;18793:67;18857:2;18852:3;18793:67;:::i;:::-;18786:74;;18869:93;18958:3;18869:93;:::i;:::-;18987:2;18982:3;18978:12;18971:19;;18776:220;;;:::o;19002:366::-;19144:3;19165:67;19229:2;19224:3;19165:67;:::i;:::-;19158:74;;19241:93;19330:3;19241:93;:::i;:::-;19359:2;19354:3;19350:12;19343:19;;19148:220;;;:::o;19374:366::-;19516:3;19537:67;19601:2;19596:3;19537:67;:::i;:::-;19530:74;;19613:93;19702:3;19613:93;:::i;:::-;19731:2;19726:3;19722:12;19715:19;;19520:220;;;:::o;19746:366::-;19888:3;19909:67;19973:2;19968:3;19909:67;:::i;:::-;19902:74;;19985:93;20074:3;19985:93;:::i;:::-;20103:2;20098:3;20094:12;20087:19;;19892:220;;;:::o;20118:366::-;20260:3;20281:67;20345:2;20340:3;20281:67;:::i;:::-;20274:74;;20357:93;20446:3;20357:93;:::i;:::-;20475:2;20470:3;20466:12;20459:19;;20264:220;;;:::o;20490:366::-;20632:3;20653:67;20717:2;20712:3;20653:67;:::i;:::-;20646:74;;20729:93;20818:3;20729:93;:::i;:::-;20847:2;20842:3;20838:12;20831:19;;20636:220;;;:::o;20862:366::-;21004:3;21025:67;21089:2;21084:3;21025:67;:::i;:::-;21018:74;;21101:93;21190:3;21101:93;:::i;:::-;21219:2;21214:3;21210:12;21203:19;;21008:220;;;:::o;21234:366::-;21376:3;21397:67;21461:2;21456:3;21397:67;:::i;:::-;21390:74;;21473:93;21562:3;21473:93;:::i;:::-;21591:2;21586:3;21582:12;21575:19;;21380:220;;;:::o;21606:366::-;21748:3;21769:67;21833:2;21828:3;21769:67;:::i;:::-;21762:74;;21845:93;21934:3;21845:93;:::i;:::-;21963:2;21958:3;21954:12;21947:19;;21752:220;;;:::o;21978:366::-;22120:3;22141:67;22205:2;22200:3;22141:67;:::i;:::-;22134:74;;22217:93;22306:3;22217:93;:::i;:::-;22335:2;22330:3;22326:12;22319:19;;22124:220;;;:::o;22350:366::-;22492:3;22513:67;22577:2;22572:3;22513:67;:::i;:::-;22506:74;;22589:93;22678:3;22589:93;:::i;:::-;22707:2;22702:3;22698:12;22691:19;;22496:220;;;:::o;22722:366::-;22864:3;22885:67;22949:2;22944:3;22885:67;:::i;:::-;22878:74;;22961:93;23050:3;22961:93;:::i;:::-;23079:2;23074:3;23070:12;23063:19;;22868:220;;;:::o;23094:366::-;23236:3;23257:67;23321:2;23316:3;23257:67;:::i;:::-;23250:74;;23333:93;23422:3;23333:93;:::i;:::-;23451:2;23446:3;23442:12;23435:19;;23240:220;;;:::o;23466:366::-;23608:3;23629:67;23693:2;23688:3;23629:67;:::i;:::-;23622:74;;23705:93;23794:3;23705:93;:::i;:::-;23823:2;23818:3;23814:12;23807:19;;23612:220;;;:::o;23838:366::-;23980:3;24001:67;24065:2;24060:3;24001:67;:::i;:::-;23994:74;;24077:93;24166:3;24077:93;:::i;:::-;24195:2;24190:3;24186:12;24179:19;;23984:220;;;:::o;24210:366::-;24352:3;24373:67;24437:2;24432:3;24373:67;:::i;:::-;24366:74;;24449:93;24538:3;24449:93;:::i;:::-;24567:2;24562:3;24558:12;24551:19;;24356:220;;;:::o;24582:366::-;24724:3;24745:67;24809:2;24804:3;24745:67;:::i;:::-;24738:74;;24821:93;24910:3;24821:93;:::i;:::-;24939:2;24934:3;24930:12;24923:19;;24728:220;;;:::o;24954:366::-;25096:3;25117:67;25181:2;25176:3;25117:67;:::i;:::-;25110:74;;25193:93;25282:3;25193:93;:::i;:::-;25311:2;25306:3;25302:12;25295:19;;25100:220;;;:::o;25326:366::-;25468:3;25489:67;25553:2;25548:3;25489:67;:::i;:::-;25482:74;;25565:93;25654:3;25565:93;:::i;:::-;25683:2;25678:3;25674:12;25667:19;;25472:220;;;:::o;25698:366::-;25840:3;25861:67;25925:2;25920:3;25861:67;:::i;:::-;25854:74;;25937:93;26026:3;25937:93;:::i;:::-;26055:2;26050:3;26046:12;26039:19;;25844:220;;;:::o;26070:366::-;26212:3;26233:67;26297:2;26292:3;26233:67;:::i;:::-;26226:74;;26309:93;26398:3;26309:93;:::i;:::-;26427:2;26422:3;26418:12;26411:19;;26216:220;;;:::o;26442:366::-;26584:3;26605:67;26669:2;26664:3;26605:67;:::i;:::-;26598:74;;26681:93;26770:3;26681:93;:::i;:::-;26799:2;26794:3;26790:12;26783:19;;26588:220;;;:::o;26814:366::-;26956:3;26977:67;27041:2;27036:3;26977:67;:::i;:::-;26970:74;;27053:93;27142:3;27053:93;:::i;:::-;27171:2;27166:3;27162:12;27155:19;;26960:220;;;:::o;27186:366::-;27328:3;27349:67;27413:2;27408:3;27349:67;:::i;:::-;27342:74;;27425:93;27514:3;27425:93;:::i;:::-;27543:2;27538:3;27534:12;27527:19;;27332:220;;;:::o;27558:366::-;27700:3;27721:67;27785:2;27780:3;27721:67;:::i;:::-;27714:74;;27797:93;27886:3;27797:93;:::i;:::-;27915:2;27910:3;27906:12;27899:19;;27704:220;;;:::o;27930:366::-;28072:3;28093:67;28157:2;28152:3;28093:67;:::i;:::-;28086:74;;28169:93;28258:3;28169:93;:::i;:::-;28287:2;28282:3;28278:12;28271:19;;28076:220;;;:::o;28302:115::-;28387:23;28404:5;28387:23;:::i;:::-;28382:3;28375:36;28365:52;;:::o;28423:153::-;28526:43;28545:23;28562:5;28545:23;:::i;:::-;28526:43;:::i;:::-;28521:3;28514:56;28504:72;;:::o;28582:118::-;28669:24;28687:5;28669:24;:::i;:::-;28664:3;28657:37;28647:53;;:::o;28706:157::-;28811:45;28831:24;28849:5;28831:24;:::i;:::-;28811:45;:::i;:::-;28806:3;28799:58;28789:74;;:::o;28869:115::-;28954:23;28971:5;28954:23;:::i;:::-;28949:3;28942:36;28932:52;;:::o;28990:291::-;29130:3;29152:103;29251:3;29242:6;29234;29152:103;:::i;:::-;29145:110;;29272:3;29265:10;;29134:147;;;;;:::o;29287:271::-;29417:3;29439:93;29528:3;29519:6;29439:93;:::i;:::-;29432:100;;29549:3;29542:10;;29421:137;;;;:::o;29564:265::-;29691:3;29713:90;29799:3;29790:6;29713:90;:::i;:::-;29706:97;;29820:3;29813:10;;29695:134;;;;:::o;29835:435::-;30015:3;30037:95;30128:3;30119:6;30037:95;:::i;:::-;30030:102;;30149:95;30240:3;30231:6;30149:95;:::i;:::-;30142:102;;30261:3;30254:10;;30019:251;;;;;:::o;30276:392::-;30414:3;30429:73;30498:3;30489:6;30429:73;:::i;:::-;30527:1;30522:3;30518:11;30511:18;;30539:75;30610:3;30601:6;30539:75;:::i;:::-;30639:2;30634:3;30630:12;30623:19;;30659:3;30652:10;;30418:250;;;;;:::o;30674:222::-;30767:4;30805:2;30794:9;30790:18;30782:26;;30818:71;30886:1;30875:9;30871:17;30862:6;30818:71;:::i;:::-;30772:124;;;;:::o;30902:640::-;31097:4;31135:3;31124:9;31120:19;31112:27;;31149:71;31217:1;31206:9;31202:17;31193:6;31149:71;:::i;:::-;31230:72;31298:2;31287:9;31283:18;31274:6;31230:72;:::i;:::-;31312;31380:2;31369:9;31365:18;31356:6;31312:72;:::i;:::-;31431:9;31425:4;31421:20;31416:2;31405:9;31401:18;31394:48;31459:76;31530:4;31521:6;31459:76;:::i;:::-;31451:84;;31102:440;;;;;;;:::o;31548:332::-;31669:4;31707:2;31696:9;31692:18;31684:26;;31720:71;31788:1;31777:9;31773:17;31764:6;31720:71;:::i;:::-;31801:72;31869:2;31858:9;31854:18;31845:6;31801:72;:::i;:::-;31674:206;;;;;:::o;31886:210::-;31973:4;32011:2;32000:9;31996:18;31988:26;;32024:65;32086:1;32075:9;32071:17;32062:6;32024:65;:::i;:::-;31978:118;;;;:::o;32102:309::-;32213:4;32251:2;32240:9;32236:18;32228:26;;32300:9;32294:4;32290:20;32286:1;32275:9;32271:17;32264:47;32328:76;32399:4;32390:6;32328:76;:::i;:::-;32320:84;;32218:193;;;;:::o;32417:274::-;32536:4;32574:2;32563:9;32559:18;32551:26;;32587:97;32681:1;32670:9;32666:17;32657:6;32587:97;:::i;:::-;32541:150;;;;:::o;32697:313::-;32810:4;32848:2;32837:9;32833:18;32825:26;;32897:9;32891:4;32887:20;32883:1;32872:9;32868:17;32861:47;32925:78;32998:4;32989:6;32925:78;:::i;:::-;32917:86;;32815:195;;;;:::o;33016:419::-;33182:4;33220:2;33209:9;33205:18;33197:26;;33269:9;33263:4;33259:20;33255:1;33244:9;33240:17;33233:47;33297:131;33423:4;33297:131;:::i;:::-;33289:139;;33187:248;;;:::o;33441:419::-;33607:4;33645:2;33634:9;33630:18;33622:26;;33694:9;33688:4;33684:20;33680:1;33669:9;33665:17;33658:47;33722:131;33848:4;33722:131;:::i;:::-;33714:139;;33612:248;;;:::o;33866:419::-;34032:4;34070:2;34059:9;34055:18;34047:26;;34119:9;34113:4;34109:20;34105:1;34094:9;34090:17;34083:47;34147:131;34273:4;34147:131;:::i;:::-;34139:139;;34037:248;;;:::o;34291:419::-;34457:4;34495:2;34484:9;34480:18;34472:26;;34544:9;34538:4;34534:20;34530:1;34519:9;34515:17;34508:47;34572:131;34698:4;34572:131;:::i;:::-;34564:139;;34462:248;;;:::o;34716:419::-;34882:4;34920:2;34909:9;34905:18;34897:26;;34969:9;34963:4;34959:20;34955:1;34944:9;34940:17;34933:47;34997:131;35123:4;34997:131;:::i;:::-;34989:139;;34887:248;;;:::o;35141:419::-;35307:4;35345:2;35334:9;35330:18;35322:26;;35394:9;35388:4;35384:20;35380:1;35369:9;35365:17;35358:47;35422:131;35548:4;35422:131;:::i;:::-;35414:139;;35312:248;;;:::o;35566:419::-;35732:4;35770:2;35759:9;35755:18;35747:26;;35819:9;35813:4;35809:20;35805:1;35794:9;35790:17;35783:47;35847:131;35973:4;35847:131;:::i;:::-;35839:139;;35737:248;;;:::o;35991:419::-;36157:4;36195:2;36184:9;36180:18;36172:26;;36244:9;36238:4;36234:20;36230:1;36219:9;36215:17;36208:47;36272:131;36398:4;36272:131;:::i;:::-;36264:139;;36162:248;;;:::o;36416:419::-;36582:4;36620:2;36609:9;36605:18;36597:26;;36669:9;36663:4;36659:20;36655:1;36644:9;36640:17;36633:47;36697:131;36823:4;36697:131;:::i;:::-;36689:139;;36587:248;;;:::o;36841:419::-;37007:4;37045:2;37034:9;37030:18;37022:26;;37094:9;37088:4;37084:20;37080:1;37069:9;37065:17;37058:47;37122:131;37248:4;37122:131;:::i;:::-;37114:139;;37012:248;;;:::o;37266:419::-;37432:4;37470:2;37459:9;37455:18;37447:26;;37519:9;37513:4;37509:20;37505:1;37494:9;37490:17;37483:47;37547:131;37673:4;37547:131;:::i;:::-;37539:139;;37437:248;;;:::o;37691:419::-;37857:4;37895:2;37884:9;37880:18;37872:26;;37944:9;37938:4;37934:20;37930:1;37919:9;37915:17;37908:47;37972:131;38098:4;37972:131;:::i;:::-;37964:139;;37862:248;;;:::o;38116:419::-;38282:4;38320:2;38309:9;38305:18;38297:26;;38369:9;38363:4;38359:20;38355:1;38344:9;38340:17;38333:47;38397:131;38523:4;38397:131;:::i;:::-;38389:139;;38287:248;;;:::o;38541:419::-;38707:4;38745:2;38734:9;38730:18;38722:26;;38794:9;38788:4;38784:20;38780:1;38769:9;38765:17;38758:47;38822:131;38948:4;38822:131;:::i;:::-;38814:139;;38712:248;;;:::o;38966:419::-;39132:4;39170:2;39159:9;39155:18;39147:26;;39219:9;39213:4;39209:20;39205:1;39194:9;39190:17;39183:47;39247:131;39373:4;39247:131;:::i;:::-;39239:139;;39137:248;;;:::o;39391:419::-;39557:4;39595:2;39584:9;39580:18;39572:26;;39644:9;39638:4;39634:20;39630:1;39619:9;39615:17;39608:47;39672:131;39798:4;39672:131;:::i;:::-;39664:139;;39562:248;;;:::o;39816:419::-;39982:4;40020:2;40009:9;40005:18;39997:26;;40069:9;40063:4;40059:20;40055:1;40044:9;40040:17;40033:47;40097:131;40223:4;40097:131;:::i;:::-;40089:139;;39987:248;;;:::o;40241:419::-;40407:4;40445:2;40434:9;40430:18;40422:26;;40494:9;40488:4;40484:20;40480:1;40469:9;40465:17;40458:47;40522:131;40648:4;40522:131;:::i;:::-;40514:139;;40412:248;;;:::o;40666:419::-;40832:4;40870:2;40859:9;40855:18;40847:26;;40919:9;40913:4;40909:20;40905:1;40894:9;40890:17;40883:47;40947:131;41073:4;40947:131;:::i;:::-;40939:139;;40837:248;;;:::o;41091:419::-;41257:4;41295:2;41284:9;41280:18;41272:26;;41344:9;41338:4;41334:20;41330:1;41319:9;41315:17;41308:47;41372:131;41498:4;41372:131;:::i;:::-;41364:139;;41262:248;;;:::o;41516:419::-;41682:4;41720:2;41709:9;41705:18;41697:26;;41769:9;41763:4;41759:20;41755:1;41744:9;41740:17;41733:47;41797:131;41923:4;41797:131;:::i;:::-;41789:139;;41687:248;;;:::o;41941:419::-;42107:4;42145:2;42134:9;42130:18;42122:26;;42194:9;42188:4;42184:20;42180:1;42169:9;42165:17;42158:47;42222:131;42348:4;42222:131;:::i;:::-;42214:139;;42112:248;;;:::o;42366:419::-;42532:4;42570:2;42559:9;42555:18;42547:26;;42619:9;42613:4;42609:20;42605:1;42594:9;42590:17;42583:47;42647:131;42773:4;42647:131;:::i;:::-;42639:139;;42537:248;;;:::o;42791:419::-;42957:4;42995:2;42984:9;42980:18;42972:26;;43044:9;43038:4;43034:20;43030:1;43019:9;43015:17;43008:47;43072:131;43198:4;43072:131;:::i;:::-;43064:139;;42962:248;;;:::o;43216:419::-;43382:4;43420:2;43409:9;43405:18;43397:26;;43469:9;43463:4;43459:20;43455:1;43444:9;43440:17;43433:47;43497:131;43623:4;43497:131;:::i;:::-;43489:139;;43387:248;;;:::o;43641:419::-;43807:4;43845:2;43834:9;43830:18;43822:26;;43894:9;43888:4;43884:20;43880:1;43869:9;43865:17;43858:47;43922:131;44048:4;43922:131;:::i;:::-;43914:139;;43812:248;;;:::o;44066:419::-;44232:4;44270:2;44259:9;44255:18;44247:26;;44319:9;44313:4;44309:20;44305:1;44294:9;44290:17;44283:47;44347:131;44473:4;44347:131;:::i;:::-;44339:139;;44237:248;;;:::o;44491:419::-;44657:4;44695:2;44684:9;44680:18;44672:26;;44744:9;44738:4;44734:20;44730:1;44719:9;44715:17;44708:47;44772:131;44898:4;44772:131;:::i;:::-;44764:139;;44662:248;;;:::o;44916:419::-;45082:4;45120:2;45109:9;45105:18;45097:26;;45169:9;45163:4;45159:20;45155:1;45144:9;45140:17;45133:47;45197:131;45323:4;45197:131;:::i;:::-;45189:139;;45087:248;;;:::o;45341:218::-;45432:4;45470:2;45459:9;45455:18;45447:26;;45483:69;45549:1;45538:9;45534:17;45525:6;45483:69;:::i;:::-;45437:122;;;;:::o;45565:822::-;45798:4;45836:3;45825:9;45821:19;45813:27;;45850:69;45916:1;45905:9;45901:17;45892:6;45850:69;:::i;:::-;45929:72;45997:2;45986:9;45982:18;45973:6;45929:72;:::i;:::-;46048:9;46042:4;46038:20;46033:2;46022:9;46018:18;46011:48;46076:76;46147:4;46138:6;46076:76;:::i;:::-;46068:84;;46162:66;46224:2;46213:9;46209:18;46200:6;46162:66;:::i;:::-;46276:9;46270:4;46266:20;46260:3;46249:9;46245:19;46238:49;46304:76;46375:4;46366:6;46304:76;:::i;:::-;46296:84;;45803:584;;;;;;;;:::o;46393:435::-;46540:4;46578:2;46567:9;46563:18;46555:26;;46591:69;46657:1;46646:9;46642:17;46633:6;46591:69;:::i;:::-;46707:9;46701:4;46697:20;46692:2;46681:9;46677:18;46670:48;46735:86;46816:4;46807:6;46799;46735:86;:::i;:::-;46727:94;;46545:283;;;;;;:::o;46834:739::-;47053:4;47091:3;47080:9;47076:19;47068:27;;47105:69;47171:1;47160:9;47156:17;47147:6;47105:69;:::i;:::-;47221:9;47215:4;47211:20;47206:2;47195:9;47191:18;47184:48;47249:76;47320:4;47311:6;47249:76;:::i;:::-;47241:84;;47335:70;47401:2;47390:9;47386:18;47377:6;47335:70;:::i;:::-;47452:9;47446:4;47442:20;47437:2;47426:9;47422:18;47415:48;47480:86;47561:4;47552:6;47544;47480:86;:::i;:::-;47472:94;;47058:515;;;;;;;;:::o;47579:719::-;47788:4;47826:3;47815:9;47811:19;47803:27;;47840:69;47906:1;47895:9;47891:17;47882:6;47840:69;:::i;:::-;47956:9;47950:4;47946:20;47941:2;47930:9;47926:18;47919:48;47984:76;48055:4;48046:6;47984:76;:::i;:::-;47976:84;;48070:70;48136:2;48125:9;48121:18;48112:6;48070:70;:::i;:::-;48187:9;48181:4;48177:20;48172:2;48161:9;48157:18;48150:48;48215:76;48286:4;48277:6;48215:76;:::i;:::-;48207:84;;47793:505;;;;;;;:::o;48304:1058::-;48602:4;48640:3;48629:9;48625:19;48617:27;;48654:69;48720:1;48709:9;48705:17;48696:6;48654:69;:::i;:::-;48770:9;48764:4;48760:20;48755:2;48744:9;48740:18;48733:48;48798:73;48866:4;48857:6;48798:73;:::i;:::-;48790:81;;48918:9;48912:4;48908:20;48903:2;48892:9;48888:18;48881:48;48946:76;49017:4;49008:6;48946:76;:::i;:::-;48938:84;;49032:88;49116:2;49105:9;49101:18;49092:6;49032:88;:::i;:::-;49130:73;49198:3;49187:9;49183:19;49174:6;49130:73;:::i;:::-;49251:9;49245:4;49241:20;49235:3;49224:9;49220:19;49213:49;49279:76;49350:4;49341:6;49279:76;:::i;:::-;49271:84;;48607:755;;;;;;;;;:::o;49368:652::-;49569:4;49607:3;49596:9;49592:19;49584:27;;49621:69;49687:1;49676:9;49672:17;49663:6;49621:69;:::i;:::-;49700:70;49766:2;49755:9;49751:18;49742:6;49700:70;:::i;:::-;49780:72;49848:2;49837:9;49833:18;49824:6;49780:72;:::i;:::-;49899:9;49893:4;49889:20;49884:2;49873:9;49869:18;49862:48;49927:86;50008:4;49999:6;49991;49927:86;:::i;:::-;49919:94;;49574:446;;;;;;;;:::o;50026:222::-;50119:4;50157:2;50146:9;50142:18;50134:26;;50170:71;50238:1;50227:9;50223:17;50214:6;50170:71;:::i;:::-;50124:124;;;;:::o;50254:332::-;50375:4;50413:2;50402:9;50398:18;50390:26;;50426:71;50494:1;50483:9;50479:17;50470:6;50426:71;:::i;:::-;50507:72;50575:2;50564:9;50560:18;50551:6;50507:72;:::i;:::-;50380:206;;;;;:::o;50592:129::-;50626:6;50653:20;;:::i;:::-;50643:30;;50682:33;50710:4;50702:6;50682:33;:::i;:::-;50633:88;;;:::o;50727:75::-;50760:6;50793:2;50787:9;50777:19;;50767:35;:::o;50808:307::-;50869:4;50959:18;50951:6;50948:30;50945:2;;;50981:18;;:::i;:::-;50945:2;51019:29;51041:6;51019:29;:::i;:::-;51011:37;;51103:4;51097;51093:15;51085:23;;50874:241;;;:::o;51121:308::-;51183:4;51273:18;51265:6;51262:30;51259:2;;;51295:18;;:::i;:::-;51259:2;51333:29;51355:6;51333:29;:::i;:::-;51325:37;;51417:4;51411;51407:15;51399:23;;51188:241;;;:::o;51435:140::-;51483:4;51506:3;51498:11;;51529:3;51526:1;51519:14;51563:4;51560:1;51550:18;51542:26;;51488:87;;;:::o;51581:98::-;51632:6;51666:5;51660:12;51650:22;;51639:40;;;:::o;51685:99::-;51737:6;51771:5;51765:12;51755:22;;51744:40;;;:::o;51790:168::-;51873:11;51907:6;51902:3;51895:19;51947:4;51942:3;51938:14;51923:29;;51885:73;;;;:::o;51964:147::-;52065:11;52102:3;52087:18;;52077:34;;;;:::o;52117:169::-;52201:11;52235:6;52230:3;52223:19;52275:4;52270:3;52266:14;52251:29;;52213:73;;;;:::o;52292:148::-;52394:11;52431:3;52416:18;;52406:34;;;;:::o;52446:305::-;52486:3;52505:20;52523:1;52505:20;:::i;:::-;52500:25;;52539:20;52557:1;52539:20;:::i;:::-;52534:25;;52693:1;52625:66;52621:74;52618:1;52615:81;52612:2;;;52699:18;;:::i;:::-;52612:2;52743:1;52740;52736:9;52729:16;;52490:261;;;;:::o;52757:185::-;52797:1;52814:20;52832:1;52814:20;:::i;:::-;52809:25;;52848:20;52866:1;52848:20;:::i;:::-;52843:25;;52887:1;52877:2;;52892:18;;:::i;:::-;52877:2;52934:1;52931;52927:9;52922:14;;52799:143;;;;:::o;52948:191::-;52988:4;53008:20;53026:1;53008:20;:::i;:::-;53003:25;;53042:20;53060:1;53042:20;:::i;:::-;53037:25;;53081:1;53078;53075:8;53072:2;;;53086:18;;:::i;:::-;53072:2;53131:1;53128;53124:9;53116:17;;52993:146;;;;:::o;53145:96::-;53182:7;53211:24;53229:5;53211:24;:::i;:::-;53200:35;;53190:51;;;:::o;53247:104::-;53292:7;53321:24;53339:5;53321:24;:::i;:::-;53310:35;;53300:51;;;:::o;53357:90::-;53391:7;53434:5;53427:13;53420:21;53409:32;;53399:48;;;:::o;53453:77::-;53490:7;53519:5;53508:16;;53498:32;;;:::o;53536:149::-;53572:7;53612:66;53605:5;53601:78;53590:89;;53580:105;;;:::o;53691:89::-;53727:7;53767:6;53760:5;53756:18;53745:29;;53735:45;;;:::o;53786:126::-;53823:7;53863:42;53856:5;53852:54;53841:65;;53831:81;;;:::o;53918:77::-;53955:7;53984:5;53973:16;;53963:32;;;:::o;54001:101::-;54037:7;54077:18;54070:5;54066:30;54055:41;;54045:57;;;:::o;54108:86::-;54143:7;54183:4;54176:5;54172:16;54161:27;;54151:43;;;:::o;54200:178::-;54276:9;54309:63;54366:5;54309:63;:::i;:::-;54296:76;;54286:92;;;:::o;54384:139::-;54460:9;54493:24;54511:5;54493:24;:::i;:::-;54480:37;;54470:53;;;:::o;54529:154::-;54613:6;54608:3;54603;54590:30;54675:1;54666:6;54661:3;54657:16;54650:27;54580:103;;;:::o;54689:307::-;54757:1;54767:113;54781:6;54778:1;54775:13;54767:113;;;54866:1;54861:3;54857:11;54851:18;54847:1;54842:3;54838:11;54831:39;54803:2;54800:1;54796:10;54791:15;;54767:113;;;54898:6;54895:1;54892:13;54889:2;;;54978:1;54969:6;54964:3;54960:16;54953:27;54889:2;54738:258;;;;:::o;55002:320::-;55046:6;55083:1;55077:4;55073:12;55063:22;;55130:1;55124:4;55120:12;55151:18;55141:2;;55207:4;55199:6;55195:17;55185:27;;55141:2;55269;55261:6;55258:14;55238:18;55235:38;55232:2;;;55288:18;;:::i;:::-;55232:2;55053:269;;;;:::o;55328:281::-;55411:27;55433:4;55411:27;:::i;:::-;55403:6;55399:40;55541:6;55529:10;55526:22;55505:18;55493:10;55490:34;55487:62;55484:2;;;55552:18;;:::i;:::-;55484:2;55592:10;55588:2;55581:22;55371:238;;;:::o;55615:233::-;55654:3;55677:24;55695:5;55677:24;:::i;:::-;55668:33;;55723:66;55716:5;55713:77;55710:2;;;55793:18;;:::i;:::-;55710:2;55840:1;55833:5;55829:13;55822:20;;55658:190;;;:::o;55854:94::-;55892:7;55921:21;55936:5;55921:21;:::i;:::-;55910:32;;55900:48;;;:::o;55954:79::-;55993:7;56022:5;56011:16;;56001:32;;;:::o;56039:176::-;56071:1;56088:20;56106:1;56088:20;:::i;:::-;56083:25;;56122:20;56140:1;56122:20;:::i;:::-;56117:25;;56161:1;56151:2;;56166:18;;:::i;:::-;56151:2;56207:1;56204;56200:9;56195:14;;56073:142;;;;:::o;56221:180::-;56269:77;56266:1;56259:88;56366:4;56363:1;56356:15;56390:4;56387:1;56380:15;56407:180;56455:77;56452:1;56445:88;56552:4;56549:1;56542:15;56576:4;56573:1;56566:15;56593:180;56641:77;56638:1;56631:88;56738:4;56735:1;56728:15;56762:4;56759:1;56752:15;56779:180;56827:77;56824:1;56817:88;56924:4;56921:1;56914:15;56948:4;56945:1;56938:15;56965:102;57006:6;57057:2;57053:7;57048:2;57041:5;57037:14;57033:28;57023:38;;57013:54;;;:::o;57073:96::-;57107:8;57156:5;57151:3;57147:15;57126:36;;57116:53;;;:::o;57175:237::-;57315:34;57311:1;57303:6;57299:14;57292:58;57384:20;57379:2;57371:6;57367:15;57360:45;57281:131;:::o;57418:225::-;57558:34;57554:1;57546:6;57542:14;57535:58;57627:8;57622:2;57614:6;57610:15;57603:33;57524:119;:::o;57649:224::-;57789:34;57785:1;57777:6;57773:14;57766:58;57858:7;57853:2;57845:6;57841:15;57834:32;57755:118;:::o;57879:178::-;58019:30;58015:1;58007:6;58003:14;57996:54;57985:72;:::o;58063:174::-;58203:26;58199:1;58191:6;58187:14;58180:50;58169:68;:::o;58243:223::-;58383:34;58379:1;58371:6;58367:14;58360:58;58452:6;58447:2;58439:6;58435:15;58428:31;58349:117;:::o;58472:175::-;58612:27;58608:1;58600:6;58596:14;58589:51;58578:69;:::o;58653:176::-;58793:28;58789:1;58781:6;58777:14;58770:52;58759:70;:::o;58835:169::-;58975:21;58971:1;58963:6;58959:14;58952:45;58941:63;:::o;59010:231::-;59150:34;59146:1;59138:6;59134:14;59127:58;59219:14;59214:2;59206:6;59202:15;59195:39;59116:125;:::o;59247:176::-;59387:28;59383:1;59375:6;59371:14;59364:52;59353:70;:::o;59429:228::-;59569:34;59565:1;59557:6;59553:14;59546:58;59638:11;59633:2;59625:6;59621:15;59614:36;59535:122;:::o;59663:243::-;59803:34;59799:1;59791:6;59787:14;59780:58;59872:26;59867:2;59859:6;59855:15;59848:51;59769:137;:::o;59912:229::-;60052:34;60048:1;60040:6;60036:14;60029:58;60121:12;60116:2;60108:6;60104:15;60097:37;60018:123;:::o;60147:228::-;60287:34;60283:1;60275:6;60271:14;60264:58;60356:11;60351:2;60343:6;60339:15;60332:36;60253:122;:::o;60381:230::-;60521:34;60517:1;60509:6;60505:14;60498:58;60590:13;60585:2;60577:6;60573:15;60566:38;60487:124;:::o;60617:182::-;60757:34;60753:1;60745:6;60741:14;60734:58;60723:76;:::o;60805:231::-;60945:34;60941:1;60933:6;60929:14;60922:58;61014:14;61009:2;61001:6;60997:15;60990:39;60911:125;:::o;61042:182::-;61182:34;61178:1;61170:6;61166:14;61159:58;61148:76;:::o;61230:239::-;61370:34;61366:1;61358:6;61354:14;61347:58;61439:22;61434:2;61426:6;61422:15;61415:47;61336:133;:::o;61475:234::-;61615:34;61611:1;61603:6;61599:14;61592:58;61684:17;61679:2;61671:6;61667:15;61660:42;61581:128;:::o;61715:220::-;61855:34;61851:1;61843:6;61839:14;61832:58;61924:3;61919:2;61911:6;61907:15;61900:28;61821:114;:::o;61941:170::-;62081:22;62077:1;62069:6;62065:14;62058:46;62047:64;:::o;62117:305::-;62257:34;62253:1;62245:6;62241:14;62234:58;62326:34;62321:2;62313:6;62309:15;62302:59;62395:19;62390:2;62382:6;62378:15;62371:44;62223:199;:::o;62428:236::-;62568:34;62564:1;62556:6;62552:14;62545:58;62637:19;62632:2;62624:6;62620:15;62613:44;62534:130;:::o;62670:229::-;62810:34;62806:1;62798:6;62794:14;62787:58;62879:12;62874:2;62866:6;62862:15;62855:37;62776:123;:::o;62905:251::-;63045:34;63041:1;63033:6;63029:14;63022:58;63114:34;63109:2;63101:6;63097:15;63090:59;63011:145;:::o;63162:225::-;63302:34;63298:1;63290:6;63286:14;63279:58;63371:8;63366:2;63358:6;63354:15;63347:33;63268:119;:::o;63393:170::-;63533:22;63529:1;63521:6;63517:14;63510:46;63499:64;:::o;63569:122::-;63642:24;63660:5;63642:24;:::i;:::-;63635:5;63632:35;63622:2;;63681:1;63678;63671:12;63622:2;63612:79;:::o;63697:138::-;63778:32;63804:5;63778:32;:::i;:::-;63771:5;63768:43;63758:2;;63825:1;63822;63815:12;63758:2;63748:87;:::o;63841:116::-;63911:21;63926:5;63911:21;:::i;:::-;63904:5;63901:32;63891:2;;63947:1;63944;63937:12;63891:2;63881:76;:::o;63963:120::-;64035:23;64052:5;64035:23;:::i;:::-;64028:5;64025:34;64015:2;;64073:1;64070;64063:12;64015:2;64005:78;:::o;64089:120::-;64161:23;64178:5;64161:23;:::i;:::-;64154:5;64151:34;64141:2;;64199:1;64196;64189:12;64141:2;64131:78;:::o;64215:122::-;64288:24;64306:5;64288:24;:::i;:::-;64281:5;64278:35;64268:2;;64327:1;64324;64317:12;64268:2;64258:79;:::o;64343:120::-;64415:23;64432:5;64415:23;:::i;:::-;64408:5;64405:34;64395:2;;64453:1;64450;64443:12;64395:2;64385:78;:::o;64469:118::-;64540:22;64556:5;64540:22;:::i;:::-;64533:5;64530:33;64520:2;;64577:1;64574;64567:12;64520:2;64510:77;:::o

Swarm Source

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