ERC-20
DeFi
Overview
Max Total Supply
126,053.753920639321381169 GRAI
Holders
15,806
Market
Price
$0.9746 @ 0.000243 ETH (-0.03%)
Onchain Market Cap
$122,849.22
Circulating Supply Market Cap
$1,193,784.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
10.747880024567644103 GRAIValue
$10.47 ( ~0.00261160642226758 ETH) [0.0085%]Loading...
Loading
Loading...
Loading
Loading...
Loading
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 Name:
GravitaDebtToken
Compiler Version
v0.8.12+commit.f00d7308
ZkSolc Version
v1.3.11
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../token/oft/v2/OFTV2.sol"; /// @title Gravita Debt Token /// @notice This contract locks tokens on source, on outgoing send(), and unlocks tokens when receiving from other chains. contract GravitaDebtToken is OFTV2 { constructor(address _layerZeroEndpoint) OFTV2("Gravita Debt Token", "GRAI", _layerZeroEndpoint) {} }
// 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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; } _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; _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; } _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 {} }
// 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); }
// 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); }
// 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; } }
// 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; } }
// 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); }
// 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); }
// 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; }
// 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; }
// 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 = 10_000; 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); } }
// 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); } }
// 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); }
// 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; }
// 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 constant sharedDecimals = 6; 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(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) { require(_lzEndpoint != address(0), "Invalid address"); } /************************************************************************ * 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 if (!_isContract(_to)) { emit NonContractAddress(_to); return; } 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); mapping(uint64 => bool) storage nonces = creditedPackets[_srcChainId][_srcAddress]; bool credited = nonces[_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); nonces[_nonce] = true; } // 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 view virtual returns (uint64) { uint amountSD = _amount / _ld2sdRate(); require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow"); return uint64(amountSD); } function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) { return _amountSD * _ld2sdRate(); } function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) { dust = _amount % _ld2sdRate(); amountAfter = _amount - dust; } function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND, _toAddress, _amountSD); } function _decodeSendPayload(bytes memory _payload) internal view virtual 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 view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload); } function _decodeSendAndCallPayload(bytes memory _payload) internal view virtual 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./fee/BaseOFTWithFee.sol"; contract OFTV2 is BaseOFTWithFee, ERC20 { event EmergencyStopMintingCollateral(address _asset, bool state); event WhitelistChanged(address _whitelisted, bool whitelisted); event GravitaAddressesChanged(address _borrowerOperationsAddress, address _stabilityPoolAddress, address _vesselManagerAddress); mapping(address => bool) public emergencyStopMintingCollateral; uint internal immutable ld2sdRate; address public borrowerOperationsAddress; address public stabilityPoolAddress; address public vesselManagerAddress; // stores SC addresses that are allowed to mint/burn the token (FeeCollector, AMO strategies) mapping(address => bool) public whitelistedContracts; constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) BaseOFTWithFee(_lzEndpoint) { uint8 decimals = decimals(); ld2sdRate = 10 ** (decimals - sharedDecimals); } function _requireCallerIsBorrowerOperations() internal view { require(msg.sender == borrowerOperationsAddress, "DebtToken: Caller is not BorrowerOperations"); } function _requireCallerIsBOorVesselMorSP() internal view { require(msg.sender == borrowerOperationsAddress || msg.sender == vesselManagerAddress || msg.sender == stabilityPoolAddress, "DebtToken: Caller is neither BorrowerOperations nor VesselManager nor StabilityPool"); } function _requireCallerIsWhitelistedContract() internal view { require(whitelistedContracts[msg.sender], "DebtToken: Caller is not a whitelisted SC"); } /************************************************************************ * public functions ************************************************************************/ function emergencyStopMinting(address _asset, bool status) external onlyOwner { emergencyStopMintingCollateral[_asset] = status; emit EmergencyStopMintingCollateral(_asset, status); } function circulatingSupply() public view virtual override returns (uint) { return totalSupply(); } function token() public view virtual override returns (address) { return address(this); } function mint(address _asset, address _account, uint256 _amount) external { _requireCallerIsBorrowerOperations(); require(!emergencyStopMintingCollateral[_asset], "Mint is blocked on this collateral"); _mint(_account, _amount); } function burn(address _account, uint256 _amount) external { _requireCallerIsBOorVesselMorSP(); _burn(_account, _amount); } function mintFromWhitelistedContract(uint256 _amount) external { _requireCallerIsWhitelistedContract(); _mint(msg.sender, _amount); } function burnFromWhitelistedContract(uint256 _amount) external { _requireCallerIsWhitelistedContract(); _burn(msg.sender, _amount); } function sendToPool(address _sender, address _poolAddress, uint256 _amount) external { _requireCallerIsStabilityPool(); _transfer(_sender, _poolAddress, _amount); } function returnFromPool(address _poolAddress, address _receiver, uint256 _amount) external { _requireCallerIsVesselMorSP(); _transfer(_poolAddress, _receiver, _amount); } function setAddresses(address _borrowerOperationsAddress, address _stabilityPoolAddress, address _vesselManagerAddress) public onlyOwner { require(_isContract(_borrowerOperationsAddress), "Invalid contract address"); require(_isContract(_stabilityPoolAddress), "Invalid contract address"); require(_isContract(_vesselManagerAddress), "Invalid contract address"); borrowerOperationsAddress = _borrowerOperationsAddress; stabilityPoolAddress = _stabilityPoolAddress; vesselManagerAddress = _vesselManagerAddress; emit GravitaAddressesChanged(_borrowerOperationsAddress, _stabilityPoolAddress, _vesselManagerAddress); } function addWhitelist(address _address) external onlyOwner { whitelistedContracts[_address] = true; emit WhitelistChanged(_address, true); } function removeWhitelist(address _address) external onlyOwner { whitelistedContracts[_address] = false; emit WhitelistChanged(_address, false); } /************************************************************************ * 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) { _requireValidRecipient(_toAddress); _mint(_toAddress, _amount); return _amount; } function _transferFrom(address _from, address _to, uint _amount) internal virtual override returns (uint) { _requireValidRecipient(_to); 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 _requireValidRecipient(address _recipient) internal view { require(_recipient != address(0) && _recipient != address(this), "DebtToken: Cannot transfer tokens directly to the token contract or the zero address"); } function _ld2sdRate() internal view virtual override returns (uint) { return ld2sdRate; } function _requireCallerIsStabilityPool() internal view { require(msg.sender == stabilityPoolAddress, "DebtToken: Caller is not the StabilityPool"); } function _requireCallerIsVesselMorSP() internal view { require(msg.sender == vesselManagerAddress || msg.sender == stabilityPoolAddress, "DebtToken: Caller is neither VesselManager nor StabilityPool"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../OFTCoreV2.sol"; import "./IOFTWithFee.sol"; import "./Fee.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; abstract contract BaseOFTWithFee is OFTCoreV2, Fee, ERC165, IOFTWithFee { constructor(address _lzEndpoint) OFTCoreV2(_lzEndpoint) {} /************************************************************************ * public functions ************************************************************************/ function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams) public payable virtual override { (_amount, ) = _payOFTFee(_from, _dstChainId, _amount); _amount = _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount"); } function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) public payable virtual override { (_amount, ) = _payOFTFee(_from, _dstChainId, _amount); _amount = _sendAndCall(_from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount"); } /************************************************************************ * public view functions ************************************************************************/ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IOFTWithFee).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); function _transferFrom(address _from, address _to, uint _amount) internal virtual override(Fee, OFTCoreV2) returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract Fee is Ownable { uint public constant BP_DENOMINATOR = 10_000; mapping(uint16 => FeeConfig) public chainIdToFeeBps; uint16 public defaultFeeBp; address public feeOwner; // defaults to owner struct FeeConfig { uint16 feeBP; bool enabled; } event SetFeeBp(uint16 dstchainId, bool enabled, uint16 feeBp); event SetDefaultFeeBp(uint16 feeBp); event SetFeeOwner(address feeOwner); constructor() { feeOwner = owner(); } function setDefaultFeeBp(uint16 _feeBp) public virtual onlyOwner { require(_feeBp <= BP_DENOMINATOR, "Fee: fee bp must be <= BP_DENOMINATOR"); defaultFeeBp = _feeBp; emit SetDefaultFeeBp(defaultFeeBp); } function setFeeBp(uint16 _dstChainId, bool _enabled, uint16 _feeBp) public virtual onlyOwner { require(_feeBp <= BP_DENOMINATOR, "Fee: fee bp must be <= BP_DENOMINATOR"); chainIdToFeeBps[_dstChainId] = FeeConfig({feeBP: _feeBp, enabled: _enabled}); emit SetFeeBp(_dstChainId, _enabled, _feeBp); } function setFeeOwner(address _feeOwner) public virtual onlyOwner { require(_feeOwner != address(0x0), "Fee: feeOwner cannot be 0x"); feeOwner = _feeOwner; emit SetFeeOwner(_feeOwner); } function quoteOFTFee(uint16 _dstChainId, uint _amount) public view virtual returns (uint fee) { FeeConfig memory config = chainIdToFeeBps[_dstChainId]; if (config.enabled) { fee = (_amount * config.feeBP) / BP_DENOMINATOR; } else if (defaultFeeBp > 0) { fee = (_amount * defaultFeeBp) / BP_DENOMINATOR; } else { fee = 0; } } function _payOFTFee(address _from, uint16 _dstChainId, uint _amount) internal virtual returns (uint amount, uint fee) { fee = quoteOFTFee(_dstChainId, _amount); unchecked { amount = _amount - fee; } if (fee > 0) { _transferFrom(_from, feeOwner, fee); } } function _transferFrom(address _from, address _to, uint _amount) internal virtual returns (uint); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "../ICommonOFT.sol"; /** * @dev Interface of the IOFT core standard */ interface IOFTWithFee 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 * `_minAmount` the minimum amount of tokens to receive on dstChain * `_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, uint _minAmount, LzCallParams calldata _callParams) external payable; function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable; }
// 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; } }
// 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) } } }
{ "compilerPath": "", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"address","name":"_asset","type":"address"},{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"EmergencyStopMintingCollateral","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_borrowerOperationsAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_stabilityPoolAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_vesselManagerAddress","type":"address"}],"name":"GravitaAddressesChanged","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":"feeBp","type":"uint16"}],"name":"SetDefaultFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"dstchainId","type":"uint16"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint16","name":"feeBp","type":"uint16"}],"name":"SetFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeOwner","type":"address"}],"name":"SetFeeOwner","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whitelisted","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"WhitelistChanged","type":"event"},{"inputs":[],"name":"BP_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","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":[],"name":"borrowerOperationsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFromWhitelistedContract","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":"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":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToFeeBps","outputs":[{"internalType":"uint16","name":"feeBP","type":"uint16"},{"internalType":"bool","name":"enabled","type":"bool"}],"stateMutability":"view","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":[],"name":"defaultFeeBp","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"emergencyStopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"emergencyStopMintingCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"feeOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFromWhitelistedContract","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"quoteOFTFee","outputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","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":"_poolAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"returnFromPool","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_minAmount","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"},{"internalType":"uint256","name":"_minAmount","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":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_poolAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendToPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_borrowerOperationsAddress","type":"address"},{"internalType":"address","name":"_stabilityPoolAddress","type":"address"},{"internalType":"address","name":"_vesselManagerAddress","type":"address"}],"name":"setAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_feeBp","type":"uint16"}],"name":"setDefaultFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint16","name":"_feeBp","type":"uint16"}],"name":"setFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeOwner","type":"address"}],"name":"setFeeOwner","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":[],"name":"stabilityPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"inputs":[],"name":"vesselManagerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000f7be4cdee1689c83f0a711374b2d93820e6b73a61a40ea27c49894c2f53000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da
Deployed Bytecode
0x000400000000000200060000000000020000000003010019000000600330027000000e7e043001970003000000410355000200000001035500000e7e0030019d000100000000001f0000000101200190000000380000c13d0000008001000039000000400010043f0000000001000031000000040210008c000000770000413d0000000202000367000000000202043b000000e00220027000000e910320009c000000790000213d00000ec60320009c000000a50000a13d00000ec70320009c000000e40000a13d00000ec80120009c0000015d0000213d00000ecf0120009c000002680000a13d00000ed00120009c000003d50000613d00000ed10120009c000006520000613d00000ed20120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f20b0e0000040f0000000002010019000000400100043d000600000001001d39f208230000040f0000000604000029000000000141004900000e7e0200004100000e7e0310009c000000000102801900000e7e0340009c000000000204401900000040022002100000006001100210000000000121019f000039f30001042e000000c001000039000000400010043f0000000001000416000000000110004c000000770000c13d00000000020000310000001f01200039000000200300008a000000000431016f000000400100043d0000000003140019000000000443004b0000000004000019000000010400403900000e7f0530009c000000de0000213d0000000104400190000000de0000c13d000000400030043f0000001f0320018f00000002040003670000000505200272000000580000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000000500000413d000000000630004c000000670000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000e8003000041000000200420008c0000000004000019000000000403401900000e8002200197000000000520004c000000000300a01900000e800220009c00000000020400190000000002036019000000000220004c000000770000c13d000000000101043300000e810410019700000e810110009c000000d10000a13d0000000001000019000039f40001043000000e920320009c000000b50000a13d00000e930320009c0000010a0000a13d00000e940120009c000001800000213d00000e9b0120009c000002780000a13d00000e9c0120009c000003e30000613d00000e9d0120009c0000066a0000613d00000e9e0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000000601000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ee10320009c0000012e0000213d00000eee0120009c000001a30000a13d00000eef0120009c000002880000a13d00000ef00120009c000003ef0000613d00000ef10120009c000003fb0000613d00000ef20120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000004f80000013d00000ead0120009c000001470000213d00000eba0120009c000001bf0000a13d00000ebb0120009c000002a80000a13d00000ebc0120009c000004070000613d00000ebd0120009c000004180000613d00000ebe0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f20bbb0000040f39f236e90000040f000000400300043d00000020043000390000000000240435000000000013043500000e7e0100004100000e7e0230009c0000000001034019000000400110021000000efc011001c7000039f30001042e000000400300043d00000e820130009c000000de0000213d0000004001300039000000400010043f000000200130003900000e8302000041000000000021043500000012010000390000000000130435000000400500043d00000e820150009c000002310000a13d00000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000ed50320009c000001e10000a13d00000ed60320009c000002c10000a13d00000ed70120009c000004270000613d00000ed80120009c000004400000613d00000ed90120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000001201000039000000000101041a00000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ea10320009c000001f50000a13d00000ea20320009c000002d10000a13d00000ea30120009c0000044c0000613d00000ea40120009c0000045e0000613d00000ea50120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000400100043d0000000102000039000000000021043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000efa011001c7000039f30001042e00000ee20320009c000002070000a13d00000ee30120009c000002f10000a13d00000ee40120009c0000046a0000613d00000ee50120009c0000047a0000613d00000ee60120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f208500000040f39f210860000040f0000000101000039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000eae0120009c0000021c0000a13d00000eaf0120009c000003010000a13d00000eb00120009c0000048b0000613d00000eb10120009c000004a80000613d00000eb20120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2087e0000040f39f227be0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000ec90120009c000003200000a13d00000eca0120009c000004b40000613d00000ecb0120009c000006780000613d00000ecc0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000000100041a00000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000e950120009c000003300000a13d00000e960120009c000004ce0000613d00000e970120009c0000068a0000613d00000e980120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000000100041000000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ef50120009c0000034a0000213d00000ef80120009c000004e90000613d00000ef90120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2080d0000040f00000efd0110019700000efe0210009c0000000002000019000000010200603900000eff0110009c00000000010000190000000101006039000000000121019f000000010110018f000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ec10120009c0000035a0000213d00000ec40120009c000004f50000613d00000ec50120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000000401000039000000000101041a00000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000edc0120009c000003770000213d00000edf0120009c000005100000613d00000ee00120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f20a060000040f000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ea80120009c0000037f0000213d00000eab0120009c000005210000613d00000eac0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2087e0000040f39f225680000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000ee90320009c0000038f0000213d00000eec0120009c000005250000613d00000eed0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2087e0000040f39f20f3f0000040f0000000101000039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000eb50120009c000003ad0000213d00000eb80120009c000005310000613d00000eb90120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f208500000040f39f20e340000040f0000000101000039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e000500000003001d0000004001500039000000400010043f000000200150003900000e840200004100000000002104350000000401000039000400000005001d0000000000150435000000000100041a00000e85021001970000000006000411000000000262019f000000000020041b00000e7e02000041000000400500043d0000000003000414000600000004001d00000e7e0430009c000000000302801900000e7e0450009c000300000005001d00000000020540190000004004200210000000c00230021000000e8105100197000200000004001d000000000142019f00000e86011001c70000800d02000039000000030300003900000e8704000041000100000006001d39f239e80000040f00000006030000290000000101200190000000770000613d000000800030043f000000000130004c000006960000c13d0000000303000029000000440130003900000e8c02000041000000000021043500000024013000390000000f02000039000000000021043500000e8d010000410000000000130435000000040130003900000020020000390000000000210435000000020100002900000e8e011001c7000039f40001043000000ed30120009c0000053d0000613d00000ed40120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f207bb0000040f39f21c610000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000e9f0120009c000005530000613d00000ea00120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f20cbb0000040f39f21ede0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000ef30120009c0000055f0000613d00000ef40120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000001101000039000000000101041a00000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ebf0120009c0000056e0000613d00000ec00120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f21a3a0000040f0000000002010019000000400100043d000600000001001d39f208230000040f0000000604000029000000000141004900000e7e0200004100000e7e0310009c000000000102801900000e7e0340009c000000000204401900000040022002100000006001100210000000000121019f000039f30001042e00000eda0320009c0000057a0000613d00000edb0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f2395c0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000ea60320009c000005820000613d00000ea70120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000000901000039000000000101041a0000ffff0110018f000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000ee70120009c0000058a0000613d00000ee80120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f208e70000040f39f2293e0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000eb30120009c000005960000613d00000eb40120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000200310008c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d00000004010000390000000201100367000000000101043b39f2271c0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000ecd0120009c000005b20000613d00000ece0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f20b6e0000040f39f238dd0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000e990120009c000005be0000613d00000e9a0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f20d170000040f000000000304001939f214a10000040f0000000002010019000000400100043d000600000001001d39f208230000040f0000000604000029000000000141004900000e7e0200004100000e7e0310009c000000000102801900000e7e0340009c000000000204401900000040022002100000006001100210000000000121019f000039f30001042e00000ef60120009c000005ca0000613d00000ef70120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f216480000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000ec20120009c000005eb0000613d00000ec30120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f20a6b0000040f000500000002001d000600000003001d39f209e30000040f0000000002010019000000050100002939f20ad40000040f000000060200002939f20afd0000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e00000edd0120009c0000060c0000613d00000ede0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d0000042a0000013d00000ea90120009c000006180000613d00000eaa0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000000100003139f20c370000040f39f2156d0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e00000eea0320009c000006300000613d00000eeb0120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000400100043d0000001202000039000000000021043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000efa011001c7000039f30001042e00000eb60120009c000006380000613d00000eb70120009c000000770000c13d0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000400100043d000600000001001d00000efb0100004100000000001004390000000001000412000000040010044300000024000004430000800501000039000000440200003939f206b00000040f00000e81011001970000000603000029000000000013043500000e7e0100004100000e7e0230009c0000000001034019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f20e210000040f000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2098d0000040f39f2183a0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f208670000040f39f21b6a0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f216de0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f20ba70000040f000000000110004c0000000001000019000000010100c039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f208500000040f39f2111f0000040f0000000101000039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000400100043d000000000001043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f238950000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f20c6f0000040f000600000002001d39f209560000040f000000060200002939f209680000040f000000000101041a000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f20c880000040f39f21b000000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209040000040f39f235910000040f000000400300043d00000020043000390000000000240435000000000013043500000e7e0100004100000e7e0230009c0000000001034019000000400110021000000efc011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f209790000040f000000000110004c0000000001000019000000010100c039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000000901000039000000000101041a000000100110027000000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f21acf0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000400100043d0000000602000039000000000021043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000200310008c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d00000004010000390000000201100367000000000101043b39f226a00000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f207bb0000040f39f211c50000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000000c01000039000000000101041a000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2098d0000040f39f21b960000040f000000000110004c0000000001000019000000010100c039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c0000063b0000613d000000770000013d0000000001000416000000000110004c000000770000c13d000000000100003139f2087e0000040f39f2287c0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2098d0000040f39f2191b0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f20a6b0000040f000500000002001d000600000003001d39f209bf0000040f0000000002010019000000050100002939f20ad40000040f000000060200002939f20afd0000040f000000000101041a000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f20ca30000040f39f2213d0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f208500000040f39f20ed70000040f0000000101000039000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f208500000040f39f225ff0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e39f20a190000040f39f22fba0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e39f207bb0000040f39f21cea0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f208cb0000040f39f2251f0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d0000001001000039000000000101041a00000e8101100197000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f22a0d0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f20d630000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d39f20da70000040f0000000002010019000000400100043d000600000001001d39f208230000040f0000000604000029000000000141004900000e7e0200004100000e7e0310009c000000000102801900000e7e0340009c000000000204401900000040022002100000006001100210000000000121019f000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d39f20de40000040f0000000002010019000000400100043d000600000001001d39f208230000040f0000000604000029000000000141004900000e7e0200004100000e7e0310009c000000000102801900000e7e0340009c000000000204401900000040022002100000006001100210000000000121019f000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2098d0000040f39f217740000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f2083b0000040f39f20c180000040f00000000030100190000000004020019000000400100043d000600000001001d0000000002030019000000000304001939f20c2e0000040f0000000604000029000000000141004900000e7e0200004100000e7e0310009c000000000102801900000e7e0340009c000000000204401900000040022002100000006001100210000000000121019f000039f30001042e39f208990000040f39f22a4f0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d000000400100043d0000271002000039000000000021043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000040100008a000000000110003100000e8002000041000000000310004c0000000003000019000000000302401900000e8001100197000000000410004c000000000200a01900000e800110009c00000000010300190000000001026019000000000110004c000000770000c13d39f20d360000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f208670000040f39f239a20000040f000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f20b8e0000040f000600000002001d39f209d10000040f000000060200002939f209f50000040f000000000101041a000000400200043d000000000012043500000e7e0100004100000e7e0320009c0000000001024019000000400110021000000efa011001c7000039f30001042e0000000001000416000000000110004c000000770000c13d000000000100003139f209410000040f39f229ca0000040f00000e7e01000041000000400200043d00000e7e0320009c00000000010240190000004001100210000039f30001042e0000000101000029000000100110021000000e88011001970000000902000039000000000302041a00000e8903300197000000000113019f000000000012041b000000050100002939f206c10000040f000000040100002939f2073e0000040f00000e8a01000041000000a00010043f000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a00020044300000100001004430000000201000039000001200010044300000e8b01000041000039f30001042e000000000301001900000e7e01000041000000000400041400000e7e0540009c0000000001044019000000c0011002100000006002200210000000000112001900000f0001100041000000000203001939f239ed0000040f0000000102200190000006bf0000613d000000000101043b000000000001042d0000000001000019000039f4000104300005000000000002000000007501043400000f010250009c000007300000813d0000000d04000039000000000304041a000000010230019000000001063002700000007f0360018f00000000060360190000001f0360008c00000000030000190000000103002039000000010330018f000000000232004b000007360000c13d000300000001001d000000200160008c000500000004001d000400000005001d000006f60000413d000100000006001d000200000007001d000000000040043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f00000001022001900000073c0000613d00000004050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000005040000290000000207000029000006f60000813d000000000002041b0000000102200039000000000312004b000006f20000413d0000001f0150008c000007230000a13d000000000040043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f00000001022001900000073c0000613d000000200200008a000000040600002900000000032601700000002002000039000000000101043b0000000307000029000007140000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000070c0000413d000000000363004b0000071f0000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b000000010160021000000001011001bf00000005040000290000072e0000013d000000000150004c00000000010000190000072e0000613d0000000301500210000000010200008a000000000112022f000000000121013f0000000002070433000000000112016f0000000102500210000000000121019f000000000014041b000000000001042d00000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f4000104300000000001000019000039f4000104300005000000000002000000007501043400000f010250009c000007ad0000813d0000000e04000039000000000304041a000000010230019000000001063002700000007f0360018f00000000060360190000001f0360008c00000000030000190000000103002039000000010330018f000000000232004b000007b30000c13d000300000001001d000000200160008c000500000004001d000400000005001d000007730000413d000100000006001d000200000007001d000000000040043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f0000000102200190000007b90000613d00000004050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000005040000290000000207000029000007730000813d000000000002041b0000000102200039000000000312004b0000076f0000413d0000001f0150008c000007a00000a13d000000000040043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f0000000102200190000007b90000613d000000200200008a000000040600002900000000032601700000002002000039000000000101043b0000000307000029000007910000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000007890000413d000000000363004b0000079c0000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b000000010160021000000001011001bf0000000504000029000007ab0000013d000000000150004c0000000001000019000007ab0000613d0000000301500210000000010200008a000000000112022f000000000121013f0000000002070433000000000112016f0000000102500210000000000121019f000000000014041b000000000001042d00000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f4000104300000000001000019000039f400010430000000040210008a00000e80030000410000007f0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c0000080b0000613d00000002050003670000000402500370000000000702043b0000ffff0270008c0000080b0000213d0000002402500370000000000202043b00000e7f0320009c0000080b0000213d000000230320003900000e8004000041000000000613004b0000000006000019000000000604801900000e800810019700000e8003300197000000000983004b0000000004008019000000000383013f00000e800330009c00000000030600190000000003046019000000000330004c0000080b0000c13d0000000403200039000000000335034f000000000303043b00000e7f0430009c0000080b0000213d00000024022000390000000004230019000000000414004b0000080b0000213d0000004404500370000000000404043b00000e7f0640009c0000080b0000213d0000006406500370000000000806043b00000e7f0680009c0000080b0000213d000000230680003900000e8009000041000000000a16004b000000000a000019000000000a09801900000e800b10019700000e8006600197000000000cb6004b00000000090080190000000006b6013f00000e800660009c00000000060a00190000000006096019000000000660004c0000080b0000c13d0000000406800039000000000565034f000000000605043b00000e7f0560009c0000080b0000213d00000024058000390000000008560019000000000118004b0000080b0000213d0000000001070019000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000001f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c000008210000613d00000004010000390000000201100367000000000101043b00000efd02100197000000000221004b000008210000c13d000000000001042d0000000001000019000039f40001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c000008360000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b0000082b0000413d000000000234004b000008360000a13d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d000000040110008a00000e80020000410000001f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c0000084e0000613d00000004010000390000000201100367000000000101043b0000ffff0210008c0000084e0000213d000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000003f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c000008650000613d00000002020003670000000401200370000000000101043b00000e810310009c000008650000213d0000002402200370000000000202043b000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000003f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c0000087c0000613d00000002020003670000000401200370000000000101043b0000ffff0310008c0000087c0000213d0000002402200370000000000202043b000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000005f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c000008970000613d00000002030003670000000401300370000000000101043b00000e810210009c000008970000213d0000002402300370000000000202043b00000e810420009c000008970000213d0000004403300370000000000303043b000000000001042d0000000001000019000039f4000104300000000003010019000000040130008a00000e8002000041000000bf0410008c0000000004000019000000000402201900000e8001100197000000000510004c000000000200801900000e800110009c00000000010400190000000001026019000000000110004c000008c90000613d00000002050003670000000401500370000000000101043b00000e810210009c000008c90000213d0000002402500370000000000202043b0000ffff0420008c000008c90000213d000000a404500370000000000404043b00000e7f0640009c000008c90000213d0000000406400039000000000363004900000e8004000041000000600730008c0000000007000019000000000704401900000e8003300197000000000830004c000000000400a01900000e800330009c00000000030700190000000003046019000000000330004c000008c90000c13d0000004403500370000000000303043b0000006404500370000000000404043b0000008405500370000000000505043b000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000003f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c000008e50000613d00000002020003670000000401200370000000000101043b00000e810310009c000008e50000213d0000002402200370000000000202043b000000000320004c0000000003000019000000010300c039000000000332004b000008e50000c13d000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000005f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c000009020000613d00000002030003670000000401300370000000000101043b00000e810210009c000009020000213d0000002402300370000000000202043b00000e810420009c000009020000213d0000004403300370000000000303043b00000e810430009c000009020000213d000000000001042d0000000001000019000039f400010430000000040210008a00000e80030000410000009f0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c0000093f0000613d00000002050003670000000402500370000000000702043b0000ffff0270008c0000093f0000213d0000004402500370000000000302043b0000002402500370000000000202043b0000006404500370000000000404043b000000000640004c0000000006000019000000010600c039000000000664004b0000093f0000c13d0000008406500370000000000806043b00000e7f0680009c0000093f0000213d000000230680003900000e8009000041000000000a16004b000000000a000019000000000a09801900000e800b10019700000e8006600197000000000cb6004b00000000090080190000000006b6013f00000e800660009c00000000060a00190000000006096019000000000660004c0000093f0000c13d0000000406800039000000000565034f000000000605043b00000e7f0560009c0000093f0000213d00000024058000390000000008560019000000000118004b0000093f0000213d0000000001070019000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000001f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c000009540000613d00000004010000390000000201100367000000000101043b00000e810210009c000009540000213d000000000001042d0000000001000019000039f40001043000000e810110019700000000001004350000000b01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000009660000613d000000000101043b000000000001042d0000000001000019000039f40001043000000e81022001970000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000009770000613d000000000101043b000000000001042d0000000001000019000039f40001043000000e810110019700000000001004350000001301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000098b0000613d000000000101043b000000000101041a000000ff0110018f000000000001042d0000000001000019000039f400010430000000040210008a00000e80030000410000003f0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c000009bd0000613d00000002020003670000000403200370000000000403043b0000ffff0340008c000009bd0000213d0000002403200370000000000503043b00000e7f0350009c000009bd0000213d000000230350003900000e8006000041000000000713004b0000000007000019000000000706801900000e800810019700000e8003300197000000000983004b0000000006008019000000000383013f00000e800330009c00000000030700190000000003066019000000000330004c000009bd0000c13d0000000403500039000000000232034f000000000302043b00000e7f0230009c000009bd0000213d00000024025000390000000005230019000000000115004b000009bd0000213d0000000001040019000000000001042d0000000001000019000039f4000104300000ffff0110018f00000000001004350000000501000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000009cf0000613d000000000101043b000000000001042d0000000001000019000039f4000104300000ffff0110018f00000000001004350000000201000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000009e10000613d000000000101043b000000000001042d0000000001000019000039f4000104300000ffff0110018f00000000001004350000000701000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000009f30000613d000000000101043b000000000001042d0000000001000019000039f4000104300000ffff0220018f0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000a040000613d000000000101043b000000000001042d0000000001000019000039f4000104300000ffff0110018f00000000001004350000000301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000a170000613d000000000101043b000000000101041a000000000001042d0000000001000019000039f400010430000000040210008a00000e8003000041000000ff0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c00000a690000613d00000002090003670000000402900370000000000a02043b00000e8102a0009c00000a690000213d0000002402900370000000000202043b0000ffff0320008c00000a690000213d0000008403900370000000000503043b0000006403900370000000000403043b0000004403900370000000000303043b000000a406900370000000000606043b00000e7f0760009c00000a690000213d000000230760003900000e8008000041000000000b17004b000000000b000019000000000b08801900000e800c10019700000e8007700197000000000dc7004b00000000080080190000000007c7013f00000e800770009c00000000070b00190000000007086019000000000770004c00000a690000c13d0000000407600039000000000779034f000000000707043b00000e7f0870009c00000a690000213d00000024066000390000000008670019000000000818004b00000a690000213d000000c408900370000000000808043b00000e7f0b80009c00000a690000213d000000e409900370000000000909043b00000e7f0b90009c00000a690000213d0000000409900039000000000191004900000e800b000041000000600c10008c000000000c000019000000000c0b401900000e8001100197000000000d10004c000000000b00a01900000e800110009c00000000010c001900000000010b6019000000000110004c00000a690000c13d00000000010a0019000000000001042d0000000001000019000039f4000104300000000003010019000000040130008a00000e80020000410000005f0410008c0000000004000019000000000402201900000e8001100197000000000510004c000000000200801900000e800110009c00000000010400190000000001026019000000000110004c00000acc0000613d00000002020003670000000401200370000000000101043b0000ffff0410008c00000acc0000213d0000002404200370000000000504043b00000e7f0450009c00000acc0000213d000000230450003900000e8006000041000000000734004b0000000007000019000000000706801900000e800830019700000e8004400197000000000984004b0000000006008019000000000484013f00000e800440009c00000000040700190000000004066019000000000440004c00000acc0000c13d0000000404500039000000000242034f000000000402043b00000f010240009c00000ace0000813d0000003f02400039000000200600008a000000000662016f000000400200043d0000000006620019000000000726004b0000000007000019000000010700403900000e7f0860009c00000ace0000213d000000010770019000000ace0000c13d0000002407500039000000400060043f00000000054204360000000006740019000000000336004b00000acc0000213d0000001f0340018f0000000206700367000000050740027200000ab50000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b00000aad0000413d000000000830004c00000ac40000613d0000000507700210000000000676034f00000000077500190000000303300210000000000807043300000000083801cf000000000838022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000383019f00000000003704350000000003450019000000000003043500000044030000390000000203300367000000000303043b00000e7f0430009c00000acc0000213d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400400043d0000000003010433000000000530004c000000000543001900000ae40000613d000000000600001900000000074600190000002006600039000000000816001900000000080804330000000000870435000000000736004b00000ada0000413d000000000136004b00000ae40000a13d0000000000050435000000000025043500000e7e0100004100000e7e0240009c000000000201001900000000020440190000004002200210000000200330003900000e7e0430009c00000000030180190000006003300210000000000223019f000000000300041400000e7e0430009c0000000001034019000000c001100210000000000121019f00000e86011001c7000080100200003939f239ed0000040f000000010220019000000afb0000613d000000000101043b000000000001042d0000000001000019000039f40001043000000e7f022001970000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000b0c0000613d000000000101043b000000000001042d0000000001000019000039f40001043000030000000000020000ffff0110018f00000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000b600000613d000000000601043b000000000206041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b00000b620000c13d000000400100043d0000000004510436000000000330004c00000b490000613d000100000005001d000200000004001d000300000001001d000000000060043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f000000010220019000000b600000613d0000000106000029000000000260004c00000b4e0000613d000000000201043b000000000100001900000002050000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00000b410000413d00000b500000013d000001000300008a000000000232016f0000000000240435000000400210003900000b520000013d000000000100001900000002050000290000000002510019000000030100002900000000021200490000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b0000000002000019000000010200403900000e7f0340009c00000b680000213d000000010220019000000b680000c13d000000400040043f000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000040110008a00000e80020000410000005f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c00000b8c0000613d00000002030003670000000401300370000000000101043b0000ffff0210008c00000b8c0000213d0000002402300370000000000202043b000000000420004c0000000004000019000000010400c039000000000442004b00000b8c0000c13d0000004403300370000000000303043b0000ffff0430008c00000b8c0000213d000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000003f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c00000ba50000613d00000002020003670000000401200370000000000101043b0000ffff0310008c00000ba50000213d0000002402200370000000000202043b0000ffff0320008c00000ba50000213d000000000001042d0000000001000019000039f40001043000000e810110019700000000001004350000000f01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000bb90000613d000000000101043b000000000101041a000000ff0110018f000000000001042d0000000001000019000039f400010430000000040210008a00000e8003000041000000df0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c00000c160000613d00000002080003670000000402800370000000000a02043b0000ffff02a0008c00000c160000213d0000004402800370000000000302043b0000002402800370000000000202043b0000006404800370000000000404043b00000e7f0540009c00000c160000213d000000230540003900000e8006000041000000000715004b0000000007000019000000000706801900000e800910019700000e8005500197000000000b95004b0000000006008019000000000595013f00000e800550009c00000000050700190000000005066019000000000550004c00000c160000c13d0000000405400039000000000558034f000000000505043b00000e7f0650009c00000c160000213d00000024044000390000000006450019000000000616004b00000c160000213d0000008406800370000000000606043b00000e7f0760009c00000c160000213d000000a407800370000000000707043b000000000970004c0000000009000019000000010900c039000000000997004b00000c160000c13d000000c409800370000000000b09043b00000e7f09b0009c00000c160000213d0000002309b0003900000e800c000041000000000d19004b000000000d000019000000000d0c801900000e800e10019700000e8009900197000000000fe9004b000000000c0080190000000009e9013f00000e800990009c00000000090d001900000000090c6019000000000990004c00000c160000c13d0000000409b00039000000000898034f000000000908043b00000e7f0890009c00000c160000213d0000002408b00039000000000b89001900000000011b004b00000c160000213d00000000010a0019000000000001042d0000000001000019000039f4000104300000ffff0110018f00000000001004350000000801000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000c2c0000613d000000000101043b000000000201041a0000ffff0120018f0000001002200270000000ff0220018f000000000001042d0000000001000019000039f400010430000000000330004c0000000003000019000000010300c039000000200410003900000000003404350000ffff0220018f00000000002104350000004001100039000000000001042d000000040210008a00000e80030000410000007f0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c00000c6d0000613d00000002040003670000000402400370000000000602043b0000ffff0260008c00000c6d0000213d0000002402400370000000000202043b0000ffff0320008c00000c6d0000213d0000004403400370000000000303043b0000006405400370000000000705043b00000e7f0570009c00000c6d0000213d000000230570003900000e8008000041000000000915004b0000000009000019000000000908801900000e800a10019700000e8005500197000000000ba5004b00000000080080190000000005a5013f00000e800550009c00000000050900190000000005086019000000000550004c00000c6d0000c13d0000000405700039000000000454034f000000000504043b00000e7f0450009c00000c6d0000213d00000024047000390000000007450019000000000117004b00000c6d0000213d0000000001060019000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000003f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c00000c860000613d00000002020003670000000401200370000000000101043b00000e810310009c00000c860000213d0000002402200370000000000202043b00000e810320009c00000c860000213d000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000005f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c00000ca10000613d00000002030003670000000401300370000000000101043b0000ffff0210008c00000ca10000213d0000002402300370000000000202043b0000ffff0420008c00000ca10000213d0000004403300370000000000303043b000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000001f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c00000cb90000613d00000004010000390000000201100367000000000101043b000000000210004c0000000002000019000000010200c039000000000221004b00000cb90000c13d000000000001042d0000000001000019000039f400010430000000040210008a00000e8003000041000000ff0420008c0000000004000019000000000403201900000e8002200197000000000520004c000000000300801900000e800220009c00000000020400190000000002036019000000000220004c00000d150000613d000000020a0003670000000402a00370000000000b02043b0000ffff02b0008c00000d150000213d0000002402a00370000000000202043b00000e7f0320009c00000d150000213d000000230320003900000e8004000041000000000513004b0000000005000019000000000504801900000e800610019700000e8003300197000000000763004b0000000004008019000000000363013f00000e800330009c00000000030500190000000003046019000000000330004c00000d150000c13d000000040320003900000000033a034f000000000303043b00000e7f0430009c00000d150000213d00000024022000390000000004230019000000000414004b00000d150000213d0000004404a00370000000000404043b00000e7f0540009c00000d150000213d0000006405a00370000000000505043b0000008406a00370000000000606043b00000e810760009c00000d150000213d000000a407a00370000000000707043b000000c408a00370000000000808043b00000e7f0980009c00000d150000213d000000230980003900000e800c000041000000000d19004b000000000d000019000000000d0c801900000e800e10019700000e8009900197000000000fe9004b000000000c0080190000000009e9013f00000e800990009c00000000090d001900000000090c6019000000000990004c00000d150000c13d000000040980003900000000099a034f000000000909043b00000e7f0c90009c00000d150000213d0000002408800039000000000c89001900000000011c004b00000d150000213d000000e401a00370000000000a01043b00000000010b0019000000000001042d0000000001000019000039f400010430000000040110008a00000e80020000410000007f0310008c0000000003000019000000000302201900000e8001100197000000000410004c000000000200801900000e800110009c00000000010300190000000001026019000000000110004c00000d340000613d00000002040003670000000401400370000000000101043b0000ffff0210008c00000d340000213d0000002402400370000000000202043b0000ffff0320008c00000d340000213d0000004403400370000000000303043b00000e810530009c00000d340000213d0000006404400370000000000404043b000000000001042d0000000001000019000039f400010430000000000100041a00000e81051001970000000002000411000000000225004b00000d500000c13d00000e8501100197000000000010041b000000400100043d00000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000e86011001c70000800d02000039000000030300003900000e8704000041000000000600001939f239e80000040f000000010120019000000d610000613d000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300000000001000019000039f400010430000000000200041a00000e81052001970000000003000411000000000335004b00000d7f0000c13d00000e810610019800000d900000613d00000e8501200197000000000161019f000000000010041b000000400100043d00000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000e86011001c70000800d02000039000000030300003900000e870400004139f239e80000040f000000010120019000000da50000613d000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f05030000410000000000320435000000440210003900000f0603000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300000000001000019000039f4000104300000000d05000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b00000dd80000c13d000000400100043d0000000003210436000000000660004c00000dc60000613d0000000000500435000000000420004c000000000400001900000dc40000613d00000f080500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000624004b00000dbd0000413d000000000243001900000dca0000013d000001000200008a000000000224016f0000000000230435000000400210003900000000021200490000001f02200039000000200300008a000000000332016f0000000002130019000000000332004b0000000003000019000000010300403900000e7f0420009c00000dde0000213d000000010330019000000dde0000c13d000000400020043f000000000001042d00000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f4000104300000000e05000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b00000e150000c13d000000400100043d0000000003210436000000000660004c00000e030000613d0000000000500435000000000420004c000000000400001900000e010000613d00000f090500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000624004b00000dfa0000413d000000000243001900000e070000013d000001000200008a000000000224016f0000000000230435000000400210003900000000021200490000001f02200039000000200300008a000000000332016f0000000002130019000000000332004b0000000003000019000000010300403900000e7f0420009c00000e1b0000213d000000010330019000000e1b0000c13d000000400020043f000000000001042d00000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e810110019700000000001004350000000a01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000e320000613d000000000101043b000000000101041a000000000001042d0000000001000019000039f4000104300005000000000002000000000300041100000e810330019800000e920000613d000500000002001d00000e8101100198000200000001001d00000ea70000613d000300000003001d00000000003004350000000a01000039000400000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000e900000613d0000000402000029000000000101043b000000000301041a0000000501000029000100000003001d000000000113004b00000ebc0000413d00000003010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000e900000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000020100002900000000001004350000000401000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000000e900000613d000000010200008a0000000504000029000000000324013f000000000101043b000000000201041a000000000332004b00000ed10000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000305000029000000020600002939f239e80000040f000000010120019000000e900000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0d030000410000000000320435000000440210003900000f0e03000041000000000032043500000024021000390000002303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f4000104300003000000000002000000000300041100000e810330019800000f150000613d000200000002001d00000e8101100198000300000001001d00000f2a0000613d000100000003001d00000000003004350000000b01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000000030400002900000f130000613d000000000101043b0000000000400435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000306000029000000010220019000000f130000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f1104000041000000010500002939f239e80000040f000000010120019000000f130000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f12030000410000000000320435000000440210003900000f1303000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300007000000000002000600000003001d000400000002001d00000e8101100197000700000001001d00000000001004350000000b01000039000200000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d000000000101043b000000000200041100000e8102200197000500000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d000000000101043b000000000301041a000000010200008a000000000123004b000300000002001d00000fa80000613d0000000601000029000000000113004b000010350000413d0000000701000029000000000110004c000010470000613d000100000003001d0000000501000029000000000110004c0000105c0000613d000000070100002900000000001004350000000201000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d000000000101043b00000005020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d000000060200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000000705000029000000050600002939f239e80000040f000000010120019000000fab0000c13d000010030000013d0000000701000029000000000110004c000010710000613d000000040100002900000e8101100198000400000001001d000010050000613d000000070100002900000000001004350000000a01000039000500000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d0000000502000029000000000101043b000000000301041a0000000601000029000200000003001d000000000113004b0000101a0000413d00000007010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d000000060200002900000002030000290000000002230049000000000101043b000000000021041b000000040100002900000000001004350000000501000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010030000613d00000006040000290000000302000029000000000324013f000000000101043b000000000201041a000000000332004b0000102f0000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000705000029000000040600002939f239e80000040f0000000101200190000010030000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f0d030000410000000000320435000000440210003900000f0e03000041000000000032043500000024021000390000002303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000440210003900000f1603000041000000000032043500000024021000390000001d03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f12030000410000000000320435000000440210003900000f1303000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300005000000000002000400000002001d000500000001001d0000000001000411000300000001001d00000000001004350000000b01000039000200000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010ed0000613d000000000101043b000000050200002900000e8102200197000500000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010ed0000613d000000010200008a0000000403000029000000000223013f000000000101043b000000000301041a000000000123004b000010ef0000213d000000030100002900000e8102100198000010f50000613d000300000003001d0000000501000029000000000110004c0000110a0000613d000100000002001d00000000002004350000000201000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010ed0000613d000000000101043b00000005020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000010ed0000613d000000040200002900000003030000290000000002230019000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000000105000029000000050600002939f239e80000040f0000000101200190000010ed0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f12030000410000000000320435000000440210003900000f1303000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300005000000000002000400000002001d000500000001001d0000000001000411000300000001001d00000000001004350000000b01000039000200000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000011840000613d000000000101043b000000050200002900000e8102200197000500000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000011840000613d000000000101043b000000000301041a0000000401000029000000000113004b000011860000413d000000030100002900000e81021001980000119b0000613d000300000003001d0000000501000029000000000110004c000011b00000613d000100000002001d00000000002004350000000201000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000011840000613d000000000101043b00000005020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000011840000613d000000040200002900000003030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000000105000029000000050600002939f239e80000040f0000000101200190000011840000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f17030000410000000000320435000000440210003900000f1803000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f12030000410000000000320435000000440210003900000f1303000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000e000000000002000d00000006001d000900000005001d000500000004001d000c00000003001d000b00000002001d000e00000001001d00000efb01000041000000000010043900000000010004120000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f00000001022001900000146d0000613d000000000101043b00000e81011001970000000002000411000000000112004b000014890000c13d0000000e010000290000ffff0110018f000800000001001d00000000001004350000000101000039000600000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000146d0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b0000149b0000c13d000000400400043d0000000006540436000000000330004c000700000004001d0000121e0000613d000e00000005001d000a00000006001d000000000010043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f00000001022001900000146d0000613d0000000e07000029000000000270004c0000000c050000290000000a06000029000012240000613d000000000201043b00000000010000190000000003610019000000000402041a000000000043043500000001022000390000002001100039000000000371004b000012160000413d000012250000013d000001000100008a000000000112016f000000000016043500000040014000390000000c05000029000012270000013d00000000010000190000000001610019000000070400002900000000014100490000001f01100039000000200200008a000e00000002001d000000000121016f0000000009410019000000000119004b0000000001000019000000010100403900000e7f0290009c0000146f0000213d00000001011001900000146f0000c13d000000400090043f0000000001040433000000000251004b000014750000c13d000000000110004c000014750000613d000000000200003100000e7f0150009c0000146f0000213d0000003f015000390000000e03000029000000000131016f000400000001001d000000000119001900000e7f0310009c0000146f0000213d000a00000006001d000000400010043f00000000015904360000000b030000290000000003350019000300000003001d000000000223004b0000146d0000213d0000000c060000290000001f0760018f0000000b02000029000000020220036700000005086002720000125b0000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000483004b000012530000413d000000000370004c0000126a0000613d0000000503800210000000000232034f00000000033100190000000304700210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000230435000100000008001d000200000007001d0000000002610019000000000002043500000e7e0200004100000e7e0310009c00000000010280190000004001100210000000000309043300000e7e0430009c00000000030280190000006003300210000000000113019f000000000300041400000e7e0430009c0000000002034019000000c002200210000000000112019f00000e86011001c7000080100200003939f239ed0000040f00000001022001900000146d0000613d00000e7e020000410000000a0400002900000e7e0340009c0000000003020019000000000304401900000040033002100000000704000029000000000404043300000e7e0540009c00000000040280190000006004400210000000000334019f000000000101043b000a00000001001d000000000100041400000e7e0410009c0000000001028019000000c001100210000000000131019f00000e86011001c7000080100200003939f239ed0000040f00000001022001900000146d0000613d000000400900043d000000000101043b0000000a02000029000000000112004b0000000c04000029000014750000c13d00000004010000290000000001190019000000000291004b0000000002000019000000010200403900000e7f0310009c0000146f0000213d00000001022001900000146f0000c13d0000000002000031000000400010043f00000000014904360000000303000029000000000223004b0000146d0000213d0000000b0200002900000002022003670000000108000029000000000380004c0000000c060000290000000207000029000012be0000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000483004b000012b60000413d000000000370004c000012cd0000613d0000000503800210000000000232034f00000000033100190000000304700210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000001610019000000000001043500000000010000310000000d0200002900000e7f0220009c0000146f0000213d0000000d020000290000003f022000390000000e03000029000000000232016f000000400a00043d00000000022a00190000000003a2004b0000000003000019000000010300403900000e7f0420009c0000146f0000213d00000001033001900000146f0000c13d000000400020043f0000000d02000029000000000b2a043600000009030000290000000002320019000000000112004b0000146d0000213d0000000d030000290000001f0130018f000000090200002900000002022003670000000503300272000012f60000613d0000000004000019000000050540021000000000065b0019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000012ee0000413d000000000410004c000013050000613d0000000503300210000000000232034f00000000033b00190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f00000000001304350000000d0100002900000000011b001900000000000104350000000001000414000000400300043d000000440230003900000080040000390000000000420435000000200430003900000f1b0200004100000000002404350000002402300039000000080500002900000000005204350000000005090433000000a4023000390000000000520435000000c402300039000000000650004c000013250000613d000000000600001900000000072600190000002006600039000000000896001900000000080804330000000000870435000000000756004b0000131a0000413d000000000656004b000013250000a13d000000000625001900000000000604350000001f055000390000000e06000029000000000565016f000000a00650003900000084073000390000000000670435000000050600002900000e7f076001970000006406300039000b00000007001d0000000000760435000000000525001900000000020a04330000000005250436000000000620004c000013410000613d0000000006000019000000000756001900000020066000390000000008a6001900000000080804330000000000870435000000000726004b000013360000413d000000000626004b000013410000a13d0000000006520019000000000006043500000000053500490000001f022000390000000e06000029000000000262016f0000000002520019000000200520008a00000000005304350000001f02200039000000000262016f0000000006320019000000000226004b0000000002000019000000010200403900000e7f0560009c0000146f0000213d00000001022001900000146f0000c13d000000400060043f00000f1c0260009c0000146f0000213d0000000002000410000000c005600039000000400050043f0000009605000039000d00000006001d000000000c560436000000000500003100000002055003670000000006000019000000050760021000000000087c0019000000000775034f000000000707043b00000000007804350000000106600039000000050760008c0000135e0000413d000000040520008c000a00000009001d000c0000000a001d0000136c0000c13d0000000101000031000013850000013d00000e7e0500004100000e7e0640009c00000000040580190000004004400210000000000303043300000e7e0630009c00000000030580190000006003300210000000000343019f00000e7e0410009c0000000001058019000000c001100210000000000113019f00090000000b001d00070000000c001d39f239e80000040f000000070c000029000000090b0000290000000c0a000029000000010220018f000600000002001d0003000000010355000000600110027000010e7e0010019d00000e7e01100197000000960210008c000000960300003900000000030140190000000d0100002900000000003104350000000101000031000000000113004b0000146d0000213d00000003020003670000001f0130018f00000005033002720000139a0000613d0000000004000019000000050540021000000000065c0019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000013920000413d000000000410004c000013a90000613d0000000503300210000000000232034f00000000033c00190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f00000000001304350000000601000029000000000110004c0000146c0000c13d00000e7e0100004100000e7e02b0009c000000000201001900000000020b4019000000400220021000000000030a043300000e7e0430009c00000000030180190000006003300210000000000223019f000000000300041400000e7e0430009c0000000001034019000000c001100210000000000121019f00000e86011001c7000080100200003939f239ed0000040f00000001022001900000146d0000613d000000000101043b000900000001001d000000080100002900000000001004350000000501000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000a0800002900000001022001900000146d0000613d000000400200043d000000000301043b0000000001080433000000000410004c0000000004210019000013e20000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b000013d80000413d000000000515004b000013e20000a13d0000000000040435000000000034043500000e7e0300004100000e7e0420009c00000000020380190000004002200210000000200110003900000e7e0410009c00000000010380190000006001100210000000000121019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c7000080100200003939f239ed0000040f00000001022001900000146d0000613d000000000101043b0000000b020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000c080000290000000a0700002900000001022001900000146d0000613d000000000101043b0000000902000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000080200002900000000002104350000000002070433000000a0031000390000000000230435000000c003100039000000000420004c000014210000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000014160000413d000000000424004b000014210000a13d0000000004320019000000000004043500000040041000390000000b0500002900000000005404350000001f022000390000000e04000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030804330000000002320436000000000430004c0000000d070000290000143c0000613d000000000400001900000000052400190000002004400039000000000684001900000000060604330000000000650435000000000534004b000014310000413d000000000434004b0000143c0000a13d000000000423001900000000000404350000001f033000390000000e04000029000000000343016f000000000223001900000000031200490000008004100039000000000034043500000000030704330000000002320436000000000430004c000014530000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000014480000413d000000000434004b000014530000a13d000000000423001900000000000404350000001f033000390000000e04000029000000000343016f0000000002120049000000000232001900000e7e0300004100000e7e0420009c0000000002038019000000600220021000000e7e0410009c00000000010380190000004001100210000000000112019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000800d02000039000000010300003900000f1d0400004139f239e80000040f00000001012001900000146d0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000640190003900000f1e020000410000000000210435000000440190003900000f1f02000041000000000021043500000024019000390000002602000039000000000021043500000e8d01000041000000000019043500000004019000390000002002000039000000000021043500000e7e0100004100000e7e0290009c0000000001094019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f1a03000041000000000032043500000024021000390000001e03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f4000104300001000000000002000000400500043d000100000005001d000000640450003900000000003404350000004403500039000000000400041000000000004304350000ffff0220018f0000002403500039000000000023043500000f200200004100000000002504350000ffff0110018f0000000402500039000000000012043500000efb01000041000000000010043900000000010004120000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f000000010800002900000001022001900000153f0000613d000000000201043b000000000100041400000e8102200197000000040320008c000014c90000c13d00000003010003670000000104000031000014db0000013d00000e7e0300004100000e7e0410009c000000000103801900000e7e0480009c00000000030840190000004003300210000000c001100210000000000131019f00000f07011001c739f239ed0000040f00000001080000290000000003010019000000600330027000010e7e0030019d00000e7e0430019700030000000103550000000102200190000015470000613d0000001f0240018f0000000503400272000014e70000613d000000000400001900000005054002100000000006580019000000000551034f000000000505043b00000000005604350000000104400039000000000534004b000014df0000413d000000000420004c000014f60000613d0000000503300210000000000131034f00000000033800190000000302200210000000000403043300000000042401cf000000000424022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000141019f00000000001304350000001f010000390000000101100031000000200200008a000000000321016f0000000001830019000000000331004b0000000003000019000000010300403900000e7f0410009c000015410000213d0000000103300190000015410000c13d000000400010043f00000e80040000410000000103000031000000200530008c0000000005000019000000000504401900000e8006300197000000000760004c000000000400a01900000e800660009c000000000405c019000000000440004c0000153f0000c13d000000000408043300000e7f0540009c0000153f0000213d000000000583001900000000038400190000001f0430003900000e8006000041000000000754004b0000000007000019000000000706801900000e800440019700000e8008500197000000000984004b0000000006008019000000000484013f00000e800440009c00000000040700190000000004066019000000000440004c0000153f0000c13d000000004303043400000e7f0630009c000015410000213d0000003f06300039000000000226016f000000000212001900000e7f0620009c000015410000213d000000400020043f00000000023104360000000006340019000000000556004b0000153f0000213d000000000530004c0000153e0000613d000000000500001900000000062500190000000007540019000000000707043300000000007604350000002005500039000000000635004b000015330000413d000000000435004b0000153e0000a13d00000000022300190000000000020435000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400200043d0000001f0340018f0000000504400272000015540000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000154c0000413d000000000530004c000015630000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f4000104300006000000000002000600000005001d000500000004001d000200000003001d000300000002001d000400000001001d000000000100041a00000e81011001970000000002000411000000000121004b0000160b0000c13d00000efb01000041000000000010043900000000010004120000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000102200190000016090000613d000000000101043b00000f2102000041000000000020043900000e8101100197000100000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000016090000613d000000000101043b000000000110004c000016090000613d000000400900043d00000064019000390000008002000039000000000021043500000044019000390000000202000029000000000021043500000003010000290000ffff0110018f0000002402900039000000000012043500000f2301000041000000000019043500000004010000290000ffff0110018f000000040290003900000000001204350000008401900039000000060800002900000000008104350000001f0280018f000000a401900039000000050300002900000002033003670000000504800272000015bd0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000015b50000413d000000000520004c000015cc0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c000015d40000c13d0000000104000031000015f00000013d0000001f04800039000000200300008a000000000534016f00000e7e0300004100000e7e0490009c000000000403001900000000040940190000004004400210000000a40650003900000e7e0560009c000000000503001900000000050640190000006005500210000000000545019f00000e7e0410009c0000000001038019000000c001100210000000000151019f000600000009001d39f239e80000040f00000006090000290000000003010019000000600330027000010e7e0030019d00000e7e0430019700030000000103550000000102200190000016220000613d0000001f01400039000000200200008a000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e7f0310009c0000161c0000213d00000001022001900000161c0000c13d000000400010043f00000e80010000410000000102000031000000000320004c0000000003000019000000000301401900000e8002200197000000000420004c000000000100a01900000e800220009c000000000103c019000000000110004c000016090000c13d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400200043d0000001f0340018f00000005044002720000162f0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000016270000413d000000000530004c0000163e0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f4000104300002000000000002000200000001001d000000000100041a00000e81011001970000000002000411000000000121004b000016a10000c13d00000efb01000041000000000010043900000000010004120000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f00000001022001900000169f0000613d000000000101043b00000f2102000041000000000020043900000e8101100197000100000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f00000001022001900000169f0000613d000000000101043b000000000110004c0000169f0000613d000000400500043d00000f2401000041000000000015043500000002010000290000ffff0110018f0000000402500039000000000012043500000000010004140000000102000029000000040320008c0000167e0000c13d0000000104000031000016920000013d00000e7e0400004100000e7e0310009c000000000104801900000e7e0350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000e90011001c7000200000005001d39f239e80000040f00000002050000290000000003010019000000600330027000010e7e0030019d00000e7e0430019700030000000103550000000102200190000016b80000613d0000001f01400039000000200200008a000000000221016f0000000001520019000000000221004b0000000002000019000000010200403900000e7f0310009c000016b20000213d0000000102200190000016b20000c13d000000400010043f000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400200043d0000001f0340018f0000000504400272000016c50000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000016bd0000413d000000000530004c000016d40000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f4000104300002000000000002000200000001001d000000000100041a00000e81011001970000000002000411000000000121004b000017370000c13d00000efb01000041000000000010043900000000010004120000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000102200190000017350000613d000000000101043b00000f2102000041000000000020043900000e8101100197000100000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000017350000613d000000000101043b000000000110004c000017350000613d000000400500043d00000f2501000041000000000015043500000002010000290000ffff0110018f0000000402500039000000000012043500000000010004140000000102000029000000040320008c000017140000c13d0000000104000031000017280000013d00000e7e0400004100000e7e0310009c000000000104801900000e7e0350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000e90011001c7000200000005001d39f239e80000040f00000002050000290000000003010019000000600330027000010e7e0030019d00000e7e04300197000300000001035500000001022001900000174e0000613d0000001f01400039000000200200008a000000000221016f0000000001520019000000000221004b0000000002000019000000010200403900000e7f0310009c000017480000213d0000000102200190000017480000c13d000000400010043f000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400200043d0000001f0340018f00000005044002720000175b0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000017530000413d000000000530004c0000176a0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f4000104300004000000000002000400000003001d000300000002001d000200000001001d000000000100041a00000e81011001970000000002000411000000000121004b000017fd0000c13d00000efb01000041000000000010043900000000010004120000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000102200190000017fb0000613d000000000101043b00000f2102000041000000000020043900000e8101100197000100000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000017fb0000613d000000000101043b000000000110004c000017fb0000613d000000400900043d00000024019000390000004002000039000000000021043500000f2601000041000000000019043500000002010000290000ffff0110018f000000040290003900000000001204350000004401900039000000040800002900000000008104350000001f0280018f0000006401900039000000030300002900000002033003670000000504800272000017bb0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000017b30000413d000000000520004c000017ca0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c000017d20000c13d0000000104000031000017ee0000013d0000001f04800039000000200300008a000000000534016f00000e7e0300004100000e7e0490009c000000000403001900000000040940190000004004400210000000640650003900000e7e0560009c000000000503001900000000050640190000006005500210000000000545019f00000e7e0410009c0000000001038019000000c001100210000000000151019f000400000009001d39f239e80000040f00000004090000290000000003010019000000600330027000010e7e0030019d00000e7e0430019700030000000103550000000102200190000018140000613d0000001f01400039000000200200008a000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e7f0310009c0000180e0000213d00000001022001900000180e0000c13d000000400010043f000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400200043d0000001f0340018f0000000504400272000018210000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000018190000413d000000000530004c000018300000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f4000104300005000000000002000500000003001d000400000002001d000000000200041a00000e81022001970000000003000411000000000232004b000018fe0000c13d0000ffff0110018f000300000001001d00000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000018fc0000613d000000000401043b000000050900002900000f010190009c0000190f0000813d000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000000405000029000019150000c13d000000200130008c000200000004001d000018830000413d000100000003001d000000000040043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f0000000102200190000018fc0000613d00000005090000290000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000004050000290000000204000029000018830000813d000000000002041b0000000102200039000000000312004b0000187f0000413d0000001f0190008c000018b00000a13d000000000040043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f0000000102200190000018fc0000613d000000200200008a00000005090000290000000003290170000000000101043b00000000020000190000000405000029000018a00000613d000000000200001900000000045200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b000018980000413d000000000393004b000018ac0000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000025200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf0000000204000029000018bc0000013d000000000190004c0000000001000019000018bc0000613d0000000301900210000000010200008a000000000112022f000000000121013f0000000202500367000000000202043b000000000112016f0000000102900210000000000121019f000000000014041b000000400100043d00000020021000390000004003000039000000000032043500000003020000290000000000210435000000400210003900000000009204350000001f0390018f000000600210003900000002045003670000000505900272000018d30000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000018cb0000413d000000000630004c000018e20000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f00000e7e0300004100000e7e0410009c0000000001038019000000400110021000000e7e0420009c00000000020380190000006002200210000000000112019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000800d02000039000000010300003900000f270400004139f239e80000040f0000000101200190000018fc0000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f400010430000b0000000000020000000006030019000000400900043d000000000300041a00000e81043001970000000003000411000000000334004b00001a240000c13d0000001f0760018f000600000002001d0000000202200367000000200a9000390000000508600272000019320000613d0000000003000019000000050430021000000000054a0019000000000442034f000000000404043b00000000004504350000000103300039000000000483004b0000192a0000413d000000000370004c000019410000613d0000000503800210000000000232034f00000000033a00190000000304700210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000230435000700000007001d00000000026a0019000000000300041000000060033002100000000000320435000000140260003900000000002904350000005302600039000000200300008a000500000003001d000000000232016f0000000002290019000000000392004b0000000003000019000000010300403900000e7f0420009c00001a1e0000213d000000010330019000001a1e0000c13d00090000000a001d000800000009001d000a00000008001d000b00000006001d000000400020043f0000ffff0110018f000400000001001d00000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001a1c0000613d000000000601043b0000000801000029000000000a01043300000e7f01a0009c0000000b070000290000000a08000029000000090500002900001a1e0000213d000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b00001a340000c13d000000200130008c000300000006001d00020000000a001d000019a00000413d000100000003001d000000000060043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f000000010220019000001a1c0000613d000000020a0000290000001f02a0003900000005022002700000002003a0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000b070000290000000a0800002900000009050000290000000306000029000019a00000813d000000000002041b0000000102200039000000000312004b0000199c0000413d0000001f01a0008c000019d00000a13d000000000060043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f000000010220019000001a1c0000613d0000000509000029000000020a00002900000000039a01700000002002000039000000000101043b0000000806000029000019be0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000019b60000413d0000000003a3004b0000000b070000290000000a08000029000019cb0000813d0000000303a00210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b0000000101a0021000000001011001bf00000006040000290000000306000029000019dd0000013d0000000001a0004c000000000100001900000006040000290000000509000029000019dd0000613d0000000301a00210000000010200008a000000000112022f000000000121013f0000000002050433000000000112016f0000000102a00210000000000121019f000000000016041b000000400100043d000000200210003900000040030000390000000000320435000000040200002900000000002104350000004002100039000000000072043500000060021000390000000203400367000000000480004c000019f30000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000584004b000019eb0000413d0000000705000029000000000450004c00001a030000613d0000000504800210000000000343034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f02700039000000000292016f00000e7e0300004100000e7e0410009c0000000001038019000000400110021000000e7e0420009c00000000020380190000006002200210000000000112019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000800d02000039000000010300003900000f280400004139f239e80000040f000000010120019000001a1c0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000440190003900000f0402000041000000000021043500000e8d0100004100000000001904350000002401900039000000200200003900000000002104350000000401900039000000000021043500000e7e0100004100000e7e0290009c0000000001094019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f40001043000030000000000020000ffff0110018f00000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001ab00000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b00001ab20000c13d000000400800043d0000000004580436000000000330004c00001a760000613d000100000005001d000200000004001d000300000008001d000000000010043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f000000010220019000001ab00000613d0000000106000029000000000260004c00001a7b0000613d000000000201043b0000000001000019000000030800002900000002050000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00001a6e0000413d00001a7e0000013d000001000100008a000000000112016f0000000000140435000000400180003900001a7f0000013d000000000100001900000003080000290000000205000029000000000151001900000000018100490000001f01100039000000200200008a000000000321016f0000000001830019000000000331004b0000000003000019000000010300403900000e7f0410009c00001ab80000213d000000010330019000001ab80000c13d000000400010043f0000000003080433000000000430004c00001abe0000613d000000130430008c00001aaa0000a13d000000140330008a000000000423004b00001aaa0000213d000000000430004c00001aa70000613d0000001f0430019000000000050000190000002005006039000000000645019f00000000041600190000000005430019000000000754004b00001aa30000813d000000000686001900000000670604340000000004740436000000000754004b00001a9f0000413d00000000003104350000001f03400039000000000223016f00001aa80000013d0000000002010436000000400020043f000000000001042d00000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f4000104300000000001000019000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000440210003900000f2903000041000000000032043500000024021000390000001d03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000000200041a00000e81022001970000000003000411000000000232004b00001aed0000c13d00000e81011001970000000402000039000000000302041a00000e8503300197000000000313019f000000000032041b000000400200043d000000000012043500000e7e01000041000000000300041400000e7e0430009c000000000301801900000e7e0420009c00000000010240190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000010300003900000f2a0400004139f239e80000040f000000010120019000001afe0000613d000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300000000001000019000039f4000104300003000000000002000000000400041a00000e81054001970000000004000411000000000445004b00001b470000c13d000300000002001d000200000003001d000000000230004c00001b580000613d0000ffff0110018f000100000001001d00000000001004350000000201000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001b450000613d000000000101043b00000003020000290000ffff0220018f000300000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001b450000613d000000000101043b0000000203000029000000000031041b000000400100043d000000400210003900000000003204350000002002100039000000030300002900000000003204350000000102000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f2b011001c70000800d02000039000000010300003900000f2c0400004139f239e80000040f000000010120019000001b450000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f2d03000041000000000032043500000024021000390000001503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300001000000000002000100000002001d000000000200041a00000e81022001970000000003000411000000000232004b00001b830000c13d0000ffff0110018f00000000001004350000000301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001b940000613d000000000101043b0000000102000029000000000021041b000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300000000001000019000039f4000104300005000000000002000500000003001d000400000002001d0000ffff0110018f00000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001c530000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b00001c5b0000c13d000000400400043d0000000005640436000000000330004c00001bd40000613d000100000006001d000200000005001d000300000004001d000000000010043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f000000010220019000001c530000613d0000000106000029000000000260004c00001bd90000613d000000000201043b000000000100001900000002050000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00001bcc0000413d00001bdb0000013d000001000100008a000000000112016f0000000000150435000000400140003900001bdd0000013d000000000100001900000002050000290000000001510019000000030400002900000000014100490000001f01100039000000200200008a000300000002001d000000000221016f0000000001420019000000000221004b0000000002000019000000010200403900000e7f0310009c00001c550000213d000000010220019000001c550000c13d000000400010043f00000e7e0100004100000e7e0250009c000000000201001900000000020540190000004002200210000000000304043300000e7e0430009c00000000030180190000006003300210000000000223019f000000000300041400000e7e0430009c0000000001034019000000c001100210000000000121019f00000e86011001c7000080100200003939f239ed0000040f000000010220019000001c530000613d0000000003000031000000000601043b000000050100002900000e7f0110009c00001c550000213d00000005010000290000003f011000390000000302000029000000000221016f000000400100043d0000000002210019000000000412004b0000000004000019000000010400403900000e7f0520009c00001c550000213d000000010440019000001c550000c13d000300000006001d000000400020043f0000000504000029000000000241043600000004050000290000000004540019000000000334004b00001c530000213d00000005050000290000001f0350018f00000004040000290000000204400367000000050550027200001c280000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001c200000413d000000000630004c00001c370000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f000000000035043500000005030000290000000003320019000000000003043500000e7e0300004100000e7e0420009c00000000020380190000004002200210000000000101043300000e7e0410009c00000000010380190000006001100210000000000121019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c7000080100200003939f239ed0000040f000000010220019000001c530000613d000000000101043b0000000302000029000000000112004b00000000010000190000000101006039000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f400010430000000000702001900000000020004100000000008000411000000000228004b00001cd50000c13d000000000a00003100000f010230009c00001ccd0000813d0000003f02300039000000200800008a000000000982016f000000400200043d0000000009920019000000000b29004b000000000b000019000000010b00403900000e7f0c90009c00001ccd0000213d000000010bb0019000001ccd0000c13d000000400090043f0000000009320436000000000b730019000000000aab004b00001cd30000213d0000001f0a30018f0000000207700367000000050b30027200001c870000613d000000000c000019000000050dc00210000000000ed90019000000000dd7034f000000000d0d043b0000000000de0435000000010cc00039000000000dbc004b00001c7f0000413d000000000ca0004c00001c960000613d000000050bb002100000000007b7034f000000000bb90019000000030aa00210000000000c0b0433000000000cac01cf000000000cac022f000000000707043b000001000aa000890000000007a7022f0000000007a701cf0000000007c7019f00000000007b043500000000033900190000000000030435000000000900003100000e7f0360009c00001ccd0000213d0000003f03600039000000000383016f000000400700043d0000000003370019000000000873004b0000000008000019000000010800403900000e7f0a30009c00001ccd0000213d000000010880019000001ccd0000c13d000000400030043f00000000036704360000000008560019000000000898004b00001cd30000213d0000001f0860018f0000000205500367000000050960027200001cb80000613d000000000a000019000000050ba00210000000000cb30019000000000bb5034f000000000b0b043b0000000000bc0435000000010aa00039000000000b9a004b00001cb00000413d000000000a80004c00001cc70000613d0000000509900210000000000595034f00000000099300190000000308800210000000000a090433000000000a8a01cf000000000a8a022f000000000505043b0000010008800089000000000585022f00000000058501cf0000000005a5019f0000000000590435000000000363001900000000000304350000000003040019000000000407001939f221710000040f000000000001042d00000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f4000104300000000001000019000039f400010430000000400100043d000000640210003900000f2e030000410000000000320435000000440210003900000f2f03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300012000000000002001100000006001d000f00000005001d000c00000004001d001200000003001d001000000002001d000500000001001d0000ffff0110018f000b00000001001d00000000001004350000000501000039000700000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001eac0000613d000000400200043d00000012040000290000001f0740018f00000010030000290000000203300367000000000101043b000000050840027200001d120000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000584004b00001d0a0000413d000000000470004c00001d210000613d0000000504800210000000000343034f00000000044200190000000305700210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000d00000007001d00000012050000290000000003520019000000000013043500000e7e01000041000000000300041400000e7e0430009c0000000003018019000000200450003900000e7e0540009c000000000401801900000e7e0520009c000000000102401900000040011002100000006002400210000600000002001d000000000121019f000000c002300210000000000112019f00000e86011001c70000801002000039000e00000008001d39f239ed0000040f000000010220019000001eac0000613d000000000101043b0000000c0200002900000e7f02200197000900000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000001eac0000613d000000000101043b000000000101041a000a00000001001d000000000110004c00001eb40000613d0000000003000031000000110100002900000f010110009c00001eae0000813d00000011010000290000003f01100039000000200200008a000800000002001d000000000221016f000000400100043d000300000002001d0000000002210019000000000412004b0000000004000019000000010400403900000e7f0520009c00001eae0000213d000000010440019000001eae0000c13d000000400020043f000000110400002900000000024104360000000f050000290000000004540019000200000004001d000000000334004b00001eac0000213d00000011040000290000001f0740018f0000000f030000290000000203300367000000050840027200001d790000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000584004b00001d710000413d000000000470004c00001d880000613d0000000504800210000000000343034f00000000044200190000000305700210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000100000007001d00000011030000290000000003320019000000000003043500000e7e0300004100000e7e0420009c00000000020380190000004002200210000000000101043300000e7e0410009c00000000010380190000006001100210000000000121019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000801002000039000400000008001d39f239ed0000040f000000010220019000001eac0000613d000000000101043b0000000a02000029000000000121004b00001ec90000c13d0000000b0100002900000000001004350000000701000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000000e0700002900001eac0000613d000000400200043d00000010030000290000000203300367000000000101043b000000000470004c00001dc20000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001dba0000413d0000000d05000029000000000450004c00001dd20000613d0000000504700210000000000343034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f000000000034043500000012030000290000000003320019000000000013043500000e7e0100004100000e7e0320009c000000000201801900000040022002100000000603000029000000000232019f000000000300041400000e7e0430009c0000000001034019000000c001100210000000000121019f00000e86011001c7000080100200003939f239ed0000040f000000010220019000001eac0000613d000000000101043b00000009020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000004080000290000000e07000029000000010220019000001eac0000613d000000000101043b000000000001041b0000000003000031000000120100002900000e7f0110009c00001eae0000213d00000012010000290000003f011000390000000802000029000000000121016f000000400200043d0000000001120019000000000421004b0000000004000019000000010400403900000e7f0510009c00001eae0000213d000000010440019000001eae0000c13d000000400010043f0000001204000029000000000142043600000010050000290000000004540019000000000334004b00001eac0000213d00000010030000290000000203300367000000000470004c00001e1c0000613d000000000400001900000005054002100000000006510019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001e140000413d0000000d05000029000000000450004c00001e2c0000613d0000000504700210000000000343034f00000000044100190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000120300002900000000013100190000000000010435000000400400043d00000003010000290000000001140019000000000341004b0000000003000019000000010300403900000e7f0510009c00001eae0000213d000000010330019000001eae0000c13d0000000003000031000000400010043f000000110100002900000000011404360000000205000029000000000335004b00001eac0000213d0000000f030000290000000203300367000000000580004c00001e4d0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b00001e450000413d0000000106000029000000000560004c00001e5d0000613d0000000505800210000000000353034f00000000055100190000000306600210000000000705043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f000000000035043500000011030000290000000001310019000000000001043500000005010000290000000c0300002939f221710000040f000000400100043d0000002002100039000000800300003900000000003204350000000b020000290000000000210435000000800210003900000012030000290000000000320435000000a002100039000000100300002900000002033003670000000e07000029000000000470004c00001e7b0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b00001e730000413d0000000d05000029000000000450004c00001e8b0000613d0000000504700210000000000343034f00000000044200190000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f000000000034043500000012030000290000000002320019000000000002043500000060021000390000000a040000290000000000420435000000400210003900000009040000290000000000420435000000bf023000390000000803000029000000000232016f00000e7e0300004100000e7e0410009c0000000001038019000000400110021000000e7e0420009c00000000020380190000006002200210000000000112019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000800d02000039000000010300003900000f320400004139f239e80000040f000000010120019000001eac0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f33030000410000000000320435000000440210003900000f3403000041000000000032043500000024021000390000002303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f30030000410000000000320435000000440210003900000f3103000041000000000032043500000024021000390000002103000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000e00000000000200010000000a001d000000000b000410000000000a000411000000000aba004b000020900000c13d000a00000001001d000200000002001d000e00000007001d000300000005001d000400000004001d000500000003001d000600000008001d000700000009001d000900000006001d00000e8103600198000020a20000613d0000000002b3004b000020a20000613d000c00000003001d00000e8102b0019700000f3601b0009c000d00000002001d00001f530000413d00000000002004350000000b01000039000b00000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d000000000101043b0000000d020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d000000000101043b000000000301041a000000010100008a000000000113004b0000000d0200002900001f530000613d0000000e01000029000000000113004b000020f00000413d000800000003001d000000000120004c000021020000613d00000000002004350000000b01000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d000000000101043b0000000d020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d0000000e0200002900000008030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000000d05000029000000000605001939f239e80000040f000000010120019000001f550000c13d000020570000013d000000000120004c000020d50000613d0000000d0100002900000000001004350000000a01000039000b00000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d0000000b02000029000000000101043b000000000301041a0000000e01000029000800000003001d000000000113004b000020ba0000413d0000000d010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d0000000e0200002900000008030000290000000002230049000000000101043b000000000021041b0000000c0100002900000000001004350000000b01000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000020570000613d000000010200008a0000000e04000029000000000324013f000000000101043b000000000201041a000000000332004b000020cf0000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000d050000290000000c0600002939f239e80000040f0000000101200190000020570000613d000000400100043d0000000e02000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000000a020000290000ffff0520018f0000800d02000039000000030300003900000f3704000041000d00000005001d0000000c0600002939f239e80000040f0000000101200190000020570000613d00000f210100004100000000001004390000000901000029000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000020570000613d000000000101043b000000000110004c000020440000613d00000f210100004100000000001004390000000c01000029000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000020570000613d000000000101043b000000000110004c000020570000613d000000400a00043d0000002401a00039000000c002000039000000000021043500000f380100004100000000001a0435000000c401a00039000000050900002900000000009104350000000401a000390000000d0200002900000000002104350000001f0390018f000000e402a0003900000002040000290000000204400367000000050590027200001ffc0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001ff40000413d000000000630004c00000007080000290000000e070000290000200d0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000392001900000000000304350000008403a0003900000000007304350000006403a0003900000003040000290000000000430435000000040300002900000e7f033001970000004404a0003900000000003404350000001f03900039000000200900008a000000000393016f00000000033200190000000001130049000000a402a0003900000000001204350000001f0280018f00000000018304360000000603000029000000020330036700000005048002720000202e0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000020260000413d000000000520004c0000203d0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000000281001900000000000204350000000c02000029000000040320008c000020590000c13d0000000104000031000020780000013d000000400100043d0000000c02000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000010300003900000f390400004139f239e80000040f00000001012001900000208f0000c13d0000000001000019000039f4000104300000001f03800039000000000393016f0000000003a30049000000000113001900000e7e0500004100000e7e03a0009c000000000305001900000000030a4019000000400330021000000e7e0410009c00000000010580190000006001100210000000000131019f000000010400002900000e7e0340009c00000000030500190000000003044019000000c003300210000000000131019f000e0000000a001d000d00000009001d39f239e80000040f0000000d090000290000000e0a0000290000000003010019000000600330027000010e7e0030019d00000e7e0430019700030000000103550000000102200190000021170000613d0000001f01400039000000000291016f0000000001a20019000000000221004b0000000002000019000000010200403900000e7f0310009c000020ea0000213d0000000102200190000020ea0000c13d000000400010043f00000e80010000410000000102000031000000000320004c0000000003000019000000000301401900000e8002200197000000000420004c000000000100a01900000e800220009c000000000103c019000000000110004c000020570000c13d000000000001042d000000400100043d000000440210003900000f3503000041000000000032043500000024021000390000001f03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000840210003900000f3a030000410000000000320435000000640210003900000f3b030000410000000000320435000000440210003900000f3c03000041000000000032043500000024021000390000005403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f3d011001c7000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000440210003900000f1603000041000000000032043500000024021000390000001d03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400200043d0000001f0340018f0000000504400272000021240000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000211c0000413d000000000530004c000021330000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f400010430000000000200041a00000e81022001970000000003000411000000000232004b0000215e0000c13d0000000602000039000000000302041a000001000400008a000000000343016f000000000110004c0000000001000019000000010100c039000000000313019f000000000032041b000000400200043d000000000012043500000e7e01000041000000000300041400000e7e0430009c000000000301801900000e7e0420009c00000000010240190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000010300003900000f3e0400004139f239e80000040f00000001012001900000216f0000613d000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300000000001000019000039f4000104300010000000000002000000000a0200190000000056040434000000000260004c000024ad0000613d00000001024000390000000002020433000000ff02200190000021aa0000613d000000010220008c000024d70000c13d000000200260008c000024e90000a13d000000280260008c000024950000a13d000000480260008c000024fb0000a13d000000510260008c000024950000413d000d00000003001d000500000005001d0000002d024000390000000002020433000700000002001d00000029024000390000000002020433000a00000002001d000000400800043d00000051074000390000000002070433000400000002001d00000049024000390000000002020433000800000002001d000000510960008c000e0000000a001d000b00000004001d000900000008001d000022210000613d0000001f0290019000000000030000190000002003006039000000000523019f00000000025800190000000003920019000000000632004b000021a50000813d000000000675001900000000650604340000000002520436000000000532004b000021a10000413d00000000009804350000001f03200039000000200200008a000000000223016f000022220000013d000c00000001001d000000290160008c0000250d0000c13d00000029014000390000000001010433000d00000001001d0000002d014000390000000001010433000e00000001001d00000efb010000410000000000100439000000000100041200000004001004430000002001000039000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000e04000029000000600340027000000f460440009c00000000050300190000dead0500403900000001022001900000248d0000613d000000000101043b0000000d0200002900000e7f02200198000021d00000613d000000010300008a00000000432300d9000000000313004b0000248f0000413d000000000350004c000024bf0000613d0000000003000410000000000335004b000024bf0000613d00000000142100a9000000010100008a000000000314013f0000000c01000039000000000201041a000b00000003001d000000000332004b0000248f0000213d0000000002420019000000000021041b00000000005004350000000a01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c70000801002000039000e00000005001d000d00000004001d39f239ed0000040f00000001022001900000248d0000613d000000000101043b000000000201041a0000000b03000029000000000332004b0000000d040000290000248f0000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a0400004100000000050000190000000e0600002939f239e80000040f0000000e0600002900000001012001900000248d0000613d000000400100043d0000000d02000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000000c020000290000ffff0520018f0000800d02000039000000030300003900000f370400004139f239e80000040f00000001012001900000248c0000c13d0000248d0000013d0000000002080436000000400020043f0000ffff0110018f000c00000001001d00000000001004350000000701000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000400200043d000000000301043b0000000e080000290000000001080433000000000410004c0000000004210019000022440000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b0000223a0000413d000000000515004b000022440000a13d0000000000040435000000000034043500000e7e0300004100000e7e0420009c00000000020380190000004002200210000000200110003900000e7e0410009c00000000010380190000006001100210000000000121019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000000201043b0000000d0100002900000e7f01100197000d00000001001d0000000000100435000300000002001d000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000000101043b000000000101041a000600000001001d00000efb010000410000000000100439000000000100041200000004001004430000002001000039000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f00000001022001900000248d0000613d000000000101043b0000000a0200002900000e7f02200198000022840000613d000000010300008a00000000432300d9000000000313004b0000248f0000413d0000000603000029000000ff03300190000000001e2100a90000000002000410000022900000613d00000000010004150000000f0110008a00000020011000c9000f00000000001d00000000040004140000000703000029000022e70000013d00000e8104200197000100000002001d00000f360120009c000024bf0000413d000000000140004c000024bf0000613d000000010100008a00000000031e013f0000000c01000039000000000201041a000600000003001d000000000332004b0000248f0000213d000a0000000e001d0000000002e20019000000000021041b000200000004001d00000000004004350000000a01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000000101043b000000000201041a0000000603000029000000000332004b0000000a0300002900000002060000290000248f0000213d0000000002320019000000000021041b000000400100043d000000000031043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a04000041000000000500001939f239e80000040f00000001012001900000248d0000613d0000000d0100002900000000001004350000000301000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000001000415000000100110008a00000020011000c9000000040200002900000e7f04200197001000000000001d000000070300002900000001020000290000000a0e0000290000006005300270000000200110011a000000000104001f0000000001000414000000400d00043d0000004403d00039000001000600003900000000006304350000002003d0003900000f400600004100000000006304350000002406d000390000000c0700002900000000007604350000000e0c00002900000000070c04330000012408d0003900000000007804350000014408d00039000000000970004c000023080000613d0000000009000019000000000a8900190000002009900039000000000bc90019000000000b0b04330000000000ba0435000000000a79004b000022fd0000413d000000000979004b000023080000a13d00000000098700190000000000090435000000c409d000390000000000e90435000000a409d0003900000000005904350000008405d00039000000080900002900000000009504350000006405d000390000000d0900002900000000009504350000001f05700039000000200900008a000000000595016f00000000078500190000000005670049000000e406d000390000000000560435000000090b00002900000000050b04330000000006570436000000000750004c0000232c0000613d000000000a0900190000000007000019000000000867001900000020077000390000000009b7001900000000090904330000000000980435000000000857004b000023200000413d000000000757004b00000000090a00190000232c0000a13d000000000765001900000000000704350000010407d0003900000000004704350000000004d600490000001f05500039000000000595016f0000000004540019000000200540008a00000000005d04350000001f04400039000000000494016f0000000008d40019000000000448004b0000000004000019000000010400403900000e7f0580009c000024a70000213d0000000104400190000024a70000c13d000000400080043f00000f1c0480009c000024a70000213d000000c004800039000000400040043f0000009604000039000000000a480436000000000400003100000002044003670000000005000019000000050650021000000000076a0019000000000664034f000000000606043b00000000006704350000000105500039000000050650008c000023480000413d000000040420008c000800000009001d000900000008001d000023570000c13d000000010700003900000001010000310000236e0000013d00000e7e0400004100000e7e0530009c0000000003048019000000400330021000000000060d043300000e7e0560009c000000000504001900000000050640190000006005500210000000000535019f00000e7e0310009c0000000001048019000000c001100210000000000115019f000a0000000a001d39f239e80000040f0000000a0a0000290000000908000029000000010720018f0003000000010355000000600110027000010e7e0010019d00000e7e01100197000000960210008c0000009603000039000000000301401900000000003804350000000101000031000000000113004b0000248d0000213d00000003020003670000001f0130018f0000000503300272000023820000613d0000000004000019000000050540021000000000065a0019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b0000237a0000413d000a00000007001d000000000410004c0000000b05000029000023930000613d0000000503300210000000000232034f00000000033a00190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f000000000013043500000e7e01000041000000050300002900000e7e0230009c000000000201001900000000020340190000004002200210000000000305043300000e7e0430009c00000000030180190000006003300210000000000223019f000000000300041400000e7e0430009c0000000001034019000000c001100210000000000121019f00000e86011001c7000080100200003939f239ed0000040f0000000a03000029000000000330004c000023df0000613d00000001022001900000248d0000613d000000000201043b000000400100043d000000600300003900000000043104360000000e09000029000000000309043300000060051000390000000000350435000000000530004c000023c20000613d0000008005100039000000000600001900000000075600190000002006600039000000000896001900000000080804330000000000870435000000000736004b000023b70000413d000000000636004b000023c20000a13d00000000055300190000000000050435000000400510003900000000002504350000000d0200002900000000002404350000009f023000390000000803000029000000000232016f00000e7e0300004100000e7e0410009c0000000001038019000000400110021000000e7e0420009c00000000020380190000006002200210000000000112019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000800d02000039000000020300003900000f41040000410000000c0500002939f239e80000040f00000001012001900000248c0000c13d0000248d0000013d0000000b0300002900000001022001900000248d0000613d000000000101043b000a00000001001d0000000c0100002900000000001004350000000501000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000400200043d000000000301043b0000000e080000290000000001080433000000000410004c0000000004210019000024040000613d000000000500001900000000062500190000002005500039000000000785001900000000070704330000000000760435000000000615004b000023fa0000413d000000000515004b000024040000a13d0000000000040435000000000034043500000e7e0300004100000e7e0420009c00000000020380190000004002200210000000200110003900000e7e0410009c00000000010380190000006001100210000000000121019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000000101043b0000000d020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f00000001022001900000248d0000613d000000000101043b0000000a02000029000000000021041b000000400100043d0000002002100039000000a00300003900000000003204350000000c0200002900000000002104350000000e080000290000000002080433000000a0031000390000000000230435000000c003100039000000000420004c0000000b070000290000000809000029000024440000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b000024390000413d000000000424004b000024440000a13d0000000004320019000000000004043500000040041000390000000d0500002900000000005404350000001f02200039000000000292016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000430004c00000009080000290000245e0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000024530000413d000000000434004b0000245e0000a13d000000000423001900000000000404350000001f03300039000000000393016f000000000223001900000000031200490000008004100039000000000034043500000000030804330000000002320436000000000430004c000024740000613d000000000400001900000000052400190000002004400039000000000684001900000000060604330000000000650435000000000534004b000024690000413d000000000434004b000024740000a13d000000000423001900000000000404350000001f03300039000000000393016f0000000002120049000000000232001900000e7e0300004100000e7e0420009c0000000002038019000000600220021000000e7e0410009c00000000010380190000004001100210000000000112019f000000000200041400000e7e0420009c0000000002038019000000c002200210000000000112019f00000e86011001c70000800d02000039000000010300003900000f1d0400004139f239e80000040f00000001012001900000248d0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000440210003900000f4303000041000000000032043500000024021000390000001403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000440210003900000f4703000041000000000032043500000024021000390000001303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000840210003900000f3a030000410000000000320435000000640210003900000f3b030000410000000000320435000000440210003900000f3c03000041000000000032043500000024021000390000005403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f3d011001c7000039f400010430000000400100043d000000440210003900000f3f03000041000000000032043500000024021000390000001c03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f4403000041000000000032043500000024021000390000001503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f4203000041000000000032043500000024021000390000001503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f4503000041000000000032043500000024021000390000001803000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300002000000000002000200000002001d000000000200041a00000e81022001970000000003000411000000000232004b000025570000c13d00000e8101100197000100000001001d00000000001004350000000f01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000025550000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000203000029000000000330004c0000000003000019000000010300c039000000000232019f000000000021041b000000400100043d000000200210003900000000003204350000000102000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f03011001c70000800d02000039000000010300003900000f480400004139f239e80000040f0000000101200190000025550000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300003000000000002000300000003001d000200000002001d0000001002000039000000000202041a00000e81022001970000000003000411000000000223004b000025c30000c13d00000e810110019700000000001004350000000f01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000025bb0000613d000000000101043b000000000101041a000000ff01100190000025d80000c13d000000020100002900000e81051001980000000304000029000025ed0000613d000000010100008a000000000314013f0000000c01000039000000000201041a000200000003001d000000000332004b000025bd0000213d0000000002420019000000000021041b000100000005001d00000000005004350000000a01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000025bb0000613d000000000101043b000000000201041a0000000203000029000000000332004b00000003030000290000000106000029000025bd0000213d0000000002320019000000000021041b000000400100043d000000000031043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a04000041000000000500001939f239e80000040f0000000101200190000025bb0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f49030000410000000000320435000000440210003900000f4a03000041000000000032043500000024021000390000002b03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f4b030000410000000000320435000000440210003900000f4c03000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f4d03000041000000000032043500000024021000390000001f03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f40001043000040000000000020000001003000039000000000303041a00000e81033001970000000004000411000000000334004b000026100000613d0000001203000039000000000303041a00000e8103300197000000000334004b000026100000613d0000001103000039000000000303041a00000e8103300197000000000334004b000026880000c13d000400000002001d00000e8101100198000026580000613d000300000001001d00000000001004350000000a01000039000200000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000026560000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b0000266d0000413d000000030100002900000000001004350000000201000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000026560000613d000000040400002900000001020000290000000002420049000000000101043b000000000021041b0000000c01000039000000000201041a000000000342004b000026820000413d0000000002420049000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000305000029000000000600001939f239e80000040f0000000101200190000026560000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f53030000410000000000320435000000440210003900000f5403000041000000000032043500000024021000390000002103000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f51030000410000000000320435000000440210003900000f5203000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000840210003900000f4e030000410000000000320435000000640210003900000f4f030000410000000000320435000000440210003900000f5003000041000000000032043500000024021000390000005303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f3d011001c7000039f4000104300003000000000002000300000001001d0000000001000411000200000001001d00000000001004350000001301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000026ed0000613d000000000101043b000000000101041a000000ff01100190000026f50000613d000000020100002900000e810510019800000003040000290000270a0000613d000000010100008a000000000314013f0000000c01000039000000000201041a000200000003001d000000000332004b000026ef0000213d0000000002420019000000000021041b000100000005001d00000000005004350000000a01000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000026ed0000613d000000000101043b000000000201041a0000000203000029000000000332004b00000003030000290000000106000029000026ef0000213d0000000002320019000000000021041b000000400100043d000000000031043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a04000041000000000500001939f239e80000040f0000000101200190000026ed0000613d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f55030000410000000000320435000000440210003900000f5603000041000000000032043500000024021000390000002903000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f4d03000041000000000032043500000024021000390000001f03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300004000000000002000400000001001d0000000001000411000300000001001d00000000001004350000001301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000027770000613d000000000101043b000000000101041a000000ff01100190000027790000613d000000030100002900000e81011001980000278e0000613d000300000001001d00000000001004350000000a01000039000200000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000027770000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b000027a30000413d000000030100002900000000001004350000000201000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000027770000613d000000040400002900000001020000290000000002420049000000000101043b000000000021041b0000000c01000039000000000201041a000000000342004b000027b80000413d0000000002420049000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000305000029000000000600001939f239e80000040f0000000101200190000027770000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f55030000410000000000320435000000440210003900000f5603000041000000000032043500000024021000390000002903000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f53030000410000000000320435000000440210003900000f5403000041000000000032043500000024021000390000002103000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f51030000410000000000320435000000440210003900000f5203000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f40001043000060000000000020000001106000039000000000406041a00000e81054001970000000004000411000000000454004b000028220000c13d00000e8101100198000028370000613d000100000006001d000600000003001d00000e8102200198000300000002001d0000284c0000613d000400000001001d00000000001004350000000a01000039000500000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000028200000613d0000000502000029000000000101043b000000000301041a0000000601000029000200000003001d000000000113004b000028610000413d00000004010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000028200000613d000000060200002900000002030000290000000002230049000000000101043b000000000021041b000000030100002900000000001004350000000501000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000028200000613d000000010200008a0000000604000029000000000324013f000000000101043b000000000201041a000000000332004b000028760000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000405000029000000030600002939f239e80000040f0000000101200190000028200000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f57030000410000000000320435000000440210003900000f5803000041000000000032043500000024021000390000002a03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0d030000410000000000320435000000440210003900000f0e03000041000000000032043500000024021000390000002303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000000101000029000000040010043f00000e9001000041000039f40001043000050000000000020000001204000039000000000404041a00000e81044001970000000005000411000000000445004b000028880000613d0000001104000039000000000404041a00000e8104400197000000000445004b000029290000c13d00000e8101100198000028e40000613d000500000003001d00000e8102200198000200000002001d000028f90000613d000300000001001d00000000001004350000000a01000039000400000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000028e20000613d0000000402000029000000000101043b000000000301041a0000000501000029000100000003001d000000000113004b0000290e0000413d00000003010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000028e20000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000020100002900000000001004350000000401000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000028e20000613d000000010200008a0000000504000029000000000324013f000000000101043b000000000201041a000000000332004b000029230000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000305000029000000020600002939f239e80000040f0000000101200190000028e20000613d000000000001042d0000000001000019000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0d030000410000000000320435000000440210003900000f0e03000041000000000032043500000024021000390000002303000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f59030000410000000000320435000000440210003900000f5a03000041000000000032043500000024021000390000003c03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300003000000000002000200000003001d000300000002001d000000000200041a00000e81032001970000000002000411000000000223004b000029b90000c13d00000f21020000410000000000200439000100000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000029a50000613d000000000101043b000000000110004c000029a70000613d00000f210100004100000000001004390000000301000029000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000029a50000613d000000000101043b000000000110004c000029a70000613d00000f210100004100000000001004390000000201000029000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000029a50000613d000000000101043b000000000110004c000029a70000613d000000010100002900000e81011001970000001002000039000000000302041a00000e8503300197000000000313019f000000000032041b000000030200002900000e81022001970000001103000039000000000403041a00000e8504400197000000000424019f000000000043041b000000020300002900000e81033001970000001204000039000000000504041a00000e8505500197000000000535019f000000000054041b000000400400043d0000004005400039000000000035043500000020034000390000000000230435000000000014043500000e7e01000041000000000200041400000e7e0320009c000000000201801900000e7e0340009c00000000010440190000004001100210000000c002200210000000000112019f00000f2b011001c70000800d02000039000000010300003900000f5b0400004139f239e80000040f0000000101200190000029a50000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f5c03000041000000000032043500000024021000390000001803000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300001000000000002000000000200041a00000e81022001970000000003000411000000000232004b000029fc0000c13d00000e8101100197000100000001001d00000000001004350000001301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000029fa0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b000000400100043d000000010200002900000000022104360000000103000039000000000032043500000e7e02000041000000000400041400000e7e0540009c000000000402801900000e7e0510009c00000000010280190000004001100210000000c002400210000000000112019f00000f03011001c70000800d0200003900000f5d0400004139f239e80000040f0000000101200190000029fa0000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300001000000000002000000000200041a00000e81022001970000000003000411000000000232004b00002a3e0000c13d00000e8101100197000100000001001d00000000001004350000001301000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002a3c0000613d000000000101043b000000000201041a000001000300008a000000000232016f000000000021041b000000400100043d00000001020000290000000002210436000000000002043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f03011001c70000800d02000039000000010300003900000f5d0400004139f239e80000040f000000010120019000002a3c0000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300011000000000002001100000006001d000600000005001d000a00000004001d000c00000003001d000800000001001d0000ffff0120018f000f00000001001d00000000001004350000000801000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000400200043d00000f5e0320009c00002e3e0000813d000000000101043b0000004003200039000000400030043f000000000101041a0000ffff0310018f000000000332043600000f5f011001980000000001000019000000010100c03900000000001304350000000001000411000900000001001d00002a7e0000613d00000000010204330000ffff0110018f0000000a04000029000000000240004c00002a8a0000613d000000010200008a00000000324200d9000000000212004b00002a8a0000813d00002e4a0000013d0000000901000039000000000101041a0000ffff01100190001000000000001d00002b580000613d0000000a04000029000000000240004c00002a8a0000613d000000010200008a00000000324200d9000000000212004b00002e4a0000413d00000000214100a9000027100210008c001000000000001d00002b580000413d0000000902000039000000000202041a000000100220027000000e810420019800002ec80000613d0000000002000410000000000324004b00002ec80000613d000b00000004001d000027101310011a001000000003001d000000080100002900000e8103100197000000000123004b000e00000003001d00002b030000613d0000000901000029000000000113004b00002b030000613d00000000003004350000000b01000039000700000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000090200002900000e8102200197000d00000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000201041a000000010100008a000000000112004b0000000e0300002900002b030000613d0000001001000029000000000112004b00002f690000413d000000000130004c00002f7b0000613d000500000002001d0000000d01000029000000000110004c00002f900000613d00000000003004350000000701000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b0000000d020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000100200002900000005030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000000e050000290000000d0600002939f239e80000040f000000010120019000002b050000c13d00002e3c0000013d000000000130004c00002fa50000613d0000000e0100002900000000001004350000000a01000039000d00000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d0000000d02000029000000000101043b000000000301041a0000001001000029000700000003001d000000000113004b00002f3f0000413d0000000e010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000100200002900000007030000290000000002230049000000000101043b000000000021041b0000000b0100002900000000001004350000000d01000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000010200008a0000001004000029000000000324013f000000000101043b000000000201041a000000000332004b00002e4a0000213d0000000002420019000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000e050000290000000b0600002939f239e80000040f000000010120019000002e3c0000613d00000002010003670000001102000029000000000221034f000000000202043b000400000002001d00000e810220009c00002e3c0000213d00000011020000290000002002200039000000000221034f000000000202043b000300000002001d00000e810220009c00002e3c0000213d00000011040000290000004002400039000000000321034f000000000200003100000000044200490000001f0440008a000000000303043b00000e8005000041000000000643004b0000000006000019000000000605801900000e800440019700000e8007300197000000000847004b0000000005008019000000000447013f00000e800440009c00000000040600190000000004056019000000000440004c00002e3c0000c13d00000011040000290000000003430019000000000131034f000000000101043b00000e7f0410009c00002e3c0000213d0000000005120049000000200430003900000e8003000041000000000654004b0000000006000019000000000603201900000e800550019700000e8007400197000000000857004b0000000003008019000000000557013f00000e800550009c000000000306c019000000000330004c00002e3c0000c13d0000003f03100039000000200500008a000e00000005001d000000000353016f000000400500043d0000000003350019000d00000005001d000000000553004b0000000005000019000000010500403900000e7f0630009c00002e3e0000213d000000010550019000002e3e0000c13d000000400030043f0000000d0300002900000000031304360000000005410019000000000225004b00002e3c0000213d0000001f0210018f0000000204400367000000050510027200002bb10000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00002ba90000413d000000000620004c00002bc00000613d0000000505500210000000000454034f00000000055300190000000302200210000000000605043300000000062601cf000000000626022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000262019f0000000000250435000000000113001900000000000104350000000d0300002900000000010304330000000602000039000000000202041a000000ff0220019000002c010000613d000000210110008c00002ef50000a13d00000022013000390000000001010433001100000001001d0000000f0100002900000000001004350000000201000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b0000000000000435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000101041a000000000210004c00002f070000613d0000001102000029000000000112004b00002c030000813d000000400100043d000000440210003900000f6003000041000000000032043500000024021000390000001b03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000000110004c00002f540000c13d00000efb0100004100000000001004390000000001000412000b00000001001d00000004001004430000002001000039000700000001001d000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000210004c00002e440000613d0000000a020000290000001003000029000000000232004900000000311200d9000a00000002001d000500000003001d0000000001320049001100000001001d000000080100002900000e81021001970000000901000029000000000112004b001000000002001d00002c880000613d00000000002004350000000b01000039000800000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000090200002900000e8102200197000900000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000301041a000000010100008a000000000113004b000000100200002900002c880000613d0000001101000029000000000113004b00002f690000413d000000000120004c00002f7b0000613d000200000003001d0000000901000029000000000110004c00002f900000613d00000000002004350000000801000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b00000009020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000110200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000001005000029000000090600002939f239e80000040f000000010120019000002c8a0000c13d00002e3c0000013d000000000120004c00002ee00000613d000000100100002900000000001004350000000a01000039000900000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000201041a0000001101000029000800000002001d000000000112004b00002e500000413d000000100100002900000000001004350000000901000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000110400002900000008020000290000000002420049000000000101043b000000000021041b0000000c01000039000000000201041a000000000342004b00002e4a0000413d0000000002420049000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a04000041000800000003001d0000001005000029000000000600001939f239e80000040f000000010120019000002e3c0000613d0000000a010000290000000502000029000000000121004b00002e650000613d00000efb0100004100000000001004390000000b0100002900000004001004430000000701000029000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000210004c00002e440000613d000000110200002900000000211200d9000000400300043d00000f010210009c00002e770000813d000000c001100210000000410230003900000000001204350000002001300039000000000001043500000021013000390000000c0200002900000000002104350000002901000039000000000013043500000f650130009c00002e3e0000213d000a00000003001d0000006001300039000000400010043f0000000001000416000200000001001d0000000f0100002900000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b00002e880000c13d000000400400043d0000000005640436000000000330004c000900000004001d00002d360000613d000100000006001d000500000005001d000000000010043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d0000000107000029000000000270004c00002d3c0000613d000000000201043b00000000010000190000000a0500002900000005060000290000000003610019000000000402041a000000000043043500000001022000390000002001100039000000000371004b00002d2e0000413d00002d3f0000013d000001000100008a000000000112016f000000000015043500000040014000390000000a0500002900002d410000013d00000000010000190000000a0500002900000005060000290000000001610019000000090400002900000000014100490000001f011000390000000e02000029000000000221016f0000000001420019000000000221004b0000000002000019000000010200403900000e7f0310009c00002e3e0000213d000000010220019000002e3e0000c13d000000400010043f0000000002040433000000000220004c00002e8e0000613d0000000001050433000500000001001d0000000f0100002900000000001004350000000801000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000101041a000000000210004c00002710010060390000000502000029000000000121004b00002ea20000413d00000efb0100004100000000001004390000000b010000290000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b00000f2102000041000000000020043900000e8101100197000b00000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f000000010220019000002e3c0000613d000000000101043b000000000110004c00002e3c0000613d000000400900043d0000002401900039000000c002000039000000000021043500000f6601000041000000000019043500000004019000390000000f02000029000000000021043500000009080000290000000002080433000000c4039000390000000000230435000000e403900039000000000420004c0000000a0700002900002da70000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b00002d9c0000413d000000000424004b00002da70000a13d000000000432001900000000000404350000001f022000390000000e04000029000000000242016f000000000232001900000000031200490000004404900039000000000034043500000000030704330000000002320436000000000430004c00002dbe0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00002db30000413d000000000434004b00002dbe0000a13d00000000042300190000000000040435000000030400002900000e810440019700000084059000390000000000450435000000040400002900000e8104400197000000640590003900000000004504350000001f033000390000000e04000029000000000343016f00000000032300190000000001130049000000a40290003900000000001204350000000d0600002900000000020604330000000001230436000000000320004c00002dde0000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b00002dd30000413d000000000323004b00002dde0000a13d0000000003120019000000000003043500000000030004140000000b05000029000000040450008c00002de40000c13d000000010400003100002e0a0000013d0000001f022000390000000e04000029000000000242016f0000000001910049000000000121001900000e7e0200004100000e7e0410009c0000000001028019000000600110021000000e7e0490009c000d00000009001d000000000402001900000000040940190000004004400210000000000141019f00000e7e0430009c0000000002034019000000c002200210000000000112019f0000000203000029000000000230004c00002e000000613d00000e86011001c700008009020000390000000004050019000000000500001939f239e80000040f00002e020000013d000000000205001939f239e80000040f00030000000103550000000003010019000000600330027000010e7e0030019d00000e7e0430019700000001022001900000000d0900002900002f190000613d0000001f014000390000000e02000029000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e7f0310009c00002e3e0000213d000000010220019000002e3e0000c13d000000400010043f00000e80020000410000000103000031000000000430004c0000000004000019000000000402401900000e8003300197000000000530004c000000000200a01900000e800330009c000000000204c019000000000220004c00002e3c0000c13d0000001102000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000040300003900000f67040000410000000f0500002900000010060000290000000c0700002939f239e80000040f000000010120019000002e3c0000613d00000006010000290000001102000029000000000112004b00002eb30000413d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000001201000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f51030000410000000000320435000000440210003900000f5203000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000000703000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f6e03000041000000000032043500000024021000390000001903000039000000000032043500000e8d02000041000000000021043500000004021000390000000703000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000440130003900000f6d02000041000000000021043500000024013000390000001a02000039000000000021043500000e8d01000041000000000013043500000004013000390000000702000029000000000021043500000e7e0100004100000e7e0230009c0000000001034019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f400010430000000640210003900000f6b030000410000000000320435000000440210003900000f6c03000041000000000032043500000024021000390000003003000039000000000032043500000e8d02000041000000000021043500000004021000390000000703000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f6a03000041000000000032043500000e8d0200004100000000002104350000002402100039000000070300002900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f68030000410000000000320435000000440210003900000f6903000041000000000032043500000024021000390000002d03000039000000000032043500000e8d02000041000000000021043500000004021000390000000703000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000840210003900000f3a030000410000000000320435000000640210003900000f3b030000410000000000320435000000440210003900000f3c03000041000000000032043500000024021000390000005403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f3d011001c7000039f400010430000000400100043d000000640210003900000f53030000410000000000320435000000440210003900000f5403000041000000000032043500000024021000390000002103000039000000000032043500000e8d02000041000000000021043500000004021000390000000703000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f6203000041000000000032043500000024021000390000001c03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f6103000041000000000032043500000024021000390000001a03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400200043d0000001f0340018f000000050440027200002f260000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00002f1e0000413d000000000530004c00002f350000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f63030000410000000000320435000000440210003900000f6403000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f1603000041000000000032043500000024021000390000001d03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f12030000410000000000320435000000440210003900000f1303000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300013000000000002001300000009001d000a00000008001d001200000007001d000d00000006001d000600000005001d000f00000004001d000c00000003001d000900000001001d0000ffff0120018f001000000001001d00000000001004350000000801000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000400200043d00000f5e0320009c000034150000813d000000000101043b0000004003200039000000400030043f000000000101041a0000ffff0310018f000000000332043600000f5f011001980000000001000019000000010100c03900000000001304350000000001000411000e00000001001d00002fed0000613d00000000010204330000ffff0110018f0000000f02000029000000000220004c00002ffa0000613d000000010200008a0000000f0300002900000000323200d9000000000212004b00002ffa0000813d0000341b0000013d0000000901000039000000000101041a0000ffff01100190001100000000001d000030ca0000613d0000000f02000029000000000220004c00002ffa0000613d000000010200008a0000000f0300002900000000323200d9000000000212004b0000341b0000413d0000000f0200002900000000212100a9000027100210008c001100000000001d000030ca0000413d0000000902000039000000000202041a000000100220027000000e81042001980000349f0000613d0000000002000410000000000324004b0000349f0000613d000700000004001d000027101310011a001100000003001d000000090100002900000e8103100197000000000123004b000b00000003001d000030740000613d0000000e01000029000000000113004b000030740000613d00000000003004350000000b01000039000500000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b0000000e0200002900000e8102200197000800000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000201041a000000010100008a000000000112004b0000000b03000029000030740000613d0000001101000029000000000112004b000035400000413d000000000130004c000035520000613d000400000002001d0000000801000029000000000110004c000035670000613d00000000003004350000000501000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b00000008020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000110200002900000004030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000000b05000029000000080600002939f239e80000040f0000000101200190000030760000c13d000034130000013d000000000130004c0000357c0000613d0000000b0100002900000000001004350000000a01000039000800000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d0000000802000029000000000101043b000000000301041a0000001101000029000500000003001d000000000113004b000035160000413d0000000b010000290000000000100435000000200020043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000110200002900000005030000290000000002230049000000000101043b000000000021041b000000070100002900000000001004350000000801000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000010200008a0000001103000029000000000323013f000000000101043b000000000201041a000000000332004b0000341b0000213d00000011030000290000000002320019000000000021041b000000400100043d000000000031043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a040000410000000b05000029000000070600002939f239e80000040f0000000101200190000034130000613d00000002010003670000001302000029000000000221034f000000000202043b000500000002001d00000e810220009c000034130000213d00000013020000290000002002200039000000000221034f000000000202043b000400000002001d00000e810220009c000034130000213d00000013040000290000004002400039000000000221034f000000000300003100000000044300490000001f0440008a000000000202043b00000e8005000041000000000642004b0000000006000019000000000605801900000e800440019700000e8007200197000000000847004b0000000005008019000000000447013f00000e800440009c00000000040600190000000004056019000000000440004c000034130000c13d00000013040000290000000002420019000000000121034f000000000101043b00000e7f0410009c000034130000213d0000000004130049000000200220003900000e8005000041000000000642004b0000000006000019000000000605201900000e800440019700000e8007200197000000000847004b0000000005008019000000000447013f00000e800440009c00000000040600190000000004056019000000000440004c000034130000c13d000000120400002900000e7f0440009c000034150000213d00000012040000290000003f04400039000000200500008a001300000005001d000000000454016f000000400700043d0000000004470019000000000574004b0000000005000019000000010500403900000e7f0640009c000034150000213d0000000105500190000034150000c13d000000400040043f000700000007001d000000120500002900000000045704360000000d060000290000000005650019000000000335004b000034130000213d00000012060000290000001f0360018f0000000d05000029000000020550036700000005066002720000312b0000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000031230000413d000000000730004c0000313a0000613d0000000506600210000000000565034f00000000066400190000000303300210000000000706043300000000073701cf000000000737022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000373019f00000000003604350000001203000029000000000334001900000000000304350000003f031000390000001304000029000000000343016f000000400600043d0000000003360019000000000463004b0000000004000019000000010400403900000e7f0530009c000034150000213d0000000104400190000034150000c13d0000000004000031000000400030043f000d00000006001d00000000031604360000000005210019000000000445004b000034130000213d0000001f0410018f000000020220036700000005051002720000315d0000613d000000000600001900000005076002100000000008730019000000000772034f000000000707043b00000000007804350000000106600039000000000756004b000031550000413d000000000640004c0000316c0000613d0000000505500210000000000252034f00000000055300190000000304400210000000000605043300000000064601cf000000000646022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000262019f0000000000250435000000000113001900000000000104350000000d0300002900000000010304330000000602000039000000000202041a000000ff02200190000031b60000613d000000210110008c000034cc0000a13d00000022013000390000000001010433000b00000001001d000000100100002900000000001004350000000201000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000a0300002900000e7f03300197001200000003001d0000000102200190000034130000613d000000000101043b00000001020000390000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000010200008a0000001203000029000000000223013f000000000101043b000000000101041a000000000221004b0000341b0000213d000000000131001a000034de0000613d0000000b02000029000000000112004b000031b80000813d000000400100043d000000440210003900000f6003000041000000000032043500000024021000390000001b03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000000110004c0000352b0000c13d00000efb0100004100000000001004390000000001000412000b00000001001d00000004001004430000002001000039000800000001001d000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000210004c000034210000613d0000000f020000290000001103000029000000000232004900000000311200d9000f00000002001d000300000003001d0000000001320049001200000001001d000000090100002900000e81021001970000000e01000029000000000112004b001100000002001d0000323d0000613d00000000002004350000000b01000039000200000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b0000000e0200002900000e8102200197000900000002001d0000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000301041a000000010100008a000000000113004b00000011020000290000323d0000613d0000001201000029000000000113004b000035400000413d000000000120004c000035520000613d000100000003001d0000000901000029000000000110004c000035670000613d00000000002004350000000201000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b00000009020000290000000000200435000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000120200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f11040000410000001105000029000000090600002939f239e80000040f00000001012001900000323f0000c13d000034130000013d000000000120004c000034b70000613d000000110100002900000000001004350000000a01000039000900000001001d000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000201041a0000001201000029000200000002001d000000000112004b000034270000413d000000110100002900000000001004350000000901000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000120400002900000002020000290000000002420049000000000101043b000000000021041b0000000c01000039000000000201041a000000000342004b0000341b0000413d0000000002420049000000000021041b000000400100043d000000000041043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000030300003900000f0a04000041000900000003001d0000001105000029000000000600001939f239e80000040f0000000101200190000034130000613d0000000f010000290000000302000029000000000121004b0000343c0000613d00000efb0100004100000000001004390000000b0100002900000004001004430000000801000029000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000210004c000034210000613d000000120200002900000000211200d9000000400700043d00000f010210009c0000344e0000813d000000200270003900000f6f030000410000000000320435000000c001100210000000410270003900000000001204350000000a01000029000000c0011002100000006902700039000000000012043500000021017000390000000c0200002900000000002104350000000e0100002900000e81011001970000004902700039000000000012043500000007060000290000000001060433000000000210004c000032c00000613d0000007102700039000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b000032b50000413d000000000313004b000032c00000a13d000000000221001900000000000204350000005102100039000000000027043500000090011000390000001302000029000000000221016f0000000001720019000000000221004b0000000002000019000000010200403900000e7f0310009c000034150000213d0000000102200190000034150000c13d000f00000007001d000000400010043f0000000001000416000700000001001d000000100100002900000000001004350000000101000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000604001900000000060560190000001f0460008c00000000040000190000000104002039000000010440018f000000000443004b0000345f0000c13d000000400400043d0000000005640436000000000330004c000e00000004001d0000330d0000613d000300000006001d000a00000005001d000000000010043500000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f02011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d0000000307000029000000000270004c000033130000613d000000000201043b00000000010000190000000f050000290000000a060000290000000003610019000000000402041a000000000043043500000001022000390000002001100039000000000371004b000033050000413d000033160000013d000001000100008a000000000112016f000000000015043500000040014000390000000f05000029000033180000013d00000000010000190000000f050000290000000a0600002900000000016100190000000e0400002900000000014100490000001f011000390000001302000029000000000221016f0000000001420019000000000221004b0000000002000019000000010200403900000e7f0310009c000034150000213d0000000102200190000034150000c13d000000400010043f0000000002040433000000000220004c000034650000613d0000000001050433000a00000001001d000000100100002900000000001004350000000901000029000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000101041a000000000210004c00002710010060390000000a02000029000000000121004b000034790000413d00000efb0100004100000000001004390000000b010000290000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f0000000102200190000034130000613d000000000101043b00000f2102000041000000000020043900000e8101100197000b00000001001d000000040010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f22011001c7000080020200003939f239ed0000040f0000000102200190000034130000613d000000000101043b000000000110004c000034130000613d000000400900043d0000002401900039000000c002000039000000000021043500000f660100004100000000001904350000000401900039000000100200002900000000002104350000000e080000290000000002080433000000c4039000390000000000230435000000e403900039000000000420004c0000000f070000290000337e0000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b000033730000413d000000000424004b0000337e0000a13d000000000432001900000000000404350000001f022000390000001304000029000000000242016f000000000232001900000000031200490000004404900039000000000034043500000000030704330000000002320436000000000430004c000033950000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000338a0000413d000000000434004b000033950000a13d00000000042300190000000000040435000000040400002900000e810440019700000084059000390000000000450435000000050400002900000e8104400197000000640590003900000000004504350000001f033000390000001304000029000000000343016f00000000032300190000000001130049000000a40290003900000000001204350000000d0600002900000000020604330000000001230436000000000320004c000033b50000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b000033aa0000413d000000000323004b000033b50000a13d0000000003120019000000000003043500000000030004140000000b05000029000000040450008c000033bb0000c13d0000000104000031000033e10000013d0000001f022000390000001304000029000000000242016f0000000001910049000000000121001900000e7e0200004100000e7e0410009c0000000001028019000000600110021000000e7e0490009c000f00000009001d000000000402001900000000040940190000004004400210000000000141019f00000e7e0430009c0000000002034019000000c002200210000000000112019f0000000703000029000000000230004c000033d70000613d00000e86011001c700008009020000390000000004050019000000000500001939f239e80000040f000033d90000013d000000000205001939f239e80000040f00030000000103550000000003010019000000600330027000010e7e0030019d00000e7e0430019700000001022001900000000f09000029000034f00000613d0000001f014000390000001302000029000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e7f0310009c000034150000213d0000000102200190000034150000c13d000000400010043f00000e80020000410000000103000031000000000430004c0000000004000019000000000402401900000e8003300197000000000530004c000000000200a01900000e800330009c000000000204c019000000000220004c000034130000c13d0000001202000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000040300003900000f6704000041000000100500002900000011060000290000000c0700002939f239e80000040f0000000101200190000034130000613d00000006010000290000001202000029000000000112004b0000348a0000413d000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000001201000039000000040010043f00000e9001000041000039f400010430000000400100043d000000640210003900000f51030000410000000000320435000000440210003900000f5203000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000000803000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f6e03000041000000000032043500000024021000390000001903000039000000000032043500000e8d02000041000000000021043500000004021000390000000803000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000440170003900000f6d02000041000000000021043500000024017000390000001a02000039000000000021043500000e8d01000041000000000017043500000004017000390000000802000029000000000021043500000e7e0100004100000e7e0270009c0000000001074019000000400110021000000e8e011001c7000039f40001043000000e8f0100004100000000001004350000002201000039000000040010043f00000e9001000041000039f400010430000000640210003900000f6b030000410000000000320435000000440210003900000f6c03000041000000000032043500000024021000390000003003000039000000000032043500000e8d02000041000000000021043500000004021000390000000803000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f6a03000041000000000032043500000e8d0200004100000000002104350000002402100039000000080300002900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f68030000410000000000320435000000440210003900000f6903000041000000000032043500000024021000390000002d03000039000000000032043500000e8d02000041000000000021043500000004021000390000000803000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000840210003900000f3a030000410000000000320435000000640210003900000f3b030000410000000000320435000000440210003900000f3c03000041000000000032043500000024021000390000005403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f3d011001c7000039f400010430000000400100043d000000640210003900000f53030000410000000000320435000000440210003900000f5403000041000000000032043500000024021000390000002103000039000000000032043500000e8d02000041000000000021043500000004021000390000000803000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f6203000041000000000032043500000024021000390000001c03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f6103000041000000000032043500000024021000390000001a03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400200043d0000001f0340018f0000000504400272000034fd0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000034f50000413d000000000530004c0000350c0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f400010430000000400100043d000000640210003900000f0b030000410000000000320435000000440210003900000f0c03000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f63030000410000000000320435000000440210003900000f6403000041000000000032043500000024021000390000002603000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000440210003900000f1603000041000000000032043500000024021000390000001d03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f14030000410000000000320435000000440210003900000f1503000041000000000032043500000024021000390000002403000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f12030000410000000000320435000000440210003900000f1303000041000000000032043500000024021000390000002203000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f400010430000000400100043d000000640210003900000f0f030000410000000000320435000000440210003900000f1003000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300008000000000002000500000004001d000400000001001d000000000700003100000f010160009c000036a40000813d0000003f01600039000000200400008a000800000004001d000000000141016f000000400900043d0000000001190019000000000491004b0000000008000019000000010800403900000e7f0410009c000036a40000213d0000000104800190000036a40000c13d000600000003001d000300000002001d000000400010043f00000000016904360000000003560019000000000273004b000036aa0000213d0000001f0260018f00000002035003670000000504600272000035b80000613d000000000500001900000005075002100000000008710019000000000773034f000000000707043b00000000007804350000000105500039000000000745004b000035b00000413d000700000009001d000000000520004c000035c80000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001610019000000000001043500000efb0100004100000000001004390000000001000412000200000001001d00000004001004430000002001000039000100000001001d000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f00000001022001900000000709000029000036aa0000613d000000000101043b000000000210004c0000000602000029000036ac0000613d00000000211200d9000000400700043d00000f010210009c000036b20000813d000000c00110021000000041027000390000000000120435000000200170003900000000000104350000002101700039000000030200002900000000002104350000002901000039000000000017043500000f650170009c000036a40000213d0000006008700039000000400080043f000000a401700039000000a0020000390000000000210435000000000100041000000e81011001970000008402700039000000000012043500000f7001000041000000000018043500000004010000290000ffff0210018f000000640170003900000000002104350000010403700039000000000207043300000000002304350000012403700039000000000420004c000036120000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000036070000413d000000000424004b000036120000a13d00000000043200190000000000040435000600000008001d0000000504000029000000000440004c0000000004000019000000010400c039000000c40570003900000000004504350000001f022000390000000804000029000000000242016f00000000033200190000000001130049000000e40270003900000000001204350000000005090433000500000003001d0000000001530436000000000250004c000036310000613d000000000200001900000000031200190000002002200039000000000492001900000000040404330000000000430435000000000352004b000036260000413d000000000252004b000036310000a13d00000000011500190000000000010435000400000005001d00000efb01000041000000000010043900000002010000290000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c70000800502000039000700000007001d39f239ed0000040f000000070500002900000001022001900000000609000029000036aa0000613d000000000201043b000000000100041400000e8102200197000000040320008c0000364b0000c13d0000000103000031000036880000013d00000004030000290000001f033000390000000804000029000000000343016f00000005040000290000000004540049000000000334001900000e7e0400004100000e7e0590009c000000000504001900000000050940190000004005500210000000400330008a00000e7e0630009c00000000030480190000006003300210000000000353019f00000e7e0510009c0000000001048019000000c001100210000000000131019f39f239ed0000040f00000006090000290000000003010019000000600330027000000e7e03300197000000400430008c000000400500003900000000050340190000001f0450018f0000000505500272000036740000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000366c0000413d000000000640004c000036830000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f000300000001035500000001022001900000000705000029000036c30000613d0000001f013000390000000802000029000000000221016f0000000001920019000000000221004b0000000002000019000000010200403900000e7f0310009c000036a40000213d0000000102200190000036a40000c13d000000400010043f00000e80010000410000000102000031000000400320008c0000000003000019000000000301401900000e8002200197000000000420004c000000000100a01900000e800220009c000000000103c019000000000110004c000036aa0000c13d000000000109043300000080025000390000000002020433000000000001042d00000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f4000104300000000001000019000039f40001043000000e8f0100004100000000001004350000001201000039000000040010043f00000e9001000041000039f400010430000000440170003900000f6d02000041000000000021043500000024017000390000001a02000039000000000021043500000e8d01000041000000000017043500000004017000390000000102000029000000000021043500000e7e0100004100000e7e0270009c0000000001074019000000400110021000000e8e011001c7000039f400010430000000400200043d0000001f0430018f0000000503300272000036d00000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000036c80000413d000000000540004c000036df0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f400010430000a000000000002000800000006001d000900000003001d000000000f020019000000000d010019000000000200003100000f010150009c0000384f0000813d0000003f01500039000000200b00008a0000000001b1016f000000400e00043d00000000011e00190000000003e1004b0000000003000019000000010300403900000e7f0610009c0000384f0000213d00000001033001900000384f0000c13d000000400010043f00000000015e04360000000003450019000000000223004b000038550000213d0000001f0250018f000000020340036700000005045002720000370f0000613d0000000006000019000000050c600210000000000ac10019000000000cc3034f000000000c0c043b0000000000ca04350000000106600039000000000a46004b000037070000413d000000000620004c0000371e0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000604043300000000062601cf000000000626022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000262019f000000000024043500000000015100190000000000010435000000000200003100000e7f0190009c0000384f0000213d0000003f019000390000000001b1016f000000400a00043d00000000011a00190000000003a1004b0000000003000019000000010300403900000e7f0410009c0000384f0000213d00000001033001900000384f0000c13d000000400010043f00000000019a04360000000003890019000000000223004b000038550000213d0000001f0290018f00000002038003670000000504900272000037400000613d000000000500001900000005065002100000000008610019000000000663034f000000000606043b00000000006804350000000105500039000000000645004b000037380000413d00030000000f001d00040000000e001d00050000000a001d00060000000d001d000700000007001d000a0000000b001d000000000520004c000037550000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001910019000000000001043500000efb0100004100000000001004390000000001000412000200000001001d00000004001004430000002001000039000100000001001d000000240010044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003939f239ed0000040f00000001022001900000000a0800002900000007090000290000000607000029000000050b000029000000040a0000290000000305000029000038550000613d000000000101043b000000000210004c000038570000613d000000090200002900000000121200d900000f010120009c0000385d0000813d000000400100043d000000200310003900000f6f040000410000000000430435000000c002200210000000410310003900000000002304350000000802000029000000c0022002100000006903100039000000000023043500000021021000390000000000520435000000000200041100000e81022001970000004903100039000000000023043500000000020a0433000000000320004c000037970000613d00000071031000390000000004000019000000000534001900000020044000390000000006a4001900000000060604330000000000650435000000000524004b0000378c0000413d000000000424004b000037970000a13d00000000033200190000000000030435000000510320003900000000003104350000009002200039000000000282016f000000000a12001900000000022a004b0000000002000019000000010200403900000e7f03a0009c0000384f0000213d00000001022001900000384f0000c13d0000004000a0043f0000004402a00039000000a0030000390000000000320435000000000200041000000e81022001970000002403a00039000000000023043500000f700200004100000000022a0436000800000002001d0000ffff0370018f0000000402a0003900000000003204350000000003010433000000a404a000390000000000340435000000c404a00039000000000530004c000037c30000613d000000000500001900000000064500190000002005500039000000000715001900000000070704330000000000760435000000000635004b000037b80000413d000000000135004b000037c30000a13d00000000014300190000000000010435000000000190004c0000000001000019000000010100c0390000006405a0003900000000001504350000001f01300039000000000181016f000000000141001900000000022100490000008403a00039000000000023043500000000050b04330000000004510436000000000150004c000037de0000613d0000000001000019000000000241001900000020011000390000000003b1001900000000030304330000000000320435000000000251004b000037d30000413d000000000151004b000037de0000a13d00000000014500190000000000010435000600000005001d000700000004001d00000efb01000041000000000010043900000002010000290000000400100443000000240000044300000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f19011001c7000080050200003900090000000a001d39f239ed0000040f00000009090000290000000a040000290000000102200190000038550000613d000000000201043b000000000100041400000e8102200197000000040320008c000037f90000c13d0000000103000031000038340000013d00000006030000290000001f03300039000000000343016f00000007040000290000000004940049000000000334001900000e7e0400004100000e7e0590009c00000000050400190000000005094019000000400550021000000e7e0630009c00000000030480190000006003300210000000000353019f00000e7e0510009c0000000001048019000000c001100210000000000131019f39f239ed0000040f00000009090000290000000003010019000000600330027000000e7e03300197000000400430008c000000400500003900000000050340190000001f0450018f0000000505500272000038200000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000038180000413d000000000640004c0000382f0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f000300000001035500000001022001900000000a040000290000386f0000613d0000001f01300039000000000241016f0000000001920019000000000221004b0000000002000019000000010200403900000e7f0310009c0000384f0000213d00000001022001900000384f0000c13d000000400010043f00000e80010000410000000102000031000000400320008c0000000003000019000000000301401900000e8002200197000000000420004c000000000100a01900000e800220009c000000000103c019000000000110004c000038550000c13d000000000109043300000008020000290000000002020433000000000001042d00000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f4000104300000000001000019000039f40001043000000e8f0100004100000000001004350000001201000039000000040010043f00000e9001000041000039f400010430000000400100043d000000440210003900000f6d03000041000000000032043500000024021000390000001a03000039000000000032043500000e8d02000041000000000021043500000004021000390000000103000029000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400200043d0000001f0430018f00000005033002720000387c0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000038740000413d000000000540004c0000388b0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000e7e01000041000000010300003100000e7e0430009c000000000301801900000e7e0420009c000000000102401900000040011002100000006002300210000000000112019f000039f400010430000000000200041a00000e81022001970000000003000411000000000232004b000038b50000c13d0000ffff0110018f000027110210008c000038c60000813d0000000902000039000000000302041a00000f7103300197000000000313019f000000000032041b000000400200043d000000000012043500000e7e01000041000000000300041400000e7e0430009c000000000301801900000e7e0420009c00000000010240190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000010300003900000f720400004139f239e80000040f0000000101200190000038db0000613d000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000640210003900000f73030000410000000000320435000000440210003900000f7403000041000000000032043500000024021000390000002503000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000f07011001c7000039f4000104300000000001000019000039f4000104300005000000000002000000000400041a00000e81044001970000000005000411000000000454004b000039310000c13d000000400400043d0000ffff0530018f000027110350008c000039420000813d00000f5e0340009c000039560000813d0000004003400039000000400030043f000500000004001d0000000003540436000000000220004c0000000002000019000000010200c039000400000002001d000200000003001d00000000002304350000ffff0110018f000300000001001d00000000001004350000000801000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c70000801002000039000100000005001d39f239ed0000040f00000001022001900000392f0000613d000000050200002900000000020204330000ffff0220018f000000000101043b000000000301041a00000f7103300197000000000223019f000000000021041b0000000202000029000000000202043300000f7503000041000000000220004c00000000020300190000000002006019000000000301041a00000f7603300197000000000223019f000000000021041b000000400100043d0000004002100039000000010300002900000000003204350000002002100039000000040300002900000000003204350000000302000029000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f2b011001c70000800d02000039000000010300003900000f770400004139f239e80000040f00000001012001900000392f0000613d000000000001042d0000000001000019000039f400010430000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000640140003900000f73020000410000000000210435000000440140003900000f7402000041000000000021043500000024014000390000002502000039000000000021043500000e8d01000041000000000014043500000004014000390000002002000039000000000021043500000e7e0100004100000e7e0240009c0000000001044019000000400110021000000f07011001c7000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f400010430000000000200041a00000e81022001970000000003000411000000000232004b0000397d0000c13d00000e81021001980000398e0000613d000000100110021000000e88011001970000000903000039000000000403041a00000e8904400197000000000114019f000000000013041b000000400100043d000000000021043500000e7e02000041000000000300041400000e7e0430009c000000000302801900000e7e0410009c00000000010280190000004001100210000000c002300210000000000112019f00000f02011001c70000800d02000039000000010300003900000f780400004139f239e80000040f0000000101200190000039a00000613d000000000001042d000000400100043d000000440210003900000f0403000041000000000032043500000e8d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f400010430000000400100043d000000440210003900000f7903000041000000000032043500000024021000390000001a03000039000000000032043500000e8d02000041000000000021043500000004021000390000002003000039000000000032043500000e7e0200004100000e7e0310009c0000000001028019000000400110021000000e8e011001c7000039f4000104300000000001000019000039f4000104300001000000000002000100000002001d0000ffff0110018f00000000001004350000000801000039000000200010043f00000e7e01000041000000000200041400000e7e0320009c0000000001024019000000c00110021000000f03011001c7000080100200003939f239ed0000040f0000000102200190000039da0000613d000000400200043d00000f5e0320009c000039dc0000813d000000000101043b0000004003200039000000400030043f000000000101041a0000ffff0310018f000000000332043600000f5f011001980000000001000019000000010100c03900000000001304350000000104000029000039cc0000613d00000000010204330000ffff0110018f000000000240004c000039c90000613d000000010200008a00000000324200d9000000000212004b000039e20000413d00000000214100a9000027102110011a000039d90000013d0000000901000039000000000101041a0000ffff021001900000000001000019000039d90000613d000000000140004c000039d70000613d000000010100008a00000000314100d9000000000121004b000039e20000413d00000000214200a9000027102110011a000000000001042d0000000001000019000039f40001043000000e8f0100004100000000001004350000004101000039000000040010043f00000e9001000041000039f40001043000000e8f0100004100000000001004350000001101000039000000040010043f00000e9001000041000039f400010430000039eb002104210000000102000039000000000001042d0000000002000019000000000001042d000039f0002104230000000102000039000000000001042d0000000002000019000000000001042d000039f200000432000039f30001042e000039f40001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf47726176697461204465627420546f6b656e00000000000000000000000000004752414900000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff0000000000000000000000000000000000000000ffff000000000000000000000000000000000000000000000000000000e8d4a5100000000002000000000000000000000000000000c0000001000000000000000000496e76616c69642061646472657373000000000000000000000000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000009358928a00000000000000000000000000000000000000000000000000000000c446183300000000000000000000000000000000000000000000000000000000eab45d9b00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f7f4d9d900000000000000000000000000000000000000000000000000000000f7f4d9da00000000000000000000000000000000000000000000000000000000f80f5dd500000000000000000000000000000000000000000000000000000000fc0c546a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000eb8d72b600000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000ecd8f21200000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000eab45d9c00000000000000000000000000000000000000000000000000000000eaffd49a00000000000000000000000000000000000000000000000000000000d1deba1e00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000e6a20ae600000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000d888296800000000000000000000000000000000000000000000000000000000c83330cd00000000000000000000000000000000000000000000000000000000c83330ce00000000000000000000000000000000000000000000000000000000cbed8b9c00000000000000000000000000000000000000000000000000000000c446183400000000000000000000000000000000000000000000000000000000c6c3bbe600000000000000000000000000000000000000000000000000000000a6c3d16400000000000000000000000000000000000000000000000000000000b7f8cf9a00000000000000000000000000000000000000000000000000000000b9818be000000000000000000000000000000000000000000000000000000000b9818be100000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000bb997bac00000000000000000000000000000000000000000000000000000000b7f8cf9b00000000000000000000000000000000000000000000000000000000b95aac7600000000000000000000000000000000000000000000000000000000abe685cc00000000000000000000000000000000000000000000000000000000abe685cd00000000000000000000000000000000000000000000000000000000b353aaa700000000000000000000000000000000000000000000000000000000a6c3d16500000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000009dc29fab00000000000000000000000000000000000000000000000000000000a1285d1600000000000000000000000000000000000000000000000000000000a1285d1700000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a4c51df5000000000000000000000000000000000000000000000000000000009dc29fac000000000000000000000000000000000000000000000000000000009f38369a0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009bdb9812000000000000000000000000000000000000000000000000000000009358928b00000000000000000000000000000000000000000000000000000000950c8a74000000000000000000000000000000000000000000000000000000003d8b38f5000000000000000000000000000000000000000000000000000000005b8c41e50000000000000000000000000000000000000000000000000000000078c8cda600000000000000000000000000000000000000000000000000000000857749af00000000000000000000000000000000000000000000000000000000857749b0000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000078c8cda70000000000000000000000000000000000000000000000000000000079c0ad4b0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007533d788000000000000000000000000000000000000000000000000000000005b8c41e60000000000000000000000000000000000000000000000000000000066ad5c8a00000000000000000000000000000000000000000000000000000000455ba27c000000000000000000000000000000000000000000000000000000004c428999000000000000000000000000000000000000000000000000000000004c42899a000000000000000000000000000000000000000000000000000000005a359dc5000000000000000000000000000000000000000000000000000000005b32a43900000000000000000000000000000000000000000000000000000000455ba27d000000000000000000000000000000000000000000000000000000004b104eff0000000000000000000000000000000000000000000000000000000042d65a8c0000000000000000000000000000000000000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000044770515000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000003f1f4fa40000000000000000000000000000000000000000000000000000000020c582bd000000000000000000000000000000000000000000000000000000003599590600000000000000000000000000000000000000000000000000000000365260b300000000000000000000000000000000000000000000000000000000365260b400000000000000000000000000000000000000000000000000000000391feebb0000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000003599590700000000000000000000000000000000000000000000000000000000363bf964000000000000000000000000000000000000000000000000000000002cdf0b94000000000000000000000000000000000000000000000000000000002cdf0b9500000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000020c582be0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b2000000000000000000000000000000000000000000000000000000000df37482000000000000000000000000000000000000000000000000000000000df374830000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000b622ab20000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000020000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0000000000000000000000000000000000000040000000000000000000000000ffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000006984a9e80000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000020000000000000000000000000000000000002000000000000000000000000002000000000000000000000000000000000000400000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657264647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20610000000000000000000000000000000000000084000000000000000000000000d7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fdddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7702000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000066ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c6e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636ff5ecbdbc000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000cbed8b9c0000000000000000000000000000000000000000000000000000000007e0db170000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000042d65a8d00000000000000000000000000000000000000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce4c7a4170703a206e6f20747275737465642070617468207265636f72640000005db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b02000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d75737420626564000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d6573734f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265000000000000000000000000010000000000000000000000000000000000000000bf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf7fcf35da000000000000000000000000000000000000000000000000000000009aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d206f7220746865207a65726f206164647265737300000000000000000000000073206469726563746c7920746f2074686520746f6b656e20636f6e747261637444656274546f6b656e3a2043616e6e6f74207472616e7366657220746f6b656e00000000000000000000000000000000000000a40000000000000000000000001584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a44f4654436f72653a20756e6b6e6f776e207061636b6574207479706500000000eaffd49a00000000000000000000000000000000000000000000000000000000b8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884746f427974657333325f6f75744f66426f756e64730000000000000000000000746f55696e7436345f6f75744f66426f756e6473000000000000000000000000746f416464726573735f6f75744f66426f756e647300000000000000000000004f4654436f72653a20696e76616c6964207061796c6f616400000000000000000000000000000000000000000000000000000001000000000000000000000000746f55696e74385f6f75744f66426f756e6473000000000000000000000000005bbb1afddf32881824ddeb3fb7fe693cbb0aa35de2ef25c53ad5e8e8d44c2720724f7065726174696f6e7300000000000000000000000000000000000000000044656274546f6b656e3a2043616c6c6572206973206e6f7420426f72726f7765616c0000000000000000000000000000000000000000000000000000000000004d696e7420697320626c6f636b6564206f6e207468697320636f6c6c6174657245524332303a206d696e7420746f20746865207a65726f20616464726573730072206e6f722053746162696c697479506f6f6c00000000000000000000000000726f7765724f7065726174696f6e73206e6f722056657373656c4d616e61676544656274546f6b656e3a2043616c6c6572206973206e65697468657220426f72636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265736c6973746564205343000000000000000000000000000000000000000000000044656274546f6b656e3a2043616c6c6572206973206e6f74206120776869746562696c697479506f6f6c0000000000000000000000000000000000000000000044656274546f6b656e3a2043616c6c6572206973206e6f74207468652053746173656c4d616e61676572206e6f722053746162696c697479506f6f6c0000000044656274546f6b656e3a2043616c6c6572206973206e65697468657220566573e11f9234c5a9af9538a590c5adf2369754a4198fdd39c264262bfce3c8d825d6496e76616c696420636f6e747261637420616464726573730000000000000000b840a1dbd8b09a3dc45161bba92dfb9aba643c0e44c085a447f839d1d02cf13b000000000000000000000000000000000000000000000000ffffffffffffffc00000000000000000000000000000000000000000000000000000000000ff00004c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d75737420626520000000000000000000000000000000000000000000000000ffffffffffffff9fc580310000000000000000000000000000000000000000000000000000000000d81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a68616e206d696e416d6f756e7400000000000000000000000000000000000000426173654f4654576974684665653a20616d6f756e74206973206c65737320744c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f74204f4654436f72653a20616d6f756e745344206f766572666c6f770000000000004f4654436f72653a20616d6f756e7420746f6f20736d616c6c00000000000000010000000000000000000000000000000000000000000000000000000000000040a7bb1000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000d26030ef4a8c225ee12b646eb4466acb41fb96b6cd4660b22d0ba0124e7bdc744e41544f520000000000000000000000000000000000000000000000000000004665653a20666565206270206d757374206265203c3d2042505f44454e4f4d490000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffdd9c9685af3e6dcb56d8f4b88d2595d4add6837a150034e7781c46b6dcf8aaab047912631afa564eebd3db2efe191a0dec62da1fede6bbbc1ffc89d87845b1b54665653a206665654f776e65722063616e6e6f742062652030780000000000003bb6047bc682b7c4cdfbd266d9c3fa5b983570a8e9a92970d3f567d01fbba954
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x0000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da
-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (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.