ETH Price: $3,335.87 (+2.91%)

Token

Interport Token (ITP)

Overview

Max Total Supply

537,915.23890969 ITP

Holders

13,400

Total Transfers

-

Market

Price

$0.0099 @ 0.000003 ETH (+1.59%)

Onchain Market Cap

$5,312.74

Circulating Supply Market Cap

$344,687.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$123.32
Market Capitalization:$344,687.00
Circulating Supply:34,925,391.00 ITP
Market Data Source: Coinmarketcap

This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
InterportTokenOFT

Compiler Version
v0.8.19+commit.7dd6d404

ZkSolc Version
v1.3.13

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license
File 1 of 22 : InterportTokenOFT.sol
// SPDX-License-Identifier: AGPL-3.0-only

pragma solidity 0.8.19;

import { OFTV2 } from '@layerzerolabs/solidity-examples/contracts/token/oft/v2/OFTV2.sol';
import { SystemVersionId } from '../SystemVersionId.sol';

/**
 * @title InterportTokenOFT
 * @notice The Interport token OFT contract
 */
contract InterportTokenOFT is OFTV2, SystemVersionId {
    /**
     * @notice Deploys the InterportTokenOFT contract
     * @param _lzEndpoint The address of the LayerZero endpoint
     */
    constructor(address _lzEndpoint) OFTV2('Interport Token', 'ITP', 8, _lzEndpoint) {}
}

File 2 of 22 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

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 lzApp 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 3 of 22 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: MIT

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 4 of 22 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: MIT

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 5 of 22 : LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/ILayerZeroReceiver.sol";
import "../interfaces/ILayerZeroUserApplicationConfig.sol";
import "../interfaces/ILayerZeroEndpoint.sol";
import "../util/BytesLib.sol";

/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {
    using BytesLib for bytes;

    // ua can not send payload larger than this by default, but it can be changed by the ua owner
    uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;

    ILayerZeroEndpoint public immutable lzEndpoint;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
    mapping(uint16 => uint) public payloadSizeLimitLookup;
    address public precrime;

    event SetPrecrime(address precrime);
    event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
    event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
    event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);

    constructor(address _endpoint) {
        lzEndpoint = ILayerZeroEndpoint(_endpoint);
    }

    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override {
        // lzReceive must be called by the endpoint for security
        require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");

        bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
        // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
        require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract");

        _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
        _checkPayloadSize(_dstChainId, _payload.length);
        lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual {
        uint providedGasLimit = _getGasLimit(_adapterParams);
        uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
    }

    function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
        assembly {
            gasLimit := mload(add(_adapterParams, 34))
        }
    }

    function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
        uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
        if (payloadSizeLimit == 0) { // use default if not set
            payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
        }
        require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
    }

    //---------------------------UserApplication config----------------------------------------
    function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) {
        return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
    }

    // generic config for LayerZero user Application
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner {
        lzEndpoint.setConfig(_version, _chainId, _configType, _config);
    }

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

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

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

    // _path = abi.encodePacked(remoteAddress, localAddress)
    // this function set the trusted path for the cross-chain communication
    function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = _path;
        emit SetTrustedRemote(_remoteChainId, _path);
    }

    function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
        emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
    }

    function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
        bytes memory path = trustedRemoteLookup[_remoteChainId];
        require(path.length != 0, "LzApp: no trusted path record");
        return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
    }

    function setPrecrime(address _precrime) external onlyOwner {
        precrime = _precrime;
        emit SetPrecrime(_precrime);
    }

    function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
        require(_minGas > 0, "LzApp: invalid minGas");
        minDstGasLookup[_dstChainId][_packetType] = _minGas;
        emit SetMinDstGas(_dstChainId, _packetType, _minGas);
    }

    // if the size is 0, it means default size limit
    function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
        payloadSizeLimitLookup[_dstChainId] = _size;
    }

    //--------------------------- VIEW FUNCTION ----------------------------------------
    function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
        bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
        return keccak256(trustedSource) == keccak256(_srcAddress);
    }
}

File 6 of 22 : NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./LzApp.sol";
import "../util/ExcessivelySafeCall.sol";

/*
 * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
    event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
        // try-catch all errors/exceptions
        if (!success) {
            _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
        }
    }

    function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual {
        failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
        emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
    }

    function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;

    function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}

File 7 of 22 : BaseOFTV2.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./OFTCoreV2.sol";
import "./IOFTV2.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

abstract contract BaseOFTV2 is OFTCoreV2, ERC165, IOFTV2 {

    constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {
    }

    /************************************************************************
    * public functions
    ************************************************************************/
    function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) public payable virtual override {
        _sendAndCall(_from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    /************************************************************************
    * public view functions
    ************************************************************************/
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IOFTV2).interfaceId || super.supportsInterface(interfaceId);
    }

    function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams);
    }

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams);
    }

    function circulatingSupply() public view virtual override returns (uint);

    function token() public view virtual override returns (address);
}

File 8 of 22 : ICommonOFT.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @dev Interface of the IOFT core standard
 */
interface ICommonOFT is IERC165 {

    struct LzCallParams {
        address payable refundAddress;
        address zroPaymentAddress;
        bytes adapterParams;
    }

    /**
     * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
     * _dstChainId - L0 defined chain id to send tokens too
     * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
     * _amount - amount of the tokens to transfer
     * _useZro - indicates to use zro to pay L0 fees
     * _adapterParam - flexible bytes array to indicate messaging adapter services in L0
     */
    function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    /**
     * @dev returns the circulating amount of tokens on current chain
     */
    function circulatingSupply() external view returns (uint);

    /**
     * @dev returns the address of the ERC20 token
     */
    function token() external view returns (address);
}

File 9 of 22 : IOFTReceiverV2.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

interface IOFTReceiverV2 {
    /**
     * @dev Called by the OFT contract when tokens are received from source chain.
     * @param _srcChainId The chain id of the source chain.
     * @param _srcAddress The address of the OFT token contract on the source chain.
     * @param _nonce The nonce of the transaction on the source chain.
     * @param _from The address of the account who calls the sendAndCall() on the source chain.
     * @param _amount The amount of tokens to transfer.
     * @param _payload Additional data with no specified format.
     */
    function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external;
}

File 10 of 22 : IOFTV2.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./ICommonOFT.sol";

/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTV2 is ICommonOFT {

    /**
     * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
     * `_from` the owner of token
     * `_dstChainId` the destination chain identifier
     * `_toAddress` can be any size depending on the `dstChainId`.
     * `_amount` the quantity of tokens in wei
     * `_refundAddress` the address LayerZero refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable;

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable;
}

File 11 of 22 : OFTCoreV2.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../../lzApp/NonblockingLzApp.sol";
import "../../../util/ExcessivelySafeCall.sol";
import "./ICommonOFT.sol";
import "./IOFTReceiverV2.sol";

abstract contract OFTCoreV2 is NonblockingLzApp {
    using BytesLib for bytes;
    using ExcessivelySafeCall for address;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint8 public constant PT_SEND = 0;
    uint8 public constant PT_SEND_AND_CALL = 1;

    uint8 public immutable sharedDecimals;

    bool public useCustomAdapterParams;
    mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets;

    /**
     * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
     * `_nonce` is the outbound nonce
     */
    event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount);

    /**
     * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
     * `_nonce` is the inbound nonce.
     */
    event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);

    event SetUseCustomAdapterParams(bool _useCustomAdapterParams);

    event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);

    event NonContractAddress(address _address);

    // _sharedDecimals should be the minimum decimals on all chains
    constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {
        sharedDecimals = _sharedDecimals;
    }

    /************************************************************************
    * public functions
    ************************************************************************/
    function callOnOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, address _to, uint _amount, bytes calldata _payload, uint _gasForCall) public virtual {
        require(_msgSender() == address(this), "OFTCore: caller must be OFTCore");

        // send
        _amount = _transferFrom(address(this), _to, _amount);
        emit ReceiveFromChain(_srcChainId, _to, _amount);

        // call
        IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload);
    }

    function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner {
        useCustomAdapterParams = _useCustomAdapterParams;
        emit SetUseCustomAdapterParams(_useCustomAdapterParams);
    }

    /************************************************************************
    * internal functions
    ************************************************************************/
    function _estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes memory _adapterParams) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount));
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, bool _useZro, bytes memory _adapterParams) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendAndCall()
        bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        uint8 packetType = _payload.toUint8(0);

        if (packetType == PT_SEND) {
            _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else if (packetType == PT_SEND_AND_CALL) {
            _sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else {
            revert("OFTCore: unknown packet type");
        }
    }

    function _send(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual returns (uint amount) {
        _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);

        (amount,) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust
        require(amount > 0, "OFTCore: amount too small");

        bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount));
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual {
        (address to, uint64 amountSD) = _decodeSendPayload(_payload);
        if (to == address(0)) {
            to = address(0xdead);
        }

        uint amount = _sd2ld(amountSD);
        amount = _creditTo(_srcChainId, to, amount);

        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual returns (uint amount) {
        _checkAdapterParams(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall);

        (amount,) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount);
        require(amount > 0, "OFTCore: amount too small");

        // encode the msg.sender into the payload instead of _from
        bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAndCallAck(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual {
        (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload);

        bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
        uint amount = _sd2ld(amountSD);

        // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds
        if (!credited) {
            amount = _creditTo(_srcChainId, address(this), amount);
            creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
        }

        if (!_isContract(to)) {
            emit NonContractAddress(to);
            return;
        }

        // workaround for stack too deep
        uint16 srcChainId = _srcChainId;
        bytes memory srcAddress = _srcAddress;
        uint64 nonce = _nonce;
        bytes memory payload = _payload;
        bytes32 from_ = from;
        address to_ = to;
        uint amount_ = amount;
        bytes memory payloadForCall_ = payloadForCall;

        // no gas limit for the call if retry
        uint gas = credited ? gasleft() : gasForCall;
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas));

        if (success) {
            bytes32 hash = keccak256(payload);
            emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash);
        } else {
            // store the failed message into the nonblockingLzApp
            _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason);
        }
    }

    function _isContract(address _account) internal view returns (bool) {
        return _account.code.length > 0;
    }

    function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual {
        if (useCustomAdapterParams) {
            _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas);
        } else {
            require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty.");
        }
    }

    function _ld2sd(uint _amount) internal virtual view returns (uint64) {
        uint amountSD = _amount / _ld2sdRate();
        require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow");
        return uint64(amountSD);
    }

    function _sd2ld(uint64 _amountSD) internal virtual view returns (uint) {
        return _amountSD * _ld2sdRate();
    }

    function _removeDust(uint _amount) internal virtual view returns (uint amountAfter, uint dust) {
        dust = _amount % _ld2sdRate();
        amountAfter = _amount - dust;
    }

    function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal virtual view returns (bytes memory) {
        return abi.encodePacked(PT_SEND, _toAddress, _amountSD);
    }

    function _decodeSendPayload(bytes memory _payload) internal virtual view returns (address to, uint64 amountSD) {
        require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
    }

    function _encodeSendAndCallPayload(address _from, bytes32 _toAddress, uint64 _amountSD, bytes memory _payload, uint64 _dstGasForCall) internal virtual view returns (bytes memory) {
        return abi.encodePacked(
            PT_SEND_AND_CALL,
            _toAddress,
            _amountSD,
            _addressToBytes32(_from),
            _dstGasForCall,
            _payload
        );
    }

    function _decodeSendAndCallPayload(bytes memory _payload) internal virtual view returns (bytes32 from, address to, uint64 amountSD, bytes memory payload, uint64 dstGasForCall) {
        require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
        from = _payload.toBytes32(41);
        dstGasForCall = _payload.toUint64(73);
        payload = _payload.slice(81, _payload.length - 81);
    }

    function _addressToBytes32(address _address) internal pure virtual returns (bytes32) {
        return bytes32(uint(uint160(_address)));
    }

    function _debitFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount) internal virtual returns (uint);

    function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns (uint);

    function _transferFrom(address _from, address _to, uint _amount) internal virtual returns (uint);

    function _ld2sdRate() internal view virtual returns (uint);
}

File 12 of 22 : OFTV2.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./BaseOFTV2.sol";

contract OFTV2 is BaseOFTV2, ERC20 {

    uint internal immutable ld2sdRate;

    constructor(string memory _name, string memory _symbol, uint8 _sharedDecimals, address _lzEndpoint) ERC20(_name, _symbol) BaseOFTV2(_sharedDecimals, _lzEndpoint) {
        uint8 decimals = decimals();
        require(_sharedDecimals <= decimals, "OFT: sharedDecimals must be <= decimals");
        ld2sdRate = 10 ** (decimals - _sharedDecimals);
    }

    /************************************************************************
    * public functions
    ************************************************************************/
    function circulatingSupply() public view virtual override returns (uint) {
        return totalSupply();
    }

    function token() public view virtual override returns (address) {
        return address(this);
    }

    /************************************************************************
    * internal functions
    ************************************************************************/
    function _debitFrom(address _from, uint16, bytes32, uint _amount) internal virtual override returns (uint) {
        address spender = _msgSender();
        if (_from != spender) _spendAllowance(_from, spender, _amount);
        _burn(_from, _amount);
        return _amount;
    }

    function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns (uint) {
        _mint(_toAddress, _amount);
        return _amount;
    }

    function _transferFrom(address _from, address _to, uint _amount) internal virtual override returns (uint) {
        address spender = _msgSender();
        // if transfer from this contract, no need to check allowance
        if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount);
        _transfer(_from, _to, _amount);
        return _amount;
    }

    function _ld2sdRate() internal view virtual override returns (uint) {
        return ld2sdRate;
    }
}

File 13 of 22 : BytesLib.sol
// SPDX-License-Identifier: Unlicense
/*
 * @title Solidity Bytes Arrays Utils
 * @author Gonçalo Sá <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */
pragma solidity >=0.8.0 <0.9.0;


library BytesLib {
    function concat(
        bytes memory _preBytes,
        bytes memory _postBytes
    )
    internal
    pure
    returns (bytes memory)
    {
        bytes memory tempBytes;

        assembly {
        // Get a location of some free memory and store it in tempBytes as
        // Solidity does for memory variables.
            tempBytes := mload(0x40)

        // Store the length of the first bytes array at the beginning of
        // the memory for tempBytes.
            let length := mload(_preBytes)
            mstore(tempBytes, length)

        // Maintain a memory counter for the current write location in the
        // temp bytes array by adding the 32 bytes for the array length to
        // the starting location.
            let mc := add(tempBytes, 0x20)
        // Stop copying when the memory counter reaches the length of the
        // first bytes array.
            let end := add(mc, length)

            for {
            // Initialize a copy counter to the start of the _preBytes data,
            // 32 bytes into its memory.
                let cc := add(_preBytes, 0x20)
            } lt(mc, end) {
            // Increase both counters by 32 bytes each iteration.
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
            // Write the _preBytes data into the tempBytes memory 32 bytes
            // at a time.
                mstore(mc, mload(cc))
            }

        // Add the length of _postBytes to the current length of tempBytes
        // and store it as the new length in the first 32 bytes of the
        // tempBytes memory.
            length := mload(_postBytes)
            mstore(tempBytes, add(length, mload(tempBytes)))

        // Move the memory counter back from a multiple of 0x20 to the
        // actual end of the _preBytes data.
            mc := end
        // Stop copying when the memory counter reaches the new combined
        // length of the arrays.
            end := add(mc, length)

            for {
                let cc := add(_postBytes, 0x20)
            } lt(mc, end) {
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                mstore(mc, mload(cc))
            }

        // Update the free-memory pointer by padding our last write location
        // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
        // next 32 byte block, then round down to the nearest multiple of
        // 32. If the sum of the length of the two arrays is zero then add
        // one before rounding down to leave a blank 32 bytes (the length block with 0).
            mstore(0x40, and(
            add(add(end, iszero(add(length, mload(_preBytes)))), 31),
            not(31) // Round down to the nearest 32 bytes.
            ))
        }

        return tempBytes;
    }

    function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {
        assembly {
        // Read the first 32 bytes of _preBytes storage, which is the length
        // of the array. (We don't need to use the offset into the slot
        // because arrays use the entire slot.)
            let fslot := sload(_preBytes.slot)
        // Arrays of 31 bytes or less have an even value in their slot,
        // while longer arrays have an odd value. The actual length is
        // the slot divided by two for odd values, and the lowest order
        // byte divided by two for even values.
        // If the slot is even, bitwise and the slot with 255 and divide by
        // two to get the length. If the slot is odd, bitwise and the slot
        // with -1 and divide by two.
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)
            let newlength := add(slength, mlength)
        // slength can contain both the length and contents of the array
        // if length < 32 bytes so let's prepare for that
        // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
            switch add(lt(slength, 32), lt(newlength, 32))
            case 2 {
            // Since the new array still fits in the slot, we just need to
            // update the contents of the slot.
            // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                sstore(
                _preBytes.slot,
                // all the modifications to the slot are inside this
                // next block
                add(
                // we can just add to the slot contents because the
                // bytes we want to change are the LSBs
                fslot,
                add(
                mul(
                div(
                // load the bytes from memory
                mload(add(_postBytes, 0x20)),
                // zero all bytes to the right
                exp(0x100, sub(32, mlength))
                ),
                // and now shift left the number of bytes to
                // leave space for the length in the slot
                exp(0x100, sub(32, newlength))
                ),
                // increase length by the double of the memory
                // bytes length
                mul(mlength, 2)
                )
                )
                )
            }
            case 1 {
            // The stored value fits in the slot, but the combined value
            // will exceed it.
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // The contents of the _postBytes array start 32 bytes into
            // the structure. Our first read should obtain the `submod`
            // bytes that can fit into the unused space in the last word
            // of the stored array. To get this, we read 32 bytes starting
            // from `submod`, so the data we read overlaps with the array
            // contents by `submod` bytes. Masking the lowest-order
            // `submod` bytes allows us to add that value directly to the
            // stored value.

                let submod := sub(32, slength)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(
                sc,
                add(
                and(
                fslot,
                0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
                ),
                and(mload(mc), mask)
                )
                )

                for {
                    mc := add(mc, 0x20)
                    sc := add(sc, 1)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
            default {
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
            // Start copying to the last used word of the stored array.
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // Copy over the first `submod` bytes of the new data as in
            // case 1 above.
                let slengthmod := mod(slength, 32)
                let mlengthmod := mod(mlength, 32)
                let submod := sub(32, slengthmod)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(sload(sc), and(mload(mc), mask)))

                for {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
        }
    }

    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    )
    internal
    pure
    returns (bytes memory)
    {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
            // Get a location of some free memory and store it in tempBytes as
            // Solidity does for memory variables.
                tempBytes := mload(0x40)

            // The first word of the slice result is potentially a partial
            // word read from the original array. To read it, we calculate
            // the length of that partial word and start copying that many
            // bytes into the array. The first word we copy will start with
            // data we don't care about, but the last `lengthmod` bytes will
            // land at the beginning of the contents of the new array. When
            // we're done copying, we overwrite the full first word with
            // the actual length of the slice.
                let lengthmod := and(_length, 31)

            // The multiplication in the next line is necessary
            // because when slicing multiples of 32 bytes (lengthmod == 0)
            // the following copy loop was copying the origin's length
            // and then ending prematurely not copying everything it should.
                let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                let end := add(mc, _length)

                for {
                // The multiplication in the next line has the same exact purpose
                // as the one above.
                    let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

            //update free-memory pointer
            //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
            //zero out the 32 bytes slice we are about to return
            //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }

    function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) {
        require(_bytes.length >= _start + 1 , "toUint8_outOfBounds");
        uint8 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x1), _start))
        }

        return tempUint;
    }

    function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) {
        require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
        uint16 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x2), _start))
        }

        return tempUint;
    }

    function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) {
        require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }

    function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) {
        require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
        uint64 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x8), _start))
        }

        return tempUint;
    }

    function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) {
        require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
        uint96 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0xc), _start))
        }

        return tempUint;
    }

    function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) {
        require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
        uint128 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x10), _start))
        }

        return tempUint;
    }

    function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint256 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) {
        require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
        bytes32 tempBytes32;

        assembly {
            tempBytes32 := mload(add(add(_bytes, 0x20), _start))
        }

        return tempBytes32;
    }

    function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {
        bool success = true;

        assembly {
            let length := mload(_preBytes)

        // if lengths don't match the arrays are not equal
            switch eq(length, mload(_postBytes))
            case 1 {
            // cb is a circuit breaker in the for loop since there's
            //  no said feature for inline assembly loops
            // cb = 1 - don't breaker
            // cb = 0 - break
                let cb := 1

                let mc := add(_preBytes, 0x20)
                let end := add(mc, length)

                for {
                    let cc := add(_postBytes, 0x20)
                // the next line is the loop condition:
                // while(uint256(mc < end) + cb == 2)
                } eq(add(lt(mc, end), cb), 2) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                // if any of these checks fails then arrays are not equal
                    if iszero(eq(mload(mc), mload(cc))) {
                    // unsuccess:
                        success := 0
                        cb := 0
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }

    function equalStorage(
        bytes storage _preBytes,
        bytes memory _postBytes
    )
    internal
    view
    returns (bool)
    {
        bool success = true;

        assembly {
        // we know _preBytes_offset is 0
            let fslot := sload(_preBytes.slot)
        // Decode the length of the stored array like in concatStorage().
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)

        // if lengths don't match the arrays are not equal
            switch eq(slength, mlength)
            case 1 {
            // slength can contain both the length and contents of the array
            // if length < 32 bytes so let's prepare for that
            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                if iszero(iszero(slength)) {
                    switch lt(slength, 32)
                    case 1 {
                    // blank the last byte which is the length
                        fslot := mul(div(fslot, 0x100), 0x100)

                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                        // unsuccess:
                            success := 0
                        }
                    }
                    default {
                    // cb is a circuit breaker in the for loop since there's
                    //  no said feature for inline assembly loops
                    // cb = 1 - don't breaker
                    // cb = 0 - break
                        let cb := 1

                    // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := keccak256(0x0, 0x20)

                        let mc := add(_postBytes, 0x20)
                        let end := add(mc, mlength)

                    // the next line is the loop condition:
                    // while(uint256(mc < end) + cb == 2)
                        for {} eq(add(lt(mc, end), cb), 2) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            if iszero(eq(sload(sc), mload(mc))) {
                            // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }
}

File 14 of 22 : ExcessivelySafeCall.sol
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
    0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := call(
            _gas, // gas
            _target, // recipient
            0, // ether value
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeStaticCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := staticcall(
            _gas, // gas
            _target, // recipient
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /**
     * @notice Swaps function selectors in encoded contract calls
     * @dev Allows reuse of encoded calldata for functions with identical
     * argument types but different names. It simply swaps out the first 4 bytes
     * for the new selector. This function modifies memory in place, and should
     * only be used with caution.
     * @param _newSelector The new 4-byte selector
     * @param _buf The encoded contract args
     */
    function swapSelector(bytes4 _newSelector, bytes memory _buf)
    internal
    pure
    {
        require(_buf.length >= 4);
        uint256 _mask = LOW_28_MASK;
        assembly {
        // load the first word of
            let _word := mload(add(_buf, 0x20))
        // mask out the top 4 bytes
        // /x
            _word := and(_word, _mask)
            _word := or(_newSelector, _word)
            mstore(add(_buf, 0x20), _word)
        }
    }
}

File 15 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 16 of 22 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) 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, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 17 of 22 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 18 of 22 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 19 of 22 : Context.sol
// SPDX-License-Identifier: MIT
// 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 20 of 22 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 21 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 22 of 22 : SystemVersionId.sol
// SPDX-License-Identifier: AGPL-3.0-only

pragma solidity 0.8.19;

/**
 * @title SystemVersionId
 * @notice Base contract providing the system version identifier
 */
abstract contract SystemVersionId {
    /**
     * @dev The system version identifier
     */
    uint256 public constant SYSTEM_VERSION_ID = uint256(keccak256('Initial'));
}

Settings
{
  "compilerPath": "",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"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":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","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"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","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":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","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":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYSTEM_VERSION_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","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":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","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":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","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":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","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":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000b95427048a8c1f02a47f51fe7f77da60f0b15b59058c7821e0a570f72f5000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da

Deployed Bytecode

0x000400000000000200090000000000020000000003010019000000600330027000000ad6043001970003000000410355000200000001035500000ad60030019d000100000000001f00000001012001900000003b0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000000a70000413d0000000201000367000000000101043b000000e00110027000000ae70210009c0000004b0000213d00000b0b0210009c000000a90000213d00000b1d0210009c000001b80000a13d00000b1e0210009c0000020e0000a13d00000b1f0210009c0000036e0000213d00000b220210009c000004340000613d00000b230110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d0000001202000039000000000021043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d0000000001000031000000ff02100039000000200800008a000000000282016f00000ad70320004100000ad80330009c0000007a0000213d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b550001043000000ae80210009c000000e70000213d00000afa0210009c000001f00000a13d00000afb0210009c0000022f0000a13d00000afc0210009c000003b70000213d00000aff0210009c000004650000613d00000b000110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000002010003670000000402100370000000000202043b00000ada0320009c000000a70000213d0000002401100370000000000301043b00000000010004112b5329a30000040f0000000101000039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e000000400020043f0000001f0210018f00000002030003670000000504100272000000880000613d00000000050000190000000506500210000000000763034f000000000707043b000000e00660003900000000007604350000000105500039000000000645004b000000800000413d000000000502004b000000970000613d0000000504400210000000000343034f0000000302200210000000e004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f000000000024043500000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000e00100043d00000ada0510019700000ada0110009c000001230000a13d000000000100001900002b550001043000000b0c0210009c000001fc0000a13d00000b0d0210009c000002960000a13d00000b0e0210009c000003ed0000213d00000b110210009c000004660000613d00000b120110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000000a70000213d00000000001004350000000101000039000000200010043f000000400200003900000000010000192b5308850000040f000000400200043d000900000002001d2b5313440000040f0000000903000029000000000231004900000000010300192b530e5a0000040f0000002001000039000000400200043d000800000002001d000000000212043600000009010000292b530a360000040f0000000804000029000000000141004900000ad60200004100000ad60310009c000000000102801900000ad60340009c000000000204401900000040022002100000006001100210000000000121019f00002b540001042e00000ae90210009c000002050000a13d00000aea0210009c000002c10000a13d00000aeb0210009c000004160000213d00000aee0210009c0000048c0000613d00000aef0110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000601043b00000ada0160009c000000a70000213d000000000100041a00000ada021001970000000005000411000000000252004b000007710000c13d000000000206004b000008310000c13d000000400100043d000000640210003900000b2f030000410000000000320435000000440210003900000b3003000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400300043d00000adb0130009c000000450000213d0000004001300039000000400010043f0000000f01000039000000000413043600000adc010000410000000000140435000000400200043d00000adb0120009c000000450000213d000700000004001d000600000003001d0000004001200039000000400010043f000000200320003900000add01000041000300000003001d00000000001304350000000303000039000800000002001d0000000000320435000000000200041a00000ade012001970000000006000411000000000161019f000000000010041b00000ad601000041000900000005001d000000000500041400000ad60450009c0000000001054019000000c00110021000000adf011001c700000ada052001970000800d0200003900000ae004000041000400000003001d000500000008001d2b532b490000040f00000009030000290000000101200190000000a70000613d000000800030043f0000000801000039000000a00010043f0000000601000029000000000601043300000ae10160009c00000008050000290000000707000029000000450000213d0000000b04000039000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000006fa0000c13d000000200130008c000001880000413d000100000003001d000200000006001d000900000004001d000000000040043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f0000000102200190000000a70000613d00000002060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000080500002900000009040000290000000707000029000001880000813d000000000002041b0000000102200039000000000312004b000001840000413d0000001f0160008c000007940000a13d000200000006001d000900000004001d000000000040043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f00000005030000290000000102200190000000a70000613d000000020700002900000000033701700000002002000039000000000101043b0000000606000029000001a80000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001a00000413d000000000373004b0000000805000029000001b40000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf00000009040000290000079f0000013d00000b270210009c000002c80000213d00000b2b0210009c000004aa0000613d00000b2c0210009c000004ab0000613d00000b2d0110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d0000000b04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000006fa0000c13d000000400100043d0000000002710436000000000505004b000008010000613d0000000000400435000000000307004b0000000003000019000008070000613d00000b3e0400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000001e80000413d000008070000013d00000b040210009c000002f10000213d00000b080210009c000004d20000613d00000b090210009c000004fe0000613d00000b0a0110009c000000a70000c13d0000000001000416000000000101004b000002170000613d000000a70000013d00000b160210009c000003210000213d00000b1a0210009c000005190000613d00000b1b0210009c000005440000613d00000b1c0110009c000000a70000c13d2b530d6d0000040f00000af30210009c0000034e0000213d00000af70210009c000005690000613d00000af80210009c000005830000613d00000af90110009c000000a70000c13d2b531b7b0000040f00000b240210009c000005840000613d00000b250210009c000005ab0000613d00000b260110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d0000000a01000039000000000101041a000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e00000b010210009c000005ac0000613d00000b020210009c000005ad0000613d00000b030110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d0000000002000031000000040120008a00000ad903000041000000e00410008c0000000004000019000000000403401900000ad901100197000000000501004b000000000300a01900000ad90110009c00000000010400190000000001036019000000000101004b000000a70000c13d00000002010003670000000403100370000000000303043b000900000003001d0000ffff0330008c000000a70000213d0000006403100370000000000303043b00000ae10430009c000000a70000213d000000230430003900000ad905000041000000000624004b0000000006000019000000000605801900000ad90720019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b000000a70000c13d0000000404300039000000000441034f000000000404043b000800000004001d00000ae10440009c000000a70000213d00000024043000390000000803000029000700000004001d0000000003430019000000000323004b000000a70000213d0000008403100370000000000303043b000600000003001d00000ae10330009c000000a70000213d000000a403100370000000000403043b000000000304004b0000000003000019000000010300c039000500000004001d000000000334004b000000a70000c13d000000c401100370000000000101043b00000ae10310009c000000a70000213d00000004011000392b5308ac0000040f00000002040003670000004403400370000000000303043b0000002404400370000000000404043b000000000801001900000000090200190000000901000029000000000204001900000007040000290000000805000029000000060600002900000005070000292b5321c00000040f000000400300043d00000020043000390000000000240435000000000013043500000ad60100004100000ad60230009c0000000001034019000000400110021000000b36011001c700002b540001042e00000b130210009c000005ae0000613d00000b140210009c000006160000613d00000b150110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b00000ada0210009c000000a70000213d00000000001004350000000801000039000000200010043f000000400200003900000000010000192b5308850000040f000000000101041a000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e00000af00210009c000006170000613d00000af10210009c0000064e0000613d00000af20110009c000000a70000c13d2b531e400000040f00000b280210009c000006a50000613d00000b290210009c000006a60000613d00000b2a0110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000002010003670000000402100370000000000202043b00000ada0320009c000000a70000213d0000002401100370000000000301043b00000000010004112b532a3b0000040f0000000101000039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e00000b050210009c000006c00000613d00000b060210009c000006dc0000613d00000b070110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d00000000010000312b530ea80000040f000800000002001d000900000003001d0000ffff0110018f00000000001004350000000701000039000000200010043f000000400200003900000000010000192b5308850000040f000700000001001d00000008010000290000000013010434000600000003001d000000400200043d000800000002001d2b530a290000040f0000000602000029000000080100002900000000041200190000000703000029000000000034043500000020022000392b5308850000040f00000009020000292b530f110000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e00000b170210009c000007000000613d00000b180210009c000007040000613d00000b190110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d00000000010000312b530ea80000040f000800000002001d000900000003001d0000ffff0110018f00000000001004350000000501000039000000200010043f000000400200003900000000010000192b5308850000040f000700000001001d00000008010000290000000013010434000600000003001d000000400200043d000800000002001d2b530a290000040f0000000602000029000000080100002900000000041200190000000703000029000000000034043500000020022000392b5308850000040f00000009020000292b530f110000040f000000000101041a000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e00000af40210009c0000071d0000613d00000af50210009c000007490000613d00000af60110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d0000000102000039000000000021043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b2e011001c700002b540001042e00000b200210009c0000074a0000613d00000b210110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b000900000001001d00000ada0110009c000000a70000213d0000000001000411000800000001001d00000000001004350000000901000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000000a70000613d000000000101043b00000009020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000000a70000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000008420000613d00000ae50100004100000000001004350000001101000039000000040010043f00000ae60100004100002b550001043000000afd0210009c0000074b0000613d00000afe0110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004020000390000000201200367000000000101043b00000ada0310009c000000a70000213d000000000300041a00000ada033001970000000004000411000000000343004b000007710000c13d000000000302041a00000ade03300197000000000313019f000000000032041b000000400200043d000000000012043500000ad601000041000000000300041400000ad60430009c000000000301801900000ad60420009c00000000010240190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000010300003900000b34040000412b532b490000040f0000000101200190000008400000c13d000000a70000013d00000b0f0210009c0000076f0000613d00000b100110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d000900000001001d00000b350100004100000000001004390000000001000412000000040010044300000020010000390000002400100443000080050100003900000044020000392b53089b0000040f000000ff0110018f0000000903000029000000000013043500000ad60100004100000ad60230009c0000000001034019000000400110021000000b2e011001c700002b540001042e00000aec0210009c000007700000613d00000aed0110009c000000a70000c13d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d0000000002000410000000000021043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000600310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000002010003670000000402100370000000000202043b000000000302001900000ada0220009c000000a70000213d0000002402100370000000000202043b000900000002001d00000ada0220009c000000a70000213d0000004401100370000000000401043b000800000004001d00000000020004110000000001030019000700000001001d00000000030400192b532aa20000040f0000000701000029000000090200002900000008030000292b5329a30000040f0000000101000039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e2b5319280000040f0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000000100041a00000ada021001970000000005000411000000000252004b000007710000c13d00000ade01100197000000000010041b00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000adf011001c70000800d02000039000000030300003900000ae00400004100000000060000192b532b490000040f0000000101200190000000a70000613d000008400000013d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d0000000601000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e2b5308c70000040f0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b00000b3f02100197000000000221004b000000a70000c13d00000b400210009c0000000002000019000000010200603900000b410110009c00000000010000190000000101006039000000000121019f000000010110018f000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000002020003670000000401200370000000000101043b0000ffff0310008c000000a70000213d0000002402200370000000000202043b000900000002001d0000ffff0220008c000000a70000213d00000000001004350000000201000039000000200010043f000000400200003900000000010000192b5308850000040f00000009020000292b530d5c0000040f000000000101041a000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000000100041a00000ada01100197000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d00000000010000312b530d2a0000040f000800000002001d000700000003001d0000ffff0110018f00000000001004350000000101000039000000200010043f000000400200003900000000010000192b5308850000040f000000400200043d000900000002001d2b5313440000040f0000000903000029000000000231004900000000010300192b530e5a0000040f000000090100002900000000120104342b5308850000040f000900000001001d0000000003000031000000080100002900000007020000292b530e6d0000040f00000000120104342b5308850000040f0000000902000029000000000112004b00000000010000190000000101006039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000000a70000213d00000000001004350000000301000039000000200010043f000000400200003900000000010000192b5308850000040f000000000101041a000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d0000271002000039000000000021043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b2e011001c700002b540001042e2b531a810000040f0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b000900000001001d0000ffff0110008c000000a70000213d2b53297b0000040f000000090100002900000000001004350000000301000039000000200010043f00000024010000390000000201100367000000000101043b000900000001001d000000400200003900000000010000192b5308850000040f0000000902000029000000000021041b000000000100001900002b540001042e2b530b000000040f2b5318220000040f2b5318c70000040f0000000001000416000000000101004b000000a70000c13d0000000003000031000000040130008a00000ad902000041000000800410008c0000000004000019000000000402401900000ad901100197000000000501004b000000000200a01900000ad90110009c00000000010400190000000001026019000000000101004b000000a70000c13d00000002040003670000000401400370000000000101043b000900000001001d0000ffff0110008c000000a70000213d0000002401400370000000000101043b00000ae10210009c000000a70000213d000000230210003900000ad905000041000000000632004b0000000006000019000000000605801900000ad90730019700000ad902200197000000000872004b0000000005008019000000000272013f00000ad90220009c00000000020600190000000002056019000000000202004b000000a70000c13d0000000402100039000000000224034f000000000202043b00000ae10520009c000000a70000213d00000024011000390000000005120019000000000535004b000000a70000213d0000004405400370000000000505043b000800000005001d00000ae10550009c000000a70000213d0000006405400370000000000505043b00000ae10650009c000000a70000213d000000230650003900000ad907000041000000000836004b0000000008000019000000000807801900000ad90930019700000ad906600197000000000a96004b0000000007008019000000000696013f00000ad90660009c00000000060800190000000006076019000000000606004b000000a70000c13d0000000406500039000000000464034f000000000404043b000700000004001d00000ae10440009c000000a70000213d00000024055000390000000704000029000600000005001d0000000004540019000000000434004b000000a70000213d00000000040004100000000005000411000000000445004b000008700000c13d2b530e6d0000040f000500000001001d0000000003000031000000060100002900000007020000292b530e6d0000040f00000000040100190000000901000029000000050200002900000008030000292b5325720000040f000000000100001900002b540001042e2b530f220000040f0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000004010000390000000201100367000000000101043b000000000201004b0000000002000019000000010200c039000000000221004b000000a70000c13d000000000200041a00000ada022001970000000003000411000000000232004b000007710000c13d0000000602000039000000000302041a000001000400008a000000000343016f000000000313019f000000000032041b000000400200043d000000000012043500000ad601000041000000000300041400000ad60430009c000000000301801900000ad60420009c00000000010240190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000010300003900000b33040000412b532b490000040f0000000101200190000008400000c13d000000a70000013d0000000001000416000000000101004b000000a70000c13d0000000002000031000000040120008a00000ad903000041000001000410008c0000000004000019000000000403401900000ad901100197000000000501004b000000000300a01900000ad90110009c00000000010400190000000001036019000000000101004b000000a70000c13d00000002010003670000000403100370000000000303043b000900000003001d0000ffff0330008c000000a70000213d0000002403100370000000000303043b00000ae10430009c000000a70000213d000000230430003900000ad905000041000000000624004b0000000006000019000000000605801900000ad90720019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b000000a70000c13d0000000404300039000000000441034f000000000404043b000800000004001d00000ae10440009c000000a70000213d00000024043000390000000803000029000700000004001d0000000003430019000000000323004b000000a70000213d0000004403100370000000000303043b000600000003001d00000ae10330009c000000a70000213d0000008403100370000000000303043b000500000003001d00000ada0330009c000000a70000213d000000c401100370000000000101043b00000ae10310009c000000a70000213d00000004011000392b5308ac0000040f0000000203000367000000e404300370000000000a04043b000000a404300370000000000704043b0000006403300370000000000503043b00000000080100190000000009020019000000090100002900000007020000290000000803000029000000060400002900000005060000292b53235d0000040f000000000100001900002b540001042e2b530a5f0000040f0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d00000b3d02000041000000000021043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d0000000401000039000000000101041a00000ada01100197000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d0000000c04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000007820000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b55000104300000000001000416000000000101004b000000a70000c13d000007070000013d0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d000000000001043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b2e011001c700002b540001042e0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d00000002020003670000000401200370000000000101043b00000ada0310009c000000a70000213d0000002402200370000000000202043b000900000002001d00000ada0220009c000000a70000213d00000000001004350000000901000039000000200010043f000000400200003900000000010000192b5308850000040f00000009020000292b5329920000040f000000000101041a000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e2b531dbc0000040f2b530ba10000040f0000000001000416000000000101004b000000a70000c13d000000040100008a000000000110003100000ad902000041000000000301004b0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000000a70000c13d000000400100043d000900000001001d00000b35010000410000000000100439000000000100041200000004001004430000002400000443000080050100003900000044020000392b53089b0000040f00000ada011001970000000903000029000000000013043500000ad60100004100000ad60230009c0000000001034019000000400110021000000b2e011001c700002b540001042e2b5313810000040f2b531f4e0000040f000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d0000000002710436000000000505004b000008190000613d0000000000400435000000000307004b00000000030000190000081f0000613d00000b370400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b0000078c0000413d0000081f0000013d000000000106004b0000000001000019000007980000613d00000000010704330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f000000000014041b000000000505043300000ae10150009c000000450000213d0000000c04000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000006fa0000c13d000600000003001d000000200130008c000700000004001d000900000005001d000007d10000413d000000000040043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f0000000102200190000000a70000613d00000009050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000704000029000007d10000813d000000000002041b0000000102200039000000000312004b000007cd0000413d0000001f0150008c0000084e0000a13d000000000040043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f00000001022001900000000502000029000000a70000613d000000090300002900000000032301700000002002000039000000000101043b0000000806000029000007ef0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000007e70000413d0000000904000029000000000343004b000007fd0000813d00000009030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000080400002900000000024200190000000002020433000000000232016f000000000021041b0000000101000039000000090200002900000001022002100000085b0000013d000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000900000001001d2b530e5a0000040f000000400100043d000800000001001d00000009020000292b530a490000040f0000000804000029000000000141004900000ad60200004100000ad60310009c000000000102801900000ad60340009c000000000204401900000040022002100000006001100210000000000121019f00002b540001042e000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000900000001001d2b530e5a0000040f000000400100043d000800000001001d00000009020000292b530a490000040f0000000804000029000000000141004900000ad60200004100000ad60310009c000000000102801900000ad60340009c000000000204401900000040022002100000006001100210000000000121019f00002b540001042e00000ade01100197000000000161019f000000000010041b00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000adf011001c70000800d02000039000000030300003900000ae0040000412b532b490000040f0000000101200190000000a70000613d000000000100001900002b540001042e000000080100002900000009020000292b532a3b0000040f0000000101000039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e0000000901000029000000000101004b0000000001000019000008540000613d0000000301000029000000000101043300000009040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000702000029000000000012041b00000ae301000041000000c00010043f000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a0002004430000004002000039000000c00300043d000001c000200443000001e00030044300000100001004430000000401000029000001200010044300000ae40100004100002b540001042e000000400100043d000000640210003900000b3a030000410000000000320435000000440210003900000b3b03000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000000ad60300004100000ad60410009c0000000001038019000000400110021000000ad60420009c00000000020380190000006002200210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000008990000613d000000000101043b000000000001042d000000000100001900002b5500010430000000000301001900000ad601000041000000000400041400000ad60540009c0000000001044019000000c0011002100000006002200210000000000112001900000b420110004100000000020300192b532b4e0000040f0000000102200190000008aa0000613d000000000101043b000000000001042d000000000100001900002b55000104300000001f0310003900000ad904000041000000000523004b0000000005000019000000000504401900000ad90620019700000ad903300197000000000763004b000000000400a019000000000363013f00000ad90330009c00000000030500190000000003046019000000000303004b000008c50000613d0000000203100367000000000303043b00000ae10430009c000008c50000213d00000020011000390000000004310019000000000224004b000008c50000213d0000000002030019000000000001042d000000000100001900002b5500010430000a0000000000020000000001000416000000000101004b000008de0000c13d0000000001000031000000040210008a00000ad903000041000000800420008c0000000004000019000000000403401900000ad902200197000000000502004b000000000300a01900000ad90220009c00000000020400190000000002036019000000000202004b000008de0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000008e00000a13d000000000100001900002b55000104300000002403200370000000000303043b00000ae10430009c000008de0000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b000008de0000c13d0000000404300039000000000442034f000000000b04043b00000ae104b0009c000008de0000213d000000240c300039000000000dcb001900000000031d004b000008de0000213d0000004403200370000000000a03043b00000ae103a0009c000008de0000213d0000006403200370000000000303043b00000ae10430009c000008de0000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b000008de0000c13d0000000404300039000000000242034f000000000402043b00000ae10240009c000008de0000213d0000002402300039000a00000002001d0000000002240019000000000112004b000008de0000213d00000b3501000041000000000010043900000000010004120000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c70000800502000039000900000009001d00060000000a001d00080000000b001d00070000000c001d000500000004001d00040000000d001d2b532b4e0000040f00000009030000290000000102200190000008de0000613d000000000101043b00000ada011001970000000002000411000000000112004b000009570000c13d00000000003004350000000101000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000008de0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000009690000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b4403000041000000000032043500000024021000390000001e03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400400043d000200000004001d000100000005001d0000000004540436000300000004001d000000000303004b000009810000613d000000000010043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f0000000102200190000008de0000613d0000000102000029000000000202004b00000a1d0000c13d00000000010000190000000305000029000009890000013d000001000100008a000000000112016f000000030500002900000000001504350000000101000029000000000101004b000000200100003900000000010060190000000204000029000300000005001d000000000245004900000000011200190000001f01100039000000200200008a000000000321016f0000000001430019000000000331004b0000000003000019000000010300403900000ae10410009c00000a170000213d000000010330019000000a170000c13d000000400010043f000000020300002900000000030304330000000804000029000000000334004b000000000300001900000a050000c13d0000000803000029000000000303004b000000000300001900000a050000613d00000008030000290000003f03300039000000000223016f0000000002210019000000000312004b0000000003000019000000010300403900000ae10420009c00000a170000213d000000010330019000000a170000c13d0000000003000031000000400020043f000000080500002900000000025104360000000404000029000000000334004b0000000704000029000008de0000213d0000001f0350018f00000002044003670000000505500272000009c30000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000009bb0000413d000000000603004b000009d20000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000008030000290000000003320019000000000003043500000ad60300004100000ad60420009c00000000020380190000004002200210000000000101043300000ad60410009c00000000010380190000006001100210000000000121019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000008de0000613d00000ad602000041000000030400002900000ad60340009c0000000003020019000000000304401900000040033002100000000204000029000000000404043300000ad60540009c00000000040280190000006004400210000000000334019f000000000101043b000400000001001d000000000100041400000ad60410009c0000000001028019000000c001100210000000000131019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000008de0000613d000000000101043b0000000402000029000000000112004b00000000030000190000000103006039000000010130018f2b5320450000040f0000000003000031000000070100002900000008020000292b530e6d0000040f000800000001001d00000000030000310000000a0100002900000005020000292b530e6d0000040f00000000040100190000000901000029000000080200002900000006030000292b53205d0000040f000000000100001900002b540001042e00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000000201043b0000000001000019000000030500002900000001060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00000a210000413d000009890000013d000000000403004b00000a330000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b00000a2c0000413d00000000012300190000000000010435000000000001042d00000000030104330000000002320436000000000403004b00000a420000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b00000a3b0000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b00000a580000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000a510000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d00020000000000020000000001000416000000000101004b00000a760000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b00000a760000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000a780000a13d000000000100001900002b5500010430000000000100041a00000ada011001970000000002000411000000000121004b00000ac60000c13d00000b3501000041000000000010043900000000010004120000000400100443000000240000044300000ad6010000410000000002000414000200000003001d00000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f000000010220019000000a760000613d000000000101043b00000b4502000041000000000020043900000ada01100197000100000001001d000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000203000029000000010220019000000a760000613d000000000101043b000000000101004b00000a760000613d000000400500043d00000b470100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000abe0000613d00000ad60400004100000ad60310009c000000000104801900000ad60350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000ae6011001c7000200000005001d2b532b490000040f00000002050000290000000003010019000000600330027000010ad60030019d00000ad6043001970003000000010355000000010220019000000ada0000613d00000b480150009c00000ad70000413d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400050043f000000000100001900002b540001042e000000400200043d0000001f0340018f000000050440027200000ae70000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000adf0000413d000000000503004b00000af60000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b550001043000020000000000020000000001000416000000000101004b00000b170000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b00000b170000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000b190000a13d000000000100001900002b5500010430000000000100041a00000ada011001970000000002000411000000000121004b00000b670000c13d00000b3501000041000000000010043900000000010004120000000400100443000000240000044300000ad6010000410000000002000414000200000003001d00000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f000000010220019000000b170000613d000000000101043b00000b4502000041000000000020043900000ada01100197000100000001001d000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000203000029000000010220019000000b170000613d000000000101043b000000000101004b00000b170000613d000000400500043d00000b490100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000b5f0000613d00000ad60400004100000ad60310009c000000000104801900000ad60350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000ae6011001c7000200000005001d2b532b490000040f00000002050000290000000003010019000000600330027000010ad60030019d00000ad6043001970003000000010355000000010220019000000b7b0000613d00000b480150009c00000b780000413d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400050043f000000000100001900002b540001042e000000400200043d0000001f0340018f000000050440027200000b880000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000b800000413d000000000503004b00000b970000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b550001043000060000000000020000000001000416000000000101004b00000cf40000c13d0000000002000031000000040120008a00000ad903000041000000a00410008c0000000004000019000000000403401900000ad901100197000000000501004b000000000300a01900000ad90110009c00000000010400190000000001036019000000000101004b00000cf40000c13d00000002010003670000000403100370000000000b03043b0000ffff03b0008c00000cf40000213d0000006403100370000000000903043b000000000309004b0000000003000019000000010300c039000000000339004b00000cf40000c13d0000008403100370000000000303043b00000ae10430009c00000cf40000213d000000230430003900000ad905000041000000000624004b0000000006000019000000000605801900000ad90720019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b00000cf40000c13d0000000404300039000000000141034f000000000101043b00000ae10410009c00000cf40000213d00000024043000390000000003410019000000000223004b00000cf40000213d0000003f02100039000000200600008a000000000262016f000000400a00043d00000000022a00190000000003a2004b0000000003000019000000010300403900000ae10520009c00000c520000213d000000010330019000000c520000c13d000300000006001d000000400020043f0000001f0310018f00000000021a04360000000204400367000000050510027200000bf70000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000bef0000413d00050000000b001d00020000000a001d000600000009001d000000000603004b00000c090000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000001120019000000000001043500000044010000390000000201100367000000000101043b000400000001001d00000b350100004100000000001004390000000001000412000100000001001d00000004001004430000004001000039000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000000060a000029000000050400002900000cf40000613d000000000101043b000000000201004b00000c2b0000c13d00000ae50100004100000000001004350000001201000039000000040010043f00000ae60100004100002b5500010430000000040200002900000000211200d900000b480210009c00000c410000413d000000400100043d000000440210003900000b4c03000041000000000032043500000024021000390000001a03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000024020000390000000202200367000000000202043b000000c001100210000000400700043d0000004103700039000000000013043500000020017000390000000000010435000000210170003900000000002104350000002901000039000000000017043500000b4a0170009c0000000308000029000000020b00002900000c580000a13d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b55000104300000006009700039000000400090043f000000a401700039000000a0020000390000000000210435000000000100041000000ada011001970000008402700039000000000012043500000b4b010000410000000000190435000000640170003900000000004104350000010403700039000000000207043300000000002304350000012403700039000000000402004b00000c730000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b00000c6c0000413d000400000009001d00000000043200190000000000040435000000c4047000390000000000a404350000001f02200039000000000282016f00000000033200190000000001130049000600000007001d000000e402700039000000000012043500000000050b0433000500000003001d0000000001530436000000000205004b00000c8c0000613d0000000002000019000000000312001900000020022000390000000004b2001900000000040404330000000000430435000000000352004b00000c850000413d000200000005001d0000000001150019000000000001043500000b3501000041000000000010043900000001010000290000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f000000010220019000000cf40000613d000000000201043b000000000100041400000ada02200197000000040320008c00000ca90000c13d0000000103000031000000400130008c00000040040000390000000004034019000000040a00002900000ce70000013d00000002030000290000001f033000390000000304000029000000000343016f000000060400002900000005050000290000000004450049000000000334001900000ad604000041000000040600002900000ad60560009c000000000504001900000000050640190000004005500210000000400330008a00000ad60630009c00000000030480190000006003300210000000000353019f00000ad60510009c0000000001048019000000c001100210000000000131019f2b532b4e0000040f000000040a0000290000000003010019000000600330027000000ad603300197000000400430008c000000400400003900000000040340190000001f0540018f000000050640027200000cd40000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00000ccc0000413d000000000705004b00000ce30000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f0003000000010355000000010220019000000cf60000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b0000000002000019000000010200403900000ae10410009c00000c520000213d000000010220019000000c520000c13d000000400010043f000000400230008c00000d1c0000813d000000000100001900002b5500010430000000400200043d0000001f0430018f000000050330027200000d030000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00000cfb0000413d000000000504004b00000d120000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b55000104300000000402000029000000000202043300000006030000290000008003300039000000000303043300000020041000390000000000340435000000000021043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b36011001c700002b540001042e000000040210008a00000ad9030000410000003f0420008c0000000004000019000000000403201900000ad902200197000000000502004b000000000300801900000ad90220009c00000000020400190000000002036019000000000202004b00000d5a0000613d00000002020003670000000403200370000000000403043b0000ffff0340008c00000d5a0000213d0000002403200370000000000503043b00000ae10350009c00000d5a0000213d000000230350003900000ad906000041000000000713004b0000000007000019000000000706801900000ad90810019700000ad903300197000000000983004b0000000006008019000000000383013f00000ad90330009c00000000030700190000000003066019000000000303004b00000d5a0000c13d0000000403500039000000000232034f000000000302043b00000ae10230009c00000d5a0000213d00000024025000390000000005230019000000000115004b00000d5a0000213d0000000001040019000000000001042d000000000100001900002b55000104300000ffff0220018f0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000d6b0000613d000000000101043b000000000001042d000000000100001900002b550001043000040000000000020000000001000416000000000101004b00000da00000c13d0000000001000031000000040210008a00000ad903000041000000400420008c0000000004000019000000000403401900000ad902200197000000000502004b000000000300a01900000ad90220009c00000000020400190000000002036019000000000202004b00000da00000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000da00000213d0000002403200370000000000303043b00000ae10430009c00000da00000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b00000da00000c13d0000000404300039000000000242034f000000000402043b00000ae10240009c00000da00000213d00000024053000390000000002540019000000000112004b00000da20000a13d000000000100001900002b5500010430000000000100041a00000ada011001970000000002000411000000000121004b00000e200000c13d00000b3501000041000000000010043900000000010004120000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c70000800502000039000400000004001d000300000009001d000200000005001d2b532b4e0000040f000000010220019000000da00000613d000000000101043b00000b4502000041000000000020043900000ada01100197000100000001001d000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f000000020400002900000003030000290000000408000029000000010220019000000da00000613d000000000101043b000000000101004b00000da00000613d000000400900043d00000024019000390000004002000039000000000021043500000b4d01000041000000000019043500000004019000390000000000310435000000440190003900000000008104350000001f0280018f00000064019000390000000203400367000000050480027200000de70000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000ddf0000413d000000000502004b00000df60000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00000e180000613d0000001f04800039000000200300008a000000000534016f00000b4e0300004100000b4e0450009c000000000503801900000ad60300004100000ad60490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f00000ad60410009c0000000001038019000000c001100210000000000115019f00000b3901100041000400000009001d2b532b490000040f00000004090000290000000003010019000000600330027000010ad60030019d00000ad6043001970003000000010355000000010220019000000e340000613d00000b480190009c00000e310000413d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400090043f000000000100001900002b540001042e000000400200043d0000001f0340018f000000050440027200000e410000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000e390000413d000000000503004b00000e500000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b55000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b0000000002000019000000010200403900000ae10310009c00000e670000213d000000010220019000000e670000c13d000000400010043f000000000001042d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000000401001900000b480120009c00000ea00000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b0000000006000019000000010600403900000ae10750009c00000ea00000213d000000010660019000000ea00000c13d000000400050043f00000000052104360000000006420019000000000336004b00000ea60000213d0000001f0320018f0000000204400367000000050620027200000e8e0000613d000000000700001900000005087002100000000009850019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b00000e860000413d000000000703004b00000e9d0000613d0000000506600210000000000464034f00000000066500190000000303300210000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f000000000036043500000000022500190000000000020435000000000001042d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000000100001900002b55000104300000000003010019000000040130008a00000ad9020000410000005f0410008c0000000004000019000000000402201900000ad901100197000000000501004b000000000200801900000ad90110009c00000000010400190000000001026019000000000101004b00000f090000613d00000002020003670000000401200370000000000101043b0000ffff0410008c00000f090000213d0000002404200370000000000504043b00000ae10450009c00000f090000213d000000230450003900000ad906000041000000000734004b0000000007000019000000000706801900000ad90830019700000ad904400197000000000984004b0000000006008019000000000484013f00000ad90440009c00000000040700190000000004066019000000000404004b00000f090000c13d0000000404500039000000000242034f000000000402043b00000b480240009c00000f0b0000813d0000003f02400039000000200600008a000000000662016f000000400200043d0000000006620019000000000726004b0000000007000019000000010700403900000ae10860009c00000f0b0000213d000000010770019000000f0b0000c13d0000002407500039000000400060043f00000000054204360000000006740019000000000336004b00000f090000213d0000001f0340018f0000000206700367000000050740027200000ef20000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b00000eea0000413d000000000803004b00000f010000613d0000000507700210000000000676034f00000000077500190000000303300210000000000807043300000000083801cf000000000838022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000383019f00000000003704350000000003450019000000000003043500000044030000390000000203300367000000000303043b00000ae10430009c00000f090000213d000000000001042d000000000100001900002b550001043000000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b550001043000000ae1022001970000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f200000613d000000000101043b000000000001042d000000000100001900002b5500010430000f0000000000020000000001000031000000040210008a00000ad9030000410000009f0420008c0000000004000019000000000403201900000ad902200197000000000502004b000000000300801900000ad90220009c00000000020400190000000002036019000000000202004b00000f7d0000613d00000002020003670000000403200370000000000a03043b00000ada03a0009c00000f7d0000213d0000002403200370000000000c03043b0000ffff03c0008c00000f7d0000213d0000004403200370000000000b03043b0000008403200370000000000403043b00000ae10340009c00000f7d0000213d0000000403400039000000000531004900000ad906000041000000600750008c0000000007000019000000000706401900000ad905500197000000000805004b000000000600a01900000ad90550009c00000000050700190000000005066019000000000505004b00000f7d0000c13d000000000532034f000000000d05043b00000ada05d0009c00000f7d0000213d0000002405400039000000000552034f000000000e05043b00000ada05e0009c00000f7d0000213d0000004405400039000000000552034f0000000004410049000000230640008a000000000405043b00000ad905000041000000000764004b0000000007000019000000000705801900000ad90660019700000ad908400197000000000968004b0000000005008019000000000668013f00000ad90660009c000000000507c019000000000505004b00000f7d0000c13d0000000003340019000000000232034f000000000202043b00000ae10420009c00000f7d0000213d0000000005210049000000200430003900000ad903000041000000000654004b0000000006000019000000000603201900000ad90550019700000ad907400197000000000857004b0000000003008019000000000557013f00000ad90550009c000000000306c019000000000303004b00000f7f0000613d000000000100001900002b55000104300000003f03200039000000200700008a000000000373016f000000400900043d0000000003390019000000000593004b0000000005000019000000010500403900000ae10630009c000011b90000213d0000000105500190000011b90000c13d000f00000007001d000000400030043f00000000032904360000000005420019000000000115004b00000f7d0000213d0000001f0120018f0000000204400367000000050520027200000f9e0000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000f960000413d000000000601004b00000fad0000613d0000000505500210000000000454034f00000000055300190000000301100210000000000605043300000000061601cf000000000616022f000000000404043b0000010001100089000000000414022f00000000011401cf000000000161019f00000000001504350000000001230019000000000001043500000000010904330000000602000039000000000202041a000000ff02200190000d0000000a001d000b0000000b001d000a0000000d001d00090000000e001d00000fdf0000c13d000e00000009001d000c0000000c001d000000000101004b00000ff30000c13d00000064010000390000000201100367000000000101043b000800000001001d00000b350100004100000000001004390000000001000412000700000001001d00000004001004430000004001000039000600000001001d000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f00000001022001900000000c020000290000000e0300002900000f7d0000613d000e00000003001d000c00000002001d000000000101043b000000000201004b0000103d0000c13d00000ae50100004100000000001004350000001201000039000000040010043f00000ae60100004100002b5500010430000000210110008c000010080000213d000000400100043d000000440210003900000b5103000041000000000032043500000024021000390000001c03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000640210003900000b52030000410000000000320435000000440210003900000b5303000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000000022019000390000000001010433000800000001001d0000000000c004350000000201000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000c0000000c001d000e00000009001d2b532b4e0000040f000000010220019000000f7d0000613d000000000101043b0000000000000435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000000101041a000000000201004b0000109a0000c13d000000400100043d000000440210003900000b5003000041000000000032043500000024021000390000001a03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000080200002900000000311200d9000300000003001d0000000001320049000400000001001d00000000020004110000000d01000029000500000002001d000000000121004b0000105f0000c13d0000000d03000029000000000103004b000011150000c13d000000400100043d000000640210003900000b63030000410000000000320435000000440210003900000b6403000041000000000032043500000024021000390000002103000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000d0100002900000000001004350000000901000039000200000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000050200002900000ada02200197000500000002001d0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000000201041a000000010100008a000100000002001d000000000112004b000010470000613d00000004010000290000000102000029000000000112004b000010af0000813d000000400100043d000000440210003900000b5903000041000000000032043500000024021000390000001d03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b55000104300000000802000029000000000112004b00000fbc0000813d000000400100043d000000440210003900000b4f03000041000000000032043500000024021000390000001b03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b55000104300000000d01000029000000000101004b000010c70000c13d000000400100043d000000640210003900000b57030000410000000000320435000000440210003900000b5803000041000000000032043500000024021000390000002403000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000501000029000000000101004b000010df0000c13d000000400100043d000000640210003900000b55030000410000000000320435000000440210003900000b5603000041000000000032043500000024021000390000002203000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000d0100002900000000001004350000000201000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b00000005020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000d05000029000000010220019000000f7d0000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b540400004100000005060000292b532b490000040f0000000d03000029000000010120019000000f7d0000613d00000000003004350000000801000039000500000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000000201041a0000000401000029000200000002001d000000000112004b0000113e0000813d000000400100043d000000640210003900000b61030000410000000000320435000000440210003900000b6203000041000000000032043500000024021000390000002203000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000d0100002900000000001004350000000501000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000d05000029000000010220019000000f7d0000613d000000040300002900000002020000290000000002320049000000000101043b000000000021041b0000000a01000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5a04000041000500000003001d00000000060000192b532b490000040f000000010120019000000f7d0000613d00000008010000290000000302000029000000000121004b000011800000c13d000000400100043d000000440210003900000b6003000041000000000032043500000024021000390000001903000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000b35010000410000000000100439000000070100002900000004001004430000000601000029000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000000201004b00000fd90000613d000000040200002900000000211200d9000000400200043d000800000002001d00000b480210009c000011ab0000413d0000000803000029000000440130003900000b4c02000041000000000021043500000024013000390000001a02000039000000000021043500000b3101000041000000000013043500000004013000390000002002000039000000000021043500000ad60100004100000ad60230009c0000000001034019000000400110021000000b39011001c700002b5500010430000000c0011002100000000803000029000000410230003900000000001204350000002001300039000000000001043500000021013000390000000b0200002900000000002104350000002901000039000000000013043500000b4a0130009c0000000c02000029000011bf0000a13d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b550001043000000008010000290000006001100039000000400010043f0000000001000416000300000001001d00000000002004350000000101000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f0000000004056019000200000004001d0000001f0440008c00000000040000190000000104002039000000010440018f000000000443004b000011e40000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000400400043d000600000004001d00000002050000290000000004540436000100000004001d000000000303004b000011fc0000613d000000000010043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d0000000202000029000000000202004b000012540000c13d00000000010000190000000105000029000012040000013d000001000100008a000000000112016f000000010500002900000000001504350000000201000029000000000101004b000000200100003900000000010060190000000603000029000000000235004900000000011200190000001f011000390000000f02000029000000000221016f0000000001320019000000000221004b0000000002000019000000010200403900000ae10310009c000011b90000213d0000000102200190000011b90000c13d000000400010043f00000006020000290000000002020433000000000202004b0000122b0000c13d000000640210003900000b5e030000410000000000320435000000440210003900000b5f03000041000000000032043500000024021000390000003003000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000000008010000290000000001010433000200000001001d0000000c0100002900000000001004350000000501000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b000000000101041a000000000201004b00002710010060390000000202000029000000000121004b000012600000813d000000400100043d000000440210003900000b5d03000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000000201043b0000000001000019000000010500002900000002060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000012580000413d000012040000013d00000b3501000041000000000010043900000007010000290000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f000000010220019000000f7d0000613d000000000101043b00000b4502000041000000000020043900000ada01100197000700000001001d000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000c03000029000000010220019000000f7d0000613d000000000101043b000000000101004b00000f7d0000613d000000400400043d0000002401400039000000c002000039000000000021043500000b5b0100004100000000001404350000000401400039000000000031043500000006020000290000000002020433000000c4034000390000000000230435000500000004001d000000e403400039000000000402004b0000129c0000613d0000000004000019000000000534001900000020044000390000000606000029000000000664001900000000060604330000000000650435000000000524004b000012940000413d000000000432001900000000000404350000001f022000390000000f04000029000000000242016f00000000023200190000000003120049000000050400002900000044044000390000000000340435000000080300002900000000030304330000000002320436000000000403004b000012b40000613d0000000004000019000000000524001900000020044000390000000806000029000000000664001900000000060604330000000000650435000000000534004b000012ac0000413d00000000042300190000000000040435000000090400002900000ada044001970000000506000029000000840560003900000000004504350000000a0400002900000ada04400197000000640560003900000000004504350000001f033000390000000f04000029000000000343016f00000000032300190000000001130049000000a40260003900000000001204350000000e0100002900000000020104330000000001230436000000000302004b000012d40000613d0000000003000019000000000413001900000020033000390000000e05000029000000000553001900000000050504330000000000540435000000000423004b000012cc0000413d0000000003120019000000000003043500000000030004140000000704000029000000040440008c000013000000613d0000001f022000390000000f04000029000000000242016f00000005050000290000000001510049000000000121001900000ad60200004100000ad60410009c0000000001028019000000600110021000000ad60450009c000000000402001900000000040540190000004004400210000000000141019f00000ad60430009c0000000002034019000000c002200210000000000112019f0000000302000029000000000202004b000012f30000c13d00000007020000292b532b490000040f000012f90000013d00000adf011001c700008009020000390000000303000029000000070400002900000000050000192b532b490000040f00030000000103550000000003010019000000600330027000010ad60030019d00000ad60430019700000001022001900000131e0000613d000000050100002900000ae10110009c0000000d040000290000000b070000290000000c05000029000011b90000213d0000000506000029000000400060043f0000000401000029000000000016043500000ad601000041000000000200041400000ad60320009c000000000201801900000ad60360009c00000000010640190000004001100210000000c002200210000000000112019f00000ae2011001c70000ffff0550018f00000ada064001970000800d02000039000000040300003900000b5c040000412b532b490000040f000000010120019000000f7d0000613d000000000100001900002b540001042e000000400200043d0000001f0340018f00000005044002720000132b0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000013230000413d000000000503004b0000133a0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b55000104300002000000000002000000000301041a000000010430019000000001053002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000010550018f000000000554004b000013790000c13d0000000005620436000000000204004b0000136e0000613d000200000006001d000100000005001d000000000010043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f00000001022001900000137f0000613d0000000206000029000000000206004b000013750000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000013660000413d000013770000013d000001000100008a000000000113016f0000000000150435000000000106004b00000020010000390000000001006019000013770000013d000000000100001900000001050000290000000001150019000000000001042d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000000100001900002b550001043000120000000000020000000003000031000000040130008a00000ad902000041000000df0410008c0000000004000019000000000402201900000ad901100197000000000501004b000000000200801900000ad90110009c00000000010400190000000001026019000000000101004b000013990000613d00000002020003670000000401200370000000000c01043b00000ada01c0009c000013990000213d0000002401200370000000000b01043b0000ffff01b0008c0000139b0000a13d000000000100001900002b55000104300000004401200370000000000d01043b0000008401200370000000000401043b00000ae10140009c000013990000213d000000230140003900000ad905000041000000000631004b0000000006000019000000000605801900000ad90730019700000ad901100197000000000871004b0000000005008019000000000171013f00000ad90110009c00000000010600190000000001056019000000000101004b000013990000c13d0000000401400039000000000112034f000000000101043b00000ae10510009c000013990000213d00000024044000390000000005410019000000000535004b000013990000213d000000a405200370000000000a05043b00000ae108a0019700000ae105a0009c000013990000213d000000c405200370000000000605043b00000ae10560009c000013990000213d00000004056000390000000007530049001200000008001d00000ad908000041000000600970008c0000000009000019000000000908401900000ad90770019700110000000a001d000000000a07004b000000000800a01900000ad90770009c00000000070900190000000007086019000000000707004b000013990000c13d000000000752034f000000000e07043b00000ada07e0009c000013990000213d0000002407600039000000000772034f000000000f07043b00000ada07f0009c000013990000213d0000004407600039000000000772034f0000000006630049000000230860008a000000000607043b00000ad907000041000000000986004b0000000009000019000000000907801900000ad90880019700000ad90a60019700100000000b001d000000000b8a004b000000000700801900000000088a013f00000ad90880009c000000000709c019000000000707004b000013990000c13d0000000005560019000000000252034f000000000202043b00000ae10620009c000013990000213d0000000006230049000000200350003900000ad905000041000000000763004b0000000007000019000000000705201900000ad90660019700000ad908300197000000000968004b0000000005008019000000000668013f00000ad90660009c000000000507c019000000000505004b000013990000c13d000a0000000f001d000b0000000e001d000c0000000d001d000d0000000c001d0000003f05100039000000200600008a000f00000006001d000000000565016f000000400600043d0000000005560019000e00000006001d000000000665004b0000000006000019000000010600403900000ae10750009c000017dc0000213d0000000106600190000017dc0000c13d000000400050043f0000001f0610018f0000000e05000029000000000515043600000002044003670000000507100272000014240000613d00000000080000190000000509800210000000000a950019000000000994034f000000000909043b00000000009a04350000000108800039000000000978004b0000141c0000413d000000000806004b000014330000613d0000000507700210000000000474034f00000000077500190000000306600210000000000807043300000000086801cf000000000868022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000484019f0000000000470435000000000115001900000000000104350000003f012000390000000f04000029000000000141016f000000400400043d0000000001140019000900000004001d000000000441004b0000000004000019000000010400403900000ae10510009c000017dc0000213d0000000104400190000017dc0000c13d0000000004000031000000400010043f000000090100002900000000012104360000000005320019000000000445004b000013990000213d0000001f0420018f00000002033003670000000505200272000014560000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b0000144e0000413d000000000604004b000014650000613d0000000505500210000000000353034f00000000055100190000000304400210000000000605043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f000000000035043500000000012100190000000000010435000000090100002900000000010104330000000602000039000000000202041a000000ff022001900000148e0000c13d000000000101004b000014a20000c13d00000064010000390000000201100367000000000101043b001200000001001d00000b350100004100000000001004390000000001000412000800000001001d00000004001004430000004001000039000700000001001d000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000201004b000014e60000c13d00000ae50100004100000000001004350000001201000039000000040010043f00000ae60100004100002b5500010430000000210110008c000014b70000213d000000400100043d000000440210003900000b5103000041000000000032043500000024021000390000001c03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000640210003900000b52030000410000000000320435000000440210003900000b5303000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000090100002900000022011000390000000001010433000800000001001d000000100100002900000000001004350000000201000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b00000001020000390000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f00000012030000290000000102200190000013990000613d000000000101043b000000000201041a0000000001320019000000000221004b000000000200001900000001020040390000000102200190000015430000613d00000ae50100004100000000001004350000001101000039000000040010043f00000ae60100004100002b5500010430000000120200002900000000311200d9000400000003001d0000000001320049000500000001001d00000000020004110000000d01000029000600000002001d000000000121004b000015080000c13d0000000d03000029000000000103004b000015d20000c13d000000400100043d000000640210003900000b63030000410000000000320435000000440210003900000b6403000041000000000032043500000024021000390000002103000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000d0100002900000000001004350000000901000039000300000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000060200002900000ada02200197000200000002001d0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000201041a000000010100008a000100000002001d000000000112004b000014f00000613d00000005010000290000000102000029000000000112004b0000156c0000813d000000400100043d000000440210003900000b5903000041000000000032043500000024021000390000001d03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000000201004b000015570000c13d000000400100043d000000440210003900000b5003000041000000000032043500000024021000390000001a03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b55000104300000000802000029000000000112004b0000146f0000813d000000400100043d000000440210003900000b4f03000041000000000032043500000024021000390000001b03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b55000104300000000d01000029000000000101004b000015840000c13d000000400100043d000000640210003900000b57030000410000000000320435000000440210003900000b5803000041000000000032043500000024021000390000002403000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000201000029000000000101004b0000159c0000c13d000000400100043d000000640210003900000b55030000410000000000320435000000440210003900000b5603000041000000000032043500000024021000390000002203000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000d0100002900000000001004350000000301000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b00000002020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000d050000290000000102200190000013990000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b540400004100000002060000292b532b490000040f0000000d030000290000000101200190000013990000613d00000000003004350000000801000039000300000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000201041a0000000501000029000200000002001d000000000112004b000015fb0000813d000000400100043d000000640210003900000b61030000410000000000320435000000440210003900000b6203000041000000000032043500000024021000390000002203000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000000d0100002900000000001004350000000301000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000d050000290000000102200190000013990000613d000000050300002900000002020000290000000002320049000000000101043b000000000021041b0000000a01000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5a04000041000300000003001d00000000060000192b532b490000040f0000000101200190000013990000613d00000012010000290000000402000029000000000121004b0000163d0000c13d000000400100043d000000440210003900000b6003000041000000000032043500000024021000390000001903000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000b35010000410000000000100439000000080100002900000004001004430000000701000029000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000201004b000014880000613d000000050200002900000000211200d9000000400200043d000700000002001d00000b480210009c000016680000413d0000000703000029000000440130003900000b4c02000041000000000021043500000024013000390000001a02000039000000000021043500000b3101000041000000000013043500000004013000390000002002000039000000000021043500000ad60100004100000ad60230009c0000000001034019000000400110021000000b39011001c700002b55000104300000000704000029000000200240003900000b65030000410000000000320435000000c001100210000000410240003900000000001204350000001101000029000000c0011002100000006902400039000000000012043500000021014000390000000c020000290000000000210435000000060100002900000ada011001970000004902400039000000000012043500000071024000390000000e060000290000000001060433000000000301004b000016870000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b000016800000413d0000000002210019000000000002043500000051021000390000000703000029000000000023043500000090011000390000000f02000029000000000221016f0000000001320019000000000221004b0000000002000019000000010200403900000ae10310009c000017dc0000213d0000000102200190000017dc0000c13d000000400010043f00000010010000290000ffff0110018f0000000002000416000600000002001d000e00000001001d00000000001004350000000101000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f0000000004056019001200000004001d0000001f0440008c00000000040000190000000104002039000000010440018f000000000443004b000016bd0000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000400400043d001000000004001d00000012050000290000000004540436001100000004001d000000000303004b000016d40000613d000000000010043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d0000001202000029000000000202004b0000172d0000c13d0000000001000019000016dc0000013d000001000100008a000000000112016f000000110200002900000000001204350000001201000029000000000101004b0000002001000039000000000100601900000010030000290000001102000029000000000232004900000000011200190000001f011000390000000f02000029000000000221016f0000000001320019000000000221004b0000000002000019000000010200403900000ae10310009c000017dc0000213d0000000102200190000017dc0000c13d000000400010043f00000010020000290000000002020433000000000202004b000017040000c13d000000640210003900000b5e030000410000000000320435000000440210003900000b5f03000041000000000032043500000024021000390000003003000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000000007010000290000000001010433001200000001001d0000000e0100002900000000001004350000000301000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000101041a000000000201004b00002710010060390000001202000029000000000121004b000017390000813d000000400100043d000000440210003900000b5d03000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000000201043b000000000100001900000011030000290000000003310019000000000402041a0000000000430435000000010220003900000020011000390000001203000029000000000331004b0000172f0000413d000016dc0000013d00000b3501000041000000000010043900000008010000290000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b00000b4502000041000000000020043900000ada01100197001200000001001d000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000102200190000013990000613d000000000101043b000000000101004b000013990000613d000000400400043d0000002401400039000000c002000039000000000021043500000b5b01000041000000000014043500000004014000390000000e02000029000000000021043500000010020000290000000002020433000000c4034000390000000000230435001100000004001d000000e403400039000000000402004b000017750000613d0000000004000019000000000534001900000020044000390000001006000029000000000664001900000000060604330000000000650435000000000524004b0000176d0000413d000000000432001900000000000404350000001f022000390000000f04000029000000000242016f00000000023200190000000003120049000000110400002900000044044000390000000000340435000000070300002900000000030304330000000002320436000000000403004b0000178d0000613d0000000004000019000000000524001900000020044000390000000706000029000000000664001900000000060604330000000000650435000000000534004b000017850000413d000000000423001900000000000404350000000a0400002900000ada044001970000001106000029000000840560003900000000004504350000000b0400002900000ada04400197000000640560003900000000004504350000001f033000390000000f04000029000000000343016f00000000032300190000000001130049000000a4026000390000000000120435000000090100002900000000020104330000000001230436000000000302004b000017ad0000613d0000000003000019000000000413001900000020033000390000000905000029000000000553001900000000050504330000000000540435000000000423004b000017a50000413d0000000003120019000000000003043500000000030004140000001204000029000000040440008c000017d90000613d0000001f022000390000000f04000029000000000242016f00000011050000290000000001510049000000000121001900000ad60200004100000ad60410009c0000000001028019000000600110021000000ad60450009c000000000402001900000000040540190000004004400210000000000141019f00000ad60430009c0000000002034019000000c002200210000000000112019f0000000602000029000000000202004b000017cc0000c13d00000012020000292b532b490000040f000017d20000013d00000adf011001c700008009020000390000000603000029000000120400002900000000050000192b532b490000040f00030000000103550000000003010019000000600330027000010ad60030019d00000ad6043001970000000102200190000017fc0000613d000000110100002900000ae10110009c000017e20000a13d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b55000104300000001104000029000000400040043f0000000501000029000000000014043500000ad601000041000000000200041400000ad60320009c000000000201801900000ad60340009c00000000010440190000004001100210000000c002200210000000000112019f00000ae2011001c70000000d0200002900000ada062001970000800d02000039000000040300003900000b5c040000410000000e050000290000000c070000292b532b490000040f0000000101200190000013990000613d000000000100001900002b540001042e000000400200043d0000001f0340018f0000000504400272000018090000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000018010000413d000000000503004b000018180000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b550001043000030000000000020000000001000416000000000101004b000018710000c13d000000040100008a000000000110003100000ad902000041000000200310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000018710000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000018710000213d00000000001004350000000101000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000018710000613d000000000601043b000000000206041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000018580000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000400100043d0000000007510436000000000303004b000018730000613d000300000005001d000100000007001d000200000001001d000000000060043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f0000000102200190000018710000613d0000000306000029000000000206004b000018aa0000c13d000000000500001900000002010000290000000107000029000018790000013d000000000100001900002b5500010430000001000300008a000000000232016f0000000000270435000000000205004b00000020050000390000000005006019000000000217004900000000025200190000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b0000000002000019000000010200403900000ae10340009c0000189c0000213d00000001022001900000189c0000c13d000000400040043f0000000002010433000000000302004b000018a20000c13d000000440240003900000b6603000041000000000032043500000024024000390000001d03000039000000000032043500000b3102000041000000000024043500000004024000390000002003000039000000000032043500000ad60200004100000ad60340009c00000000010200190000000001044019000000400110021000000b39011001c700002b550001043000000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000130320008c000018b60000213d00000ae50100004100000000001004350000001101000039000000040010043f00000ae60100004100002b5500010430000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000365004b000018ae0000413d000018790000013d000000140220008a2b5329440000040f0000000002010019000000400100043d000300000001001d2b530a490000040f0000000304000029000000000141004900000ad60200004100000ad60310009c000000000102801900000ad60340009c000000000204401900000040022002100000006001100210000000000121019f00002b540001042e00030000000000020000000001000416000000000101004b000019190000c13d000000040100008a000000000110003100000ad902000041000000400310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000019190000c13d00000002010003670000000402100370000000000202043b000300000002001d00000ada0220009c000019190000213d0000002401100370000000000101043b000200000001001d0000000001000411000100000001001d00000000001004350000000901000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000019190000613d000000000101043b00000003020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000019190000613d000000000101043b000000000101041a0000000203000029000000000231004b0000191b0000813d000000400100043d000000640210003900000b67030000410000000000320435000000440210003900000b6803000041000000000032043500000024021000390000002503000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000000100001900002b55000104300000000003310049000000010100002900000003020000292b532a3b0000040f0000000101000039000000400200043d000000000012043500000ad60100004100000ad60320009c0000000001024019000000400110021000000b2e011001c700002b540001042e000b0000000000020000000001000416000000000101004b0000193f0000c13d0000000001000031000000040210008a00000ad903000041000000400420008c0000000004000019000000000403401900000ad902200197000000000502004b000000000300a01900000ad90220009c00000000020400190000000002036019000000000202004b0000193f0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000019410000a13d000000000100001900002b55000104300000002403200370000000000303043b00000ae10430009c0000193f0000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b0000193f0000c13d0000000404300039000000000442034f000000000504043b00000ae10450009c0000193f0000213d00000024083000390000000003850019000000000113004b0000193f0000213d000000400a00043d000000000100041a00000ada011001970000000003000411000000000131004b000019b90000c13d000000000182034f0000001f0650018f000000200ba000390000000507500272000019710000613d0000000002000019000000050320021000000000043b0019000000000331034f000000000303043b00000000003404350000000102200039000000000372004b000019690000413d000000000206004b000019800000613d0000000502700210000000000121034f00000000022b00190000000303600210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000000015b0019000000000200041000000060022002100000000000210435000000140150003900000000001a04350000005301500039000000200400008a000000000141016f00000000011a00190000000002a1004b0000000002000019000000010200403900000ae10310009c000019b30000213d0000000102200190000019b30000c13d00050000000b001d00040000000a001d000800000004001d000600000007001d000700000006001d000000400010043f00000000009004350000000101000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000b00000005001d000a00000009001d000900000008001d2b532b4e0000040f00000009050000290000000a040000290000000b0700002900000001022001900000193f0000613d000000000601043b0000000401000029000000000c01043300000ae101c0009c00000007080000290000000609000029000000080a000029000000050b000029000019c90000a13d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b55000104300000004401a0003900000b3802000041000000000021043500000b310100004100000000001a04350000002401a00039000000200200003900000000002104350000000401a00039000000000021043500000ad60100004100000ad602a0009c00000000010a4019000000400110021000000b39011001c700002b5500010430000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000019da0000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000200130008c00001a030000413d000100000003001d00020000000c001d000300000006001d000000000060043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f00000009050000290000000a040000290000000b0700002900000001022001900000193f0000613d000000020c0000290000001f02c0003900000005022002700000002003c0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000007080000290000000609000029000000080a0000290000000306000029000000050b00002900001a030000813d000000000002041b0000000102200039000000000312004b000019ff0000413d0000001f01c0008c00001a380000a13d00020000000c001d000300000006001d000000000060043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f00000001022001900000193f0000613d0000000802000029000000020700002900000000032701700000002002000039000000000101043b000000040600002900001a230000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b00001a1b0000413d000000000373004b00001a2e0000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000b070000290000000a04000029000000070800002900000006090000290000000905000029000000080a000029000000030600002900001a430000013d00000000010c004b000000000100001900001a3c0000613d00000000010b04330000000302c00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102c00210000000000121019f000000000016041b000000400100043d00000020021000390000004003000039000000000032043500000000004104350000004002100039000000000072043500000060021000390000000203500367000000000409004b00001a580000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b00001a500000413d000000000408004b00001a670000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f00000ad60300004100000ad60410009c0000000001038019000000400110021000000ad60420009c00000000020380190000006002200210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c70000800d02000039000000010300003900000b69040000412b532b490000040f00000001012001900000193f0000613d000000000100001900002b540001042e00050000000000020000000001000416000000000101004b00001ab80000c13d0000000001000031000000040210008a00000ad903000041000000800420008c0000000004000019000000000403401900000ad902200197000000000502004b000000000300a01900000ad90220009c00000000020400190000000002036019000000000202004b00001ab80000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00001ab80000213d0000002403200370000000000a03043b0000ffff03a0008c00001ab80000213d0000006403200370000000000303043b00000ae10430009c00001ab80000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b00001ab80000c13d0000000404300039000000000242034f000000000402043b00000ae10240009c00001ab80000213d00000024053000390000000002540019000000000112004b00001aba0000a13d000000000100001900002b5500010430000000000100041a00000ada011001970000000002000411000000000121004b00001b410000c13d00000b3501000041000000000010043900000000010004120000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c70000800502000039000500000004001d000400000009001d00030000000a001d000200000005001d2b532b4e0000040f000000010220019000001ab80000613d000000000101043b00000b4502000041000000000020043900000ada01100197000100000001001d000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000205000029000000030400002900000004030000290000000508000029000000010220019000001ab80000613d000000000101043b000000000101004b00001ab80000613d000000400900043d0000002401900039000000000041043500000b6a0100004100000000001904350000000401900039000000000031043500000044010000390000000201100367000000000101043b00000064029000390000008003000039000000000032043500000044029000390000000000120435000000840190003900000000008104350000001f0280018f000000a4019000390000000203500367000000050480027200001b080000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00001b000000413d000000000502004b00001b170000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00001b390000613d0000001f04800039000000200300008a000000000534016f00000b6b0300004100000b6b0450009c000000000503801900000ad60300004100000ad60490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f00000ad60410009c0000000001038019000000c001100210000000000115019f00000b6c01100041000500000009001d2b532b490000040f00000005090000290000000003010019000000600330027000010ad60030019d00000ad6043001970003000000010355000000010220019000001b550000613d00000b480190009c00001b520000413d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400090043f000000000100001900002b540001042e000000400200043d0000001f0340018f000000050440027200001b620000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001b5a0000413d000000000503004b00001b710000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b550001043000110000000000020000000001000031000000040210008a00000ad9030000410000007f0420008c0000000004000019000000000403201900000ad902200197000000000502004b000000000300801900000ad90220009c00000000020400190000000002036019000000000202004b00001cfa0000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c00001cfa0000213d0000002403200370000000000303043b00000ae10430009c00001cfa0000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b00001cfa0000c13d0000000404300039000000000442034f000000000904043b00000ae10490009c00001cfa0000213d000000240c300039000000000dc9001900000000031d004b00001cfa0000213d0000004403200370000000000a03043b00000ae103a0009c00001cfa0000213d0000006403200370000000000303043b00000ae10430009c00001cfa0000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b00001cfa0000c13d0000000404300039000000000242034f000000000402043b00000ae10240009c00001cfa0000213d0000002402300039001000000002001d0000000002240019001100000002001d000000000112004b00001cfa0000213d0000000000b004350000000501000039000a00000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000e00000009001d000d0000000a001d000b0000000b001d000f0000000c001d000c00000004001d00090000000d001d2b532b4e0000040f0000000f030000290000000e07000029000000010220019000001cfa0000613d000000400200043d0000001f0870018f0000000203300367000000000101043b000000050970027200001bf20000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b00001bea0000413d000000000408004b00001c010000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000700000009001d000800000008001d0000000003720019000000000013043500000b6d0100004100000b6d0370009c000000000107401900000ad603000041000000000400041400000ad60540009c000000000403801900000ad60520009c00000000020380190000004002200210000000600110021000000b2e01100041000600000001001d000000000112019f000000c002400210000000000112019f00000adf011001c700008010020000392b532b4e0000040f00000001022001900000000d0200002900001cfa0000613d000000000101043b0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000c05000029000000010220019000001cfa0000613d000000000101043b000000000601041a000000000106004b00001c420000c13d000000400100043d000000640210003900000b71030000410000000000320435000000440210003900000b7203000041000000000032043500000024021000390000002303000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300000003f01500039000000200700008a000000000871016f000000400100043d0000000002810019000000000312004b0000000003000019000000010300403900000ae10420009c00001db60000213d000000010330019000001db60000c13d000200000008001d000300000007001d000400000006001d0000000003000031000000400020043f00000000025104360000001104000029000000000334004b00001cfa0000213d0000001f0350018f000500000003001d00000010030000290000000203300367000000050750027200001c660000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001c5e0000413d000100000007001d0000000504000029000000000404004b00001c790000613d00000001040000290000000504400210000000000343034f000000000442001900000005050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c030000290000000003320019000000000003043500000ad60300004100000ad60420009c00000000020380190000004002200210000000000101043300000ad60410009c00000000010380190000006001100210000000000121019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f000000010220019000001cfa0000613d000000000101043b0000000402000029000000000121004b00001cfc0000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f00000001022001900000000f0300002900001cfa0000613d000000400200043d0000000203300367000000000101043b0000000707000029000000000407004b00001cb10000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001ca90000413d0000000804000029000000000404004b00001cc30000613d00000007040000290000000504400210000000000343034f000000000442001900000008050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000003320019000000000013043500000ad60100004100000ad60320009c000000000201801900000040022002100000000603000029000000000232019f000000000300041400000ad60430009c0000000001034019000000c001100210000000000121019f00000adf011001c700008010020000392b532b4e0000040f00000001022001900000000d0200002900001cfa0000613d000000000101043b0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f00000009070000290000000f060000290000000e05000029000000010220019000001cfa0000613d000000000101043b000000000001041b0000003f015000390000000302000029000000000121016f000000400200043d0000000001120019000000000321004b0000000003000019000000010300403900000ae10410009c00001db60000213d000000010330019000001db60000c13d0000000003000031000000400010043f0000000001520436000000000337004b00001d110000a13d000000000100001900002b5500010430000000400100043d000000640210003900000b6e030000410000000000320435000000440210003900000b6f03000041000000000032043500000024021000390000002103000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000000002036003670000000707000029000000000407004b00001d1e0000613d000000000400001900000005054002100000000006510019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001d160000413d0000000804000029000000000404004b00001d300000613d00000007040000290000000504400210000000000343034f000000000441001900000008050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e0300002900000000013100190000000000010435000000400400043d00000002010000290000000001140019000000000341004b0000000003000019000000010300403900000ae10510009c0000000c0500002900001db60000213d000000010330019000001db60000c13d0000000003000031000000400010043f00000000015404360000001105000029000000000335004b00001cfa0000213d000000100300002900000002033003670000000108000029000000000508004b00001d520000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b00001d4a0000413d0000000505000029000000000505004b00001d640000613d00000001050000290000000505500210000000000353034f000000000551001900000005060000290000000306600210000000000705043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f00000000003504350000000c03000029000000000131001900000000000104350000000b010000290000000d030000292b5325720000040f000000400100043d0000002002100039000000800300003900000000003204350000000b02000029000000000021043500000080021000390000000e030000290000000000320435000000a0021000390000000f0300002900000002033003670000000707000029000000000407004b00001d820000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001d7a0000413d0000000804000029000000000404004b00001d940000613d00000007040000290000000504400210000000000343034f000000000442001900000008050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000002320019000000000002043500000060021000390000000404000029000000000042043500000040021000390000000d040000290000000000420435000000bf023000390000000303000029000000000232016f00000ad60300004100000ad60410009c0000000001038019000000400110021000000ad60420009c00000000020380190000006002200210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c70000800d02000039000000010300003900000b70040000412b532b490000040f000000010120019000001cfa0000613d000000000100001900002b540001042e00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b550001043000030000000000020000000001000416000000000101004b00001dd70000c13d000000040100008a000000000110003100000ad902000041000000600310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b00001dd70000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c00001dd70000213d0000002402100370000000000402043b0000ffff0240008c00001dd90000a13d000000000100001900002b55000104300000004401100370000000000501043b000000000100041a00000ada011001970000000002000411000000000121004b00001df40000c13d000000000105004b00001e050000c13d000000400100043d000000440210003900000b7503000041000000000032043500000024021000390000001503000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000100000005001d00000000003004350000000201000039000000200010043f00000ad6010000410000000002000414000200000003001d00000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000300000004001d2b532b4e0000040f0000000303000029000000010220019000001dd70000613d000000000101043b0000000000300435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f00000003040000290000000203000029000000010220019000001dd70000613d000000000101043b0000000105000029000000000051041b000000400100043d0000004002100039000000000052043500000020021000390000000000420435000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000b73011001c70000800d02000039000000010300003900000b74040000412b532b490000040f000000010120019000001dd70000613d000000000100001900002b540001042e00050000000000020000000001000416000000000101004b00001e570000c13d0000000001000031000000040210008a00000ad903000041000000400420008c0000000004000019000000000403401900000ad902200197000000000502004b000000000300a01900000ad90220009c00000000020400190000000002036019000000000202004b00001e570000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00001e590000a13d000000000100001900002b55000104300000002403200370000000000303043b00000ae10430009c00001e570000213d000000230430003900000ad905000041000000000614004b0000000006000019000000000605801900000ad90710019700000ad904400197000000000874004b0000000005008019000000000474013f00000ad90440009c00000000040600190000000004056019000000000404004b00001e570000c13d0000000404300039000000000242034f000000000402043b00000ae10240009c00001e570000213d00000024053000390000000002540019000000000112004b00001e570000213d000000000100041a00000ada011001970000000002000411000000000121004b00001e9f0000c13d00000000009004350000000101000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000500000004001d000400000009001d000300000005001d2b532b4e0000040f000000030600002900000004050000290000000509000029000000010220019000001e570000613d000000000401043b000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b00001eb00000613d00000ae50100004100000000001004350000002201000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000200130008c00001ed30000413d000100000003001d000200000004001d000000000040043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f000000030600002900000004050000290000000509000029000000010220019000001e570000613d0000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000020400002900001ed30000813d000000000002041b0000000102200039000000000312004b00001ecf0000413d0000001f0190008c00001f020000a13d000200000004001d000000000040043500000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000ae2011001c700008010020000392b532b4e0000040f000000030600002900000004050000290000000509000029000000010220019000001e570000613d000000200200008a0000000003290170000000000101043b000000000200001900001ef20000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b00001eea0000413d000000000393004b00001efe0000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf000000020400002900001f0e0000013d000000000109004b000000000100001900001f070000613d0000000201600367000000000101043b0000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000000510435000000400210003900000000009204350000001f0390018f00000060021000390000000204600367000000050590027200001f240000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001f1c0000413d000000000603004b00001f330000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f00000ad60300004100000ad60410009c0000000001038019000000400110021000000ad60420009c00000000020380190000006002200210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c70000800d02000039000000010300003900000b76040000412b532b490000040f000000010120019000001e570000613d000000000100001900002b540001042e00010000000000020000000001000416000000000101004b000020290000c13d000000040100008a000000000110003100000ad902000041000000800310008c0000000003000019000000000302401900000ad901100197000000000401004b000000000200a01900000ad90110009c00000000010300190000000001026019000000000101004b000020290000c13d00000002030003670000000401300370000000000101043b0000ffff0210008c000020290000213d0000002402300370000000000202043b0000ffff0420008c000020290000213d0000004403300370000000000303043b00000ada0330009c000020290000213d000000400500043d0000004403500039000000000400041000000000004304350000002403500039000000000023043500000b770200004100000000002504350000000402500039000000000012043500000064010000390000000201100367000000000101043b000100000005001d0000006402500039000000000012043500000b3501000041000000000010043900000000010004120000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000020290000613d000000000201043b000000000100041400000ada02200197000000040320008c00001f950000c13d00000003010003670000000103000031000000010800002900001fa80000013d00000ad60300004100000ad60410009c0000000001038019000000010500002900000ad60450009c00000000030540190000004003300210000000c001100210000000000131019f00000b32011001c72b532b4e0000040f00000001080000290000000003010019000000600330027000010ad60030019d00000ad6033001970003000000010355000000010220019000001ffe0000613d0000001f0230018f000000050430027200001fb40000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001fac0000413d000000000502004b00001fc30000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f02300039000000200100008a000000000412016f0000000002840019000000000442004b0000000004000019000000010400403900000ae10520009c00001ff80000213d000000010440019000001ff80000c13d00000ad904000041000000200530008c0000000005000019000000000504401900000ad906300197000000000706004b000000000400a01900000ad90660009c000000000405c019000000400020043f000000000404004b000020290000c13d0000000104000029000000000404043300000ae10540009c000020290000213d0000000106000029000000000563001900000000036400190000001f0430003900000ad906000041000000000754004b0000000007000019000000000706801900000ad90440019700000ad908500197000000000984004b0000000006008019000000000484013f00000ad90440009c00000000040700190000000004066019000000000404004b000020290000c13d000000004303043400000ae10630009c00001ff80000213d0000003f06300039000000000116016f000000000121001900000ae10610009c000020240000a13d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400200043d0000001f0430018f00000005033002720000200b0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000020030000413d000000000504004b0000201a0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b5500010430000000400010043f00000000013204360000000006430019000000000556004b0000202b0000a13d000000000100001900002b5500010430000000000503004b000020350000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000635004b0000202e0000413d00000000011300190000000000010435000000400100043d000100000001001d2b530a490000040f0000000104000029000000000141004900000ad60200004100000ad60310009c000000000102801900000ad60340009c000000000204401900000040022002100000006001100210000000000121019f00002b540001042e000000000101004b000020480000613d000000000001042d000000400100043d000000640210003900000b78030000410000000000320435000000440210003900000b7903000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300008000000000002000000000b020019000000000a000414000000400500043d000000440250003900000080060000390000000000620435000000200650003900000b7a0200004100000000002604350000ffff0210018f0000002401500039000500000002001d000000000021043500000000020b0433000000a4015000390000000000210435000000c401500039000000000702004b000020790000613d0000000007000019000000000817001900000020077000390000000009b7001900000000090904330000000000980435000000000827004b000020720000413d000000000712001900000000000704350000001f02200039000000200700008a000800000007001d000000000272016f000000a0072000390000008408500039000000000078043500000ae1073001970000006403500039000400000007001d0000000000730435000000000212001900000000910404340000000002120436000000000301004b000020930000613d000000000300001900000000072300190000002003300039000000000843001900000000080804330000000000870435000000000713004b0000208c0000413d0000000003210019000000000003043500000000025200490000001f011000390000000803000029000000000131016f0000000001120019000000200210008a00000000002504350000001f01100039000000000131016f0000000003510019000000000113004b0000000001000019000000010100403900000ae10230009c000021ba0000213d0000000101100190000021ba0000c13d000000400030043f00000b7b0130009c000021ba0000213d0000000002000410000000c001300039000000400010043f0000009601000039000700000003001d000000000c130436000000000100003100000002011003670000000003000019000000050730021000000000087c0019000000000771034f000000000707043b00000000007804350000000103300039000000050730008c000020b20000413d000000040120008c000600000004001d00030000000b001d000020c10000c13d00000001020000390000000101000031000020da0000013d00000ad60100004100000ad60360009c000000000301001900000000030640190000004003300210000000000505043300000ad60650009c00000000050180190000006005500210000000000335019f00000ad605a0009c00000000010a4019000000c001100210000000000113019f000200000009001d00010000000c001d2b532b490000040f000000010c00002900000002090000290000000604000029000000010220018f0003000000010355000000600110027000010ad60010019d00000ad601100197000000960310008c00000096050000390000000005014019000000070100002900000000005104350000000101000031000000000115004b000021b80000213d00000003030003670000001f0150018f0000000508500272000020ef0000613d0000000005000019000000050650021000000000076c0019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b000020e70000413d000000000501004b000020fe0000613d0000000505800210000000000353034f00000000065c00190000000301100210000000000506043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000160435000000000102004b000021b70000c13d00000ad60100004100000ad60290009c000000000201001900000000020940190000004002200210000000000304043300000ad60430009c00000000030180190000006003300210000000000223019f000000000300041400000ad60430009c0000000001034019000000c001100210000000000121019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000021b80000613d000000000101043b000200000001001d000000050100002900000000001004350000000501000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f00000003070000290000000102200190000021b80000613d000000400200043d000000000301043b0000000001070433000000000401004b000021320000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b0000212b0000413d0000000004210019000000000034043500000ad60300004100000ad60420009c00000000020380190000004002200210000000200110003900000ad60410009c00000000010380190000006001100210000000000121019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000021b80000613d000000000101043b00000004020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000030800002900000006070000290000000102200190000021b80000613d000000000101043b0000000202000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000050200002900000000002104350000000002080433000000a0031000390000000000230435000000c003100039000000000402004b0000216e0000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b000021670000413d000000000432001900000000000404350000004004100039000000040500002900000000005404350000001f022000390000000804000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000403004b000021860000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000217f0000413d000000000423001900000000000404350000001f033000390000000804000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000070700002900000000030704330000000002320436000000000403004b0000219c0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000021950000413d0000001f043000390000000805000029000000000454016f000000000323001900000000000304350000000002120049000000000242001900000ad60300004100000ad60420009c0000000002038019000000600220021000000ad60410009c00000000010380190000004001100210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c70000800d02000039000000010300003900000b7c040000412b532b490000040f0000000101200190000021b80000613d000000000001042d000000000100001900002b550001043000000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b55000104300009000000000002000700000006001d000800000003001d000000000f020019000000000d010019000000000200003100000b480150009c000023170000813d0000003f01500039000000200b00008a0000000001b1016f000000400e00043d00000000011e00190000000003e1004b0000000003000019000000010300403900000ae10610009c000023170000213d0000000103300190000023170000c13d000000400010043f00000000015e04360000000003450019000000000223004b0000231d0000213d0000001f0250018f00000002034003670000000504500272000021e60000613d0000000006000019000000050c600210000000000ac10019000000000cc3034f000000000c0c043b0000000000ca04350000000106600039000000000a46004b000021de0000413d000000000602004b000021f50000613d0000000504400210000000000343034f00000000044100190000000302200210000000000604043300000000062601cf000000000626022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000262019f000000000024043500000000015100190000000000010435000000000200003100000ae10190009c000023170000213d0000003f019000390000000001b1016f000000400a00043d00000000011a00190000000003a1004b0000000003000019000000010300403900000ae10410009c000023170000213d0000000103300190000023170000c13d000000400010043f00000000019a04360000000003890019000000000223004b0000231d0000213d0000001f0290018f00000002038003670000000504900272000022170000613d000000000500001900000005065002100000000008610019000000000663034f000000000606043b00000000006804350000000105500039000000000645004b0000220f0000413d00020000000f001d00030000000e001d00040000000a001d00050000000d001d000600000007001d00090000000b001d000000000502004b0000222c0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001910019000000000001043500000b350100004100000000001004390000000001000412000100000001001d00000004001004430000004001000039000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000000090800002900000006090000290000000507000029000000040a000029000000030b00002900000002050000290000231d0000613d000000000101043b000000000201004b0000231f0000613d000000080200002900000000121200d900000b480120009c000023250000813d000000400100043d000000200310003900000b65040000410000000000430435000000c002200210000000410310003900000000002304350000000702000029000000c0022002100000006903100039000000000023043500000021021000390000000000520435000000000200041100000ada0220019700000049031000390000000000230435000000710310003900000000020b0433000000000402004b000022690000613d0000000004000019000000000534001900000020044000390000000006b4001900000000060604330000000000650435000000000524004b000022620000413d00000000033200190000000000030435000000510320003900000000003104350000009002200039000000000282016f000000000b12001900000000022b004b0000000002000019000000010200403900000ae103b0009c000023170000213d0000000102200190000023170000c13d0000004000b0043f0000004402b00039000000a0030000390000000000320435000000000200041000000ada022001970000002403b00039000000000023043500000b4b0200004100000000022b0436000700000002001d0000ffff0370018f0000000402b0003900000000003204350000000003010433000000a404b000390000000000340435000000c404b00039000000000503004b000022930000613d000000000500001900000000064500190000002005500039000000000715001900000000070704330000000000760435000000000635004b0000228c0000413d00000000014300190000000000010435000000000109004b0000000001000019000000010100c0390000006405b0003900000000001504350000001f01300039000000000181016f0000000001410019000000000221004900080000000b001d0000008403b00039000000000023043500000000050a04330000000004510436000000000105004b000022ad0000613d0000000001000019000000000241001900000020011000390000000003a1001900000000030304330000000000320435000000000251004b000022a60000413d000600000004001d000500000005001d0000000001450019000000000001043500000b3501000041000000000010043900000001010000290000000400100443000000240000044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f00000001022001900000000904000029000000080a0000290000231d0000613d000000000201043b000000000100041400000ada02200197000000040320008c000022cc0000c13d0000000103000031000000400130008c00000040040000390000000004034019000023060000013d00000005030000290000001f03300039000000000343016f00000006040000290000000004a40049000000000334001900000ad60400004100000ad605a0009c000000000504001900000000050a4019000000400550021000000ad60630009c00000000030480190000006003300210000000000353019f00000ad60510009c0000000001048019000000c001100210000000000131019f2b532b4e0000040f000000080a0000290000000003010019000000600330027000000ad603300197000000400430008c000000400400003900000000040340190000001f0540018f0000000506400272000022f30000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000022eb0000413d000000000705004b000023020000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000102200190000023370000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b0000000002000019000000010200403900000ae10410009c000023170000213d0000000102200190000023170000c13d000000400010043f000000400130008c0000231d0000413d00000000010a043300000007020000290000000002020433000000000001042d00000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000000100001900002b550001043000000ae50100004100000000001004350000001201000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b4c03000041000000000032043500000024021000390000001a03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400200043d0000001f0430018f0000000503300272000023440000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b0000233c0000413d000000000504004b000023530000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b5500010430000d00000000000200010000000a001d000800000009001d000700000008001d000d00000007001d000c00000006001d000400000005001d000500000004001d000600000003001d000300000002001d000900000001001d00000000010004100000000002000411000000000212004b000024ce0000c13d00000ada0210019700000b7e0110009c000b00000002001d000023cd0000413d00000000002004350000000901000039000a00000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d000000000101043b0000000b020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d000000000101043b000000000301041a000000010100008a000000000113004b0000000b02000029000023cd0000613d0000000d01000029000000000113004b0000254b0000413d000200000003001d000000000102004b0000255d0000613d00000000002004350000000a01000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d000000000101043b0000000b020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d0000000d0200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b54040000410000000b0500002900000000060500192b532b490000040f0000000101200190000023cf0000c13d000024cc0000013d000000000102004b000025100000613d0000000c0100002900000ada01100198000c00000001001d000024e00000613d0000000b0100002900000000001004350000000801000039000a00000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d0000000a02000029000000000101043b000000000301041a0000000d01000029000200000003001d000000000113004b000024f50000413d0000000b010000290000000000100435000000200020043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d0000000d0200002900000002030000290000000002230049000000000101043b000000000021041b0000000c0100002900000000001004350000000a01000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000024cc0000613d000000000101043b000000000201041a0000000d030000290000000002320019000000000021041b000000400100043d000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5a040000410000000b050000290000000c060000292b532b490000040f0000000101200190000024cc0000613d000000400100043d0000000d02000029000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c700000009020000290000ffff0520018f0000800d02000039000000030300003900000b7f04000041000b00000005001d0000000c060000292b532b490000040f0000000101200190000024cc0000613d00000b450100004100000000001004390000000c01000029000000040010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000102200190000024cc0000613d000000000101043b000000000101004b000024cc0000613d000000400b00043d0000002401b00039000000c002000039000000000021043500000b800100004100000000001b0435000000c401b00039000000060a0000290000000000a104350000000401b000390000000b0200002900000000002104350000001f02a0018f000000e403b00039000000030400002900000002044003670000000505a00272000024650000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000245d0000413d000000000602004b0000000809000029000024750000613d0000000505500210000000000454034f00000000055300190000000302200210000000000605043300000000062601cf000000000626022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000262019f00000000002504350000000002a3001900000000000204350000008402b000390000000d0400002900000000004204350000006402b0003900000004040000290000000000420435000000050200002900000ae1022001970000004404b0003900000000002404350000001f04a00039000000200a00008a0000000004a4016f00000000044300190000000001140049000000a403b0003900000000001304350000001f0390018f0000000001940436000000070400002900000002044003670000000505900272000024970000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000248f0000413d000000000603004b000024a60000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000391001900000000000304350000000c02000029000000040320008c000024c80000613d0000001f039000390000000003a3016f0000000003b30049000000000113001900000ad60500004100000ad603b0009c000000000305001900000000030b4019000000400330021000000ad60410009c00000000010580190000006001100210000000000131019f000000010400002900000ad60340009c00000000030500190000000003044019000000c003300210000000000131019f000d0000000b001d2b532b490000040f0000000d0b0000290000000003010019000000600330027000010ad60030019d00000ad60430019700030000000103550000000102200190000025250000613d00000b4801b0009c0000250a0000813d0000004000b0043f000000000001042d000000000100001900002b5500010430000000400100043d000000440210003900000b7d03000041000000000032043500000024021000390000001f03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000640210003900000b83030000410000000000320435000000440210003900000b8403000041000000000032043500000024021000390000002303000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400100043d000000640210003900000b81030000410000000000320435000000440210003900000b8203000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000640210003900000b85030000410000000000320435000000440210003900000b8603000041000000000032043500000024021000390000002503000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400200043d0000001f0340018f0000000504400272000025320000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000252a0000413d000000000503004b000025410000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000ad601000041000000010300003100000ad60430009c000000000301801900000ad60420009c000000000102401900000040011002100000006002300210000000000112019f00002b5500010430000000400100043d000000440210003900000b5903000041000000000032043500000024021000390000001d03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000640210003900000b57030000410000000000320435000000440210003900000b5803000041000000000032043500000024021000390000002403000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000d000000000002000000000a0200190000000056040434000000000206004b000028d20000613d00000001024000390000000002020433000000ff02200190000025ab0000613d000000010220008c000028ea0000c13d000000200260008c000028fc0000a13d000000280260008c000028ba0000a13d000000480260008c0000290e0000a13d000000510260008c000028ba0000413d000c00000003001d000300000005001d0000002d024000390000000002020433000700000002001d00000029024000390000000002020433000800000002001d000000400800043d00000051074000390000000002070433000100000002001d00000049024000390000000002020433000400000002001d000000510960008c000d0000000a001d000900000004001d000500000008001d000026170000613d0000001f0290019000000000030000190000002003006039000000000523019f00000000025800190000000003920019000000000632004b000025a60000813d000000000675001900000000650604340000000002520436000000000532004b000025a20000413d00000000009804350000001f03200039000000200200008a000000000223016f000026180000013d000b00000001001d000000290160008c000029320000c13d00000029014000390000000001010433000c00000001001d0000002d014000390000000001010433000d00000001001d00000b35010000410000000000100439000000000100041200000004001004430000004001000039000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000d04000029000000600340027000000b8f0440009c00000000040300190000dead040040390000000102200190000028b80000613d000000000101043b0000000c0200002900000ae10220019800000000352100a9000025d10000613d00000000322500d9000000000112004b000028cc0000c13d000000000104004b000029200000613d0000000a01000039000000000201041a000000000252001a000028cc0000413d000000000021041b00000000004004350000000801000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000d00000004001d000c00000005001d2b532b4e0000040f0000000102200190000028b80000613d000000000101043b000000000201041a0000000c030000290000000002320019000000000021041b000000400100043d000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5a0400004100000000050000190000000d060000292b532b490000040f0000000d060000290000000101200190000028b80000613d000000400100043d0000000c02000029000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000000b020000290000ffff0520018f0000800d02000039000000030300003900000b7f040000412b532b490000040f0000000101200190000028b70000c13d000028b80000013d0000000002080436000000400020043f0000ffff0110018f000b00000001001d00000000001004350000000701000039000200000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000400200043d000000000301043b0000000d070000290000000001070433000000000401004b000026370000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b000026300000413d0000000004210019000000000034043500000ad60300004100000ad60420009c00000000020380190000004002200210000000200110003900000ad60410009c00000000010380190000006001100210000000000121019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b0000000c0200002900000ae102200197000a00000002001d0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b000000000101041a000600000001001d00000b35010000410000000000100439000000000100041200000004001004430000004001000039000000240010044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b43011001c700008005020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b000000080200002900000ae10220019800000000342100a9000c00000004001d000026790000613d0000000c0300002900000000322300d9000000000112004b000028cc0000c13d0000000601000029000000ff01100190000600000001001d000026f20000c13d000000000100041000000ada04100198000029200000613d0000000a01000039000000000201041a0000000c03000029000000000232001a000028cc0000413d000000000021041b00000000004004350000000801000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c70000801002000039000800000004001d2b532b4e0000040f0000000102200190000028b80000613d000000000101043b000000000201041a0000000c030000290000000002320019000000000021041b000000400100043d000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5a04000041000000000500001900000008060000292b532b490000040f0000000101200190000028b80000613d0000000b0100002900000000001004350000000201000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000400200043d000000000301043b0000000d070000290000000001070433000000000401004b000026c90000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b000026c20000413d0000000004210019000000000034043500000ad60300004100000ad60420009c00000000020380190000004002200210000000200110003900000ad60410009c00000000010380190000006001100210000000000121019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b0000000a020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000701000029000000600210027000000b45010000410000000000100439000800000002001d000000040020044300000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b46011001c700008002020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b000000000101004b0000270b0000613d0000000601000029000000000101004b0000271f0000613d00000000020004140000000d0b000029000027220000013d000000400100043d0000000802000029000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000010300003900000b8a040000412b532b490000040f0000000101200190000028b70000c13d000028b80000013d000000010100002900000ae1021001970000000d0b0000290000000001000414000000400300043d000000440430003900000100050000390000000000540435000000200430003900000b8805000041000000000054043500000024053000390000000b06000029000000000065043500000000060b0433000001240730003900000000006704350000014407300039000000000806004b0000273b0000613d000000000800001900000000097800190000002008800039000000000ab80019000000000a0a04330000000000a90435000000000968004b000027340000413d00000000087600190000000000080435000000c4083000390000000c090000290000000000980435000000a4083000390000000809000029000000000098043500000084083000390000000409000029000000000098043500000064083000390000000a0900002900000000009804350000001f06600039000000200800008a000c00000008001d000000000686016f00000000067600190000000005560049000000e4073000390000000000570435000000050a00002900000000050a04330000000006560436000000000705004b0000275e0000613d0000000007000019000000000867001900000020077000390000000009a7001900000000090904330000000000980435000000000857004b000027570000413d000000000765001900000000000704350000010407300039000000000027043500000000023600490000001f055000390000000c06000029000000000565016f0000000002250019000000200520008a00000000005304350000001f02200039000000000262016f0000000006320019000000000226004b0000000002000019000000010200403900000ae10560009c000028e40000213d0000000102200190000028e40000c13d000000400060043f00000b7b0260009c000028e40000213d0000000002000410000000c005600039000000400050043f0000009605000039000800000006001d000000000956043600000000050000310000000205500367000000000600001900000005076002100000000008790019000000000775034f000000000707043b00000000007804350000000106600039000000050760008c0000277f0000413d000000040520008c0000278c0000c13d00000001070000390000000101000031000027a10000013d00000ad60500004100000ad60640009c00000000040580190000004004400210000000000303043300000ad60630009c00000000030580190000006003300210000000000343019f00000ad60410009c0000000001058019000000c001100210000000000113019f000700000009001d2b532b490000040f0000000709000029000000010720018f0003000000010355000000600110027000010ad60010019d00000ad601100197000000960210008c00000096030000390000000003014019000000080100002900000000003104350000000101000031000000000113004b000028b80000213d00000003020003670000001f0130018f0000000503300272000027b60000613d000000000400001900000005054002100000000006590019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000027ae0000413d000700000007001d000000000401004b0000000905000029000027c70000613d0000000503300210000000000232034f00000000033900190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f000000000013043500000ad601000041000000030300002900000ad60230009c000000000201001900000000020340190000004002200210000000000305043300000ad60430009c00000000030180190000006003300210000000000223019f000000000300041400000ad60430009c0000000001034019000000c001100210000000000121019f00000adf011001c700008010020000392b532b4e0000040f0000000703000029000000000303004b000028110000613d0000000102200190000028b80000613d000000000201043b000000400100043d000000600300003900000000043104360000000d090000290000000003090433000000600510003900000000003504350000008005100039000000000603004b000027f20000613d000000000600001900000000075600190000002006600039000000000896001900000000080804330000000000870435000000000736004b000027eb0000413d00000000055300190000000000050435000000400510003900000000002504350000000a0200002900000000002404350000009f023000390000000c03000029000000000232016f00000ad60300004100000ad60410009c0000000001038019000000400110021000000ad60420009c00000000020380190000006002200210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c70000800d02000039000000020300003900000b89040000410000000b050000292b532b490000040f0000000101200190000028b70000c13d000028b80000013d00000009030000290000000102200190000028b80000613d000000000101043b000700000001001d0000000b0100002900000000001004350000000501000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000400200043d000000000301043b0000000d070000290000000001070433000000000401004b000028320000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b0000282b0000413d0000000004210019000000000034043500000ad60300004100000ad60420009c00000000020380190000004002200210000000200110003900000ad60410009c00000000010380190000006001100210000000000121019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b0000000a020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000028b80000613d000000000101043b0000000702000029000000000021041b000000400100043d0000002002100039000000a00300003900000000003204350000000b0200002900000000002104350000000d070000290000000002070433000000a0031000390000000000230435000000c003100039000000000402004b0000286d0000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000028660000413d0000000004320019000000000004043500000040041000390000000a0500002900000000005404350000001f022000390000000c04000029000000000242016f0000000002320019000000000312004900000060041000390000000000340435000000090700002900000000030704330000000002320436000000000403004b000028860000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000287f0000413d000000000423001900000000000404350000001f033000390000000c04000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000080700002900000000030704330000000002320436000000000403004b0000289c0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000028950000413d0000001f043000390000000c05000029000000000454016f000000000323001900000000000304350000000002120049000000000242001900000ad60300004100000ad60420009c0000000002038019000000600220021000000ad60410009c00000000010380190000004001100210000000000112019f000000000200041400000ad60420009c0000000002038019000000c002200210000000000112019f00000adf011001c70000800d02000039000000010300003900000b7c040000412b532b490000040f0000000101200190000028b80000613d000000000001042d000000000100001900002b5500010430000000400100043d000000440210003900000b8c03000041000000000032043500000024021000390000001403000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000ae50100004100000000001004350000001101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b9103000041000000000032043500000024021000390000001303000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000ae50100004100000000001004350000004101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b8703000041000000000032043500000024021000390000001c03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000440210003900000b8d03000041000000000032043500000024021000390000001503000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000440210003900000b8b03000041000000000032043500000024021000390000001503000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000440210003900000b9003000041000000000032043500000024021000390000001f03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000440210003900000b8e03000041000000000032043500000024021000390000001803000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000000030100190000001f0100008a000000000112004b000029630000813d0000000001030433000000000121004b000029690000413d000000400100043d000000000402004b000029600000613d0000001f0420019000000000050000190000002005006039000000000645019f00000000041600190000000005240019000000000754004b0000295b0000813d000000000336001900000000360304340000000004640436000000000654004b000029570000413d00000000002104350000001f02400039000000200300008a000000000232016f000029610000013d0000000002010436000000400020043f000000000001042d00000ae50100004100000000001004350000001101000039000000040010043f00000ae60100004100002b5500010430000000400100043d000000440210003900000b9203000041000000000032043500000024021000390000001103000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000000100041a00000ada011001970000000002000411000000000121004b000029810000c13d000000000001042d000000400100043d000000440210003900000b3803000041000000000032043500000b310200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b550001043000000ada022001970000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000029a10000613d000000000101043b000000000001042d000000000100001900002b55000104300005000000000002000500000003001d00000ada01100198000029fc0000613d00000ada02200198000200000002001d00002a110000613d000300000001001d00000000001004350000000801000039000400000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000029fa0000613d0000000402000029000000000101043b000000000301041a0000000501000029000100000003001d000000000113004b00002a260000413d00000003010000290000000000100435000000200020043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000029fa0000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000020100002900000000001004350000000401000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000029fa0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d000000000031043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5a04000041000000030500002900000002060000292b532b490000040f0000000101200190000029fa0000613d000000000001042d000000000100001900002b5500010430000000400100043d000000640210003900000b85030000410000000000320435000000440210003900000b8603000041000000000032043500000024021000390000002503000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400100043d000000640210003900000b83030000410000000000320435000000440210003900000b8403000041000000000032043500000024021000390000002303000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400100043d000000640210003900000b81030000410000000000320435000000440210003900000b8203000041000000000032043500000024021000390000002603000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000300000000000200000ada0110019800002a780000613d000200000003001d00000ada02200198000300000002001d00002a8d0000613d000100000001001d00000000001004350000000901000039000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000102200190000000030400002900002a760000613d000000000101043b0000000000400435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f0000000306000029000000010220019000002a760000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b540400004100000001050000292b532b490000040f000000010120019000002a760000613d000000000001042d000000000100001900002b5500010430000000400100043d000000640210003900000b57030000410000000000320435000000440210003900000b5803000041000000000032043500000024021000390000002403000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400100043d000000640210003900000b55030000410000000000320435000000440210003900000b5603000041000000000032043500000024021000390000002203000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b55000104300005000000000002000300000003001d000400000002001d00000ada01100197000500000001001d00000000001004350000000901000039000100000001001d000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000002b0b0000613d000000000101043b000000040200002900000ada02200197000400000002001d0000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000002b0b0000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b00002b0a0000613d00000003010000290000000202000029000000000112004b00002b0d0000413d0000000501000029000000000101004b00002b1f0000613d0000000401000029000000000101004b00002b340000613d000000050100002900000000001004350000000101000029000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000002b0b0000613d000000000101043b00000004020000290000000000200435000000200010043f00000ad601000041000000000200041400000ad60320009c0000000001024019000000c00110021000000b3c011001c700008010020000392b532b4e0000040f000000010220019000002b0b0000613d000000030200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000ad602000041000000000300041400000ad60430009c000000000302801900000ad60410009c00000000010280190000004001100210000000c002300210000000000112019f00000ae2011001c70000800d02000039000000030300003900000b5404000041000000050500002900000004060000292b532b490000040f000000010120019000002b0b0000613d000000000001042d000000000100001900002b5500010430000000400100043d000000440210003900000b5903000041000000000032043500000024021000390000001d03000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b39011001c700002b5500010430000000400100043d000000640210003900000b57030000410000000000320435000000440210003900000b5803000041000000000032043500000024021000390000002403000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b5500010430000000400100043d000000640210003900000b55030000410000000000320435000000440210003900000b5603000041000000000032043500000024021000390000002203000039000000000032043500000b3102000041000000000021043500000004021000390000002003000039000000000032043500000ad60200004100000ad60310009c0000000001028019000000400110021000000b32011001c700002b550001043000002b4c002104210000000102000039000000000001042d0000000002000019000000000001042d00002b51002104230000000102000039000000000001042d0000000002000019000000000001042d00002b530000043200002b540001042e00002b55000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000df8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf496e746572706f727420546f6b656e00000000000000000000000000000000004954500000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000002540be40000000002000000000000000000000000000001000000010000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000008cfd8f5b00000000000000000000000000000000000000000000000000000000c446183300000000000000000000000000000000000000000000000000000000eab45d9b00000000000000000000000000000000000000000000000000000000ed629c5b00000000000000000000000000000000000000000000000000000000f5ecbdbb00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000fc0c546a00000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000eab45d9c00000000000000000000000000000000000000000000000000000000eaffd49a00000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000e6a20ae600000000000000000000000000000000000000000000000000000000c446183400000000000000000000000000000000000000000000000000000000cbed8b9c00000000000000000000000000000000000000000000000000000000d1deba1f000000000000000000000000000000000000000000000000000000009f38369900000000000000000000000000000000000000000000000000000000a6c3d16400000000000000000000000000000000000000000000000000000000b353aaa600000000000000000000000000000000000000000000000000000000b353aaa700000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000a6c3d16500000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a4c51df500000000000000000000000000000000000000000000000000000000950c8a7300000000000000000000000000000000000000000000000000000000950c8a740000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009bdb9812000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000009358928b000000000000000000000000000000000000000000000000000000003d8b38f50000000000000000000000000000000000000000000000000000000066ad5c8900000000000000000000000000000000000000000000000000000000715018a50000000000000000000000000000000000000000000000000000000076203b470000000000000000000000000000000000000000000000000000000076203b4800000000000000000000000000000000000000000000000000000000857749b000000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007533d7880000000000000000000000000000000000000000000000000000000066ad5c8a00000000000000000000000000000000000000000000000000000000695ef6bf0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000447705140000000000000000000000000000000000000000000000000000000044770515000000000000000000000000000000000000000000000000000000004c42899a000000000000000000000000000000000000000000000000000000005b8c41e6000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000003f1f4fa40000000000000000000000000000000000000000000000000000000042d65a8d000000000000000000000000000000000000000000000000000000000df374820000000000000000000000000000000000000000000000000000000023b872dc00000000000000000000000000000000000000000000000000000000365260b300000000000000000000000000000000000000000000000000000000365260b400000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000000df374830000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000007e0db160000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000093f0e2700000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000001584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a45db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0000000000000000000000000000000000000040000000000000000000000000df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c74f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000064000000000000000000000000204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d757374206265020000000000000000000000000000000000004000000000000000000000000022ad9585a395edc8067b50da4778cafbb7fa2c4bbd7619fad6aeba403857fd740175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9ffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000001f7ecdf700000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000010ddb13700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f40a7bb10000000000000000000000000000000000000000000000000000000004f4654436f72653a20616d6f756e745344206f766572666c6f7700000000000042d65a8d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff9b4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d757374206265208c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efc580310000000000000000000000000000000000000000000000000000000000d81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a4c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f74204f4654436f72653a20616d6f756e7420746f6f20736d616c6c00000000000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f2061646472657301000000000000000000000000000000000000000000000000000000000000004c7a4170703a206e6f20747275737465642070617468207265636f7264000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cecbed8b9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5b00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdf64000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737302000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dabf5ecbdbc000000000000000000000000000000000000000000000000000000006e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f66ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265000000000000000000000000010000000000000000000000000000000000000000bf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf7fcf35da00000000000000000000000000000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061644f4654436f72653a20756e6b6e6f776e207061636b6574207479706500000000eaffd49a00000000000000000000000000000000000000000000000000000000b8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd8849aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d746f427974657333325f6f75744f66426f756e64730000000000000000000000746f55696e7436345f6f75744f66426f756e6473000000000000000000000000746f416464726573735f6f75744f66426f756e647300000000000000000000004f4654436f72653a20696e76616c6964207061796c6f61640000000000000000000000000000000000000000000000000000000100000000000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300746f55696e74385f6f75744f66426f756e647300000000000000000000000000736c6963655f6f75744f66426f756e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014da6de63f5a32467216aa542ff0005cbd39e4a9cc5f379ad3e62fcb02af6841

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

0x0000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da

-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da

-----Encoded View---------------


[ 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.