Token
GigaRomNFT (ROM)
ERC-721
Overview
Max Total Supply
2 ROM
Holders
1
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 ROMLoading...
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 Source Code Verified (Exact Match)
Contract Name:
GigaRomNFT
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {GameNFT} from "../gamenft/GameNFT.sol"; import {LEVEL_CID, IS_NOOB_CID} from "../../constants/ColumnConstants.sol"; import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import {IGigaRomNFT, ID } from "./IGigaRomNFT.sol"; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** @title GigaRom NFTs on L2 */ contract GigaRomNFT is GameNFT, IGigaRomNFT { uint256 public immutable MAX_SUPPLY; /** SETUP */ constructor(uint256 maxSupply, address gameRegistryAddress, address royaltyRecipient, uint96 feeNumerator) GameNFT(maxSupply, "GIGA-ROM", "ROM", "GIGA-ROM #", gameRegistryAddress, ID, royaltyRecipient, feeNumerator) { MAX_SUPPLY = maxSupply; } function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("GigaRomNFT", ID); _initialize(); } /** Initializes traits for the given tokenId */ function _initializeTraits(uint256 tokenId) internal override { _setDocBoolValue(tokenId, IS_NOOB_CID, true); _setDocUint256Value(tokenId, LEVEL_CID, 1); super._initializeTraits(tokenId); } /** * Mints multiple ERC721 tokens * * @param to Recipient of the tokens * @param quantity Number of tokens to mint * @return tokenIds Array of minted token IDs */ function mint( address to, uint256 quantity ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256[] memory tokenIds) { tokenIds = new uint256[](quantity); for (uint256 i = 0; i < quantity; i++) { tokenIds[i] = _confirmMint(to); } return tokenIds; } function batchAirDrop( address[] memory to, uint256[] memory quantities ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256[] memory tokenIds) { tokenIds = new uint256[](to.length); for (uint256 i = 0; i < to.length; i++) { for (uint256 j = 0; j < quantities[i]; j++) { tokenIds[i] = _confirmMint(to[i]); } } return tokenIds; } function _confirmMint(address to) internal returns (uint256) { require(1 + getTotalSupply() <= MAX_SUPPLY, "Exceeds max supply"); uint256 nextTokenId = _getAndIncrementAutoIncId(); _safeMint(to, nextTokenId); return nextTokenId; } /** * @return The total number of tokens minted */ function totalSupply() external view returns (uint256) { return super.getTotalSupply(); } /** * @dev Burn a token by the game contract * @param id Id of the token to burn */ function burnByGameContract( uint256 id ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _burn(id); } function _cleanupAfterBurn(uint256 tokenId) override internal { super._cleanupAfterBurn(tokenId); } function totalMinted() public view returns (uint256) { return super.getTotalMinted(); } function getMaxSupply() external view returns (uint256) { return MAX_SUPPLY; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {IGameNFT} from "./IGameNFT.sol"; import {MANAGER_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import {BALANCE_CID, CONTRACT_URI_CID, NAME_CID, MINT_COUNT_CID, BURN_COUNT_CID,ADDRESS_CID, MAX_SUPPLY_CID, IS_SOULBOUND_CID, INITIALIZED_CID, OWNER_CID, BASE_NAME_CID, BASE_URI_CID, LAST_TRANSFER_TIME_CID, OWNER_CID} from "../../constants/ColumnConstants.sol"; import {DataTable} from "../../db/DataTable.sol"; import {IERC721UpdateHandler} from "../IERC721UpdateHandler.sol"; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {ERC721C} from "@creator-token-standards/erc721c/ERC721C.sol"; import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import {BasicRoyalties} from "@creator-token-standards/programmable-royalties/BasicRoyalties.sol"; import {ERC721OpenZeppelin} from "@creator-token-standards/token/erc721/ERC721OpenZeppelin.sol"; import {OwnableBasic} from "@creator-token-standards/access/OwnableBasic.sol"; import {ERC721OpenZeppelinBase} from "@creator-token-standards/token/erc721/ERC721OpenZeppelin.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol"; /** @title NFT base contract for all game NFTs. Exposes traits for the NFT and respects GameRegistry/Soulbound access control */ abstract contract GameNFT is ERC721C, DataTable, IGameNFT, BasicRoyalties, OwnableBasic { using Strings for uint256; address public beforeUpdateHandler; address public afterUpdateHandler; /** ERRORS **/ /// @notice Account must be non-null error InvalidAccountAddress(); /// @notice Token id is not valid error InvalidTokenId(); /// @notice Exceeds max supply error ExceedsMaxSupply(); /// @notice Amount to mint exceeds max supply error NotEnoughSupply(uint256 needed, uint256 actual); /** EVENTS **/ /// @notice Emitted when time held time is updated event TimeHeldSet(uint256 tokenId, address account, uint32 timeHeld); /// @notice Emitted when last transfer time is updated event LastTransferSet(uint256 tokenId, uint32 lastTransferTime); /// @notice Emitted when contractURI has changed event ContractURIUpdated(string uri); uint256 private _tokenMaxSupply; string private _baseTokenName; /** SETUP **/ constructor(uint256 tokenMaxSupply, string memory nameToSet, string memory symbol, string memory baseTokenName, address gameRegistryAddress, uint256 id, address royaltyRecipient, uint96 feeNumerator) DataTable(gameRegistryAddress, id) ERC721OpenZeppelin(nameToSet, symbol) BasicRoyalties(royaltyRecipient, feeNumerator) { _tokenMaxSupply = tokenMaxSupply; _baseTokenName = baseTokenName; } function _initialize() internal { _setTableUint256Value(MAX_SUPPLY_CID, _tokenMaxSupply); _setTableStringValue(BASE_NAME_CID, _baseTokenName); } /** * @param tokenId token id to check * @return Whether or not the given tokenId has been minted */ function exists(uint256 tokenId) public view returns (bool) { return _ownerOf(tokenId) != address(0); } function owner() public view override(DataTable, Ownable) returns (address) { return super.owner(); } function name() public view override(DataTable, ERC721OpenZeppelinBase) returns (string memory) { return DataTable.name(); } function setBaseURI(string memory uri) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_URI_CID, uri); } function withdraw(uint256 amount) external nonReentrant onlyRole(MANAGER_ROLE) { (bool success, ) = payable(msg.sender).call{value: amount}(""); require(success, "Transfer failed"); } /** * @param tokenId token id to check * @return Whether or not the given tokenId has had its traits initialized */ /** * @return Generates a dynamic tokenURI based on the traits associated with the given token */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { // Make sure this still errors according to ERC721 spec require( exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return super.tokenURI(tokenId); } function _baseURI() internal override view returns (string memory) { return getTableStringValue(BASE_URI_CID); } /** * @dev a method that bulk sets initialized imported NFTs * @param tokenIds List of TokenIds to be initialized */ function setTraitsInitialized( uint256[] calldata tokenIds ) external onlyRole(MANAGER_ROLE) { for (uint256 i = 0; i < tokenIds.length; i++) { _setDocBoolValue(tokenIds[i], INITIALIZED_CID, true); } } function getAccountKey(address account) internal pure returns (uint256) { return uint256(keccak256(abi.encode(account))); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address walletAddress) public view override(IERC721, ERC721) returns (uint256) { return getDocUint256Value(getAccountKey(walletAddress), BALANCE_CID); } function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyRole(MANAGER_ROLE) { _setDefaultRoyalty(receiver, feeNumerator); } function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) external onlyRole(MANAGER_ROLE) { _setTokenRoyalty(tokenId, receiver, feeNumerator); } function deleteDefaultRoyalty() external onlyRole(MANAGER_ROLE) { _deleteDefaultRoyalty(); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view override returns (address) { return getDocAddressValue(tokenId, OWNER_CID); } /** * @param account Account to check hold time of * @param tokenId Id of the token * @return The time in seconds a given account has held a token */ function getTimeHeld( address account, uint256 tokenId ) external view override returns (uint32) { address ownerOfToken = ownerOf(tokenId); if (account == address(0)) { revert InvalidAccountAddress(); } if (ownerOfToken == account) { uint32 lastTransferTime = uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID)); uint32 currentTime = SafeCast.toUint32(block.timestamp); return currentTime - lastTransferTime; } return 0; } /** @return Token name for the given tokenId */ function tokenName( uint256 tokenId ) public view virtual returns (string memory) { if (hasDocStringValue(tokenId, NAME_CID)) { // If token has a name trait set, use that return getDocStringValue(tokenId, NAME_CID); } else { return string(abi.encodePacked(getTableStringValue(BASE_NAME_CID), tokenId.toString())); } } /** * @inheritdoc IERC165 */ function supportsInterface( bytes4 interfaceId ) public view virtual override( ERC721C, IERC165, ERC2981 ) returns (bool) { return interfaceId == type(IGameNFT).interfaceId || ERC721C.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } /** * Sets the before token transfer handler * * @param handlerAddress Address to the transfer hook handler contract */ function setUpdateHandler( address handlerAddress, bool before ) external onlyRole(MANAGER_ROLE) { if (before) { beforeUpdateHandler = handlerAddress; } else { afterUpdateHandler = handlerAddress; } } /** INTERNAL **/ /** Initializes traits for the given tokenId */ function _initializeTraits(uint256 tokenId) internal virtual { _setDocBoolValue(tokenId, INITIALIZED_CID, true); } function maxSupply() public view returns (uint256) { return getTableUint256Value(MAX_SUPPLY_CID); } /** * Sets the current contractURI for the contract * * @param _uri New contract URI */ function setContractURI(string calldata _uri) public onlyRole(MANAGER_ROLE) { _setTableStringValue(CONTRACT_URI_CID, _uri); emit ContractURIUpdated(_uri); } /** * @return Contract metadata URI for the NFT contract, used by NFT marketplaces to display collection inf */ function contractURI() public view returns (string memory) { return getTableStringValue(CONTRACT_URI_CID); } /** * Mint token to recipient * * @param to The recipient of the token * @param tokenId Id of the token to mint */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal override { uint256 _maxSupply = maxSupply(); if (_maxSupply != 0 && getTotalSupply() >= _maxSupply) { revert ExceedsMaxSupply(); } if (tokenId == 0) { revert InvalidTokenId(); } super._safeMint(to, tokenId, data); // Conditionally initialize traits if (getDocBoolValue(tokenId, INITIALIZED_CID) == false) { _initializeTraits(tokenId); } } /** * @notice Checks for soulbound status before transfer * @inheritdoc ERC721C */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override( ERC721C ) { for (uint256 i = 0; i < batchSize; i++) { uint256 tokenId = firstTokenId + i; if (beforeUpdateHandler != address(0)) { IERC721UpdateHandler( beforeUpdateHandler ).update( from, to, firstTokenId ); } _setDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID, SafeCast.toUint32(block.timestamp)); require(!getTableBoolValue(IS_SOULBOUND_CID) || from == address(0) || to == address(0), "GameNFT: Token is soulbound"); } } function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal override(ERC721C) { for (uint256 i = 0; i < batchSize; i++) { uint256 tokenId = firstTokenId + i; if (afterUpdateHandler != address(0)) { IERC721UpdateHandler( afterUpdateHandler ).update( from, to, tokenId ); } if (from != address(0)) { _decrementAmount(getAccountKey(from), BALANCE_CID, 1); } else { _incrementAmount(0, MINT_COUNT_CID, 1); } _setDocAddressValue(tokenId, OWNER_CID, to); if (to == address(0)) { _incrementAmount(0, BURN_COUNT_CID, 1); _cleanupAfterBurn(tokenId); } else { _incrementAmount(getAccountKey(to), BALANCE_CID, 1); } } } function getLastTransfer( uint256 tokenId ) external view returns (uint32) { return uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID)); } function mintBatch(address /*to*/, uint256 /*amount*/) pure external returns (uint256[] memory) { return new uint256[](0); } function setSoulbound(bool soulbound) external onlyRole(MANAGER_ROLE) { _setTableBoolValue(IS_SOULBOUND_CID, soulbound); } function _cleanupAfterBurn(uint256 tokenId) virtual internal { _setDocBoolValue(tokenId, INITIALIZED_CID, false); } function getTotalMinted() public view returns (uint256) { return getTableUint256Value(MINT_COUNT_CID); } function getTotalBurned() public view returns (uint256) { return getTableUint256Value(BURN_COUNT_CID); } function getTotalSupply() public view returns (uint256) { return getTotalMinted() - getTotalBurned(); } function burn(uint256 tokenId) external { require(ownerOf(tokenId) == msg.sender, "You are not the owner of this token"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; uint256 constant NAME_CID = uint256(keccak256("name")); uint256 constant DESCRIPTION_CID = uint256(keccak256("description")); uint256 constant LEVEL_CID = uint256(keccak256("level")); uint256 constant IS_NOOB_CID = uint256(keccak256("is_noob")); uint256 constant NOOB_TOKEN_CID = uint256(keccak256("noob_tokend_id")); uint256 constant GIGA_NAME_TOKENDID_CID = uint256(keccak256("giganame_tokend_id")); uint256 constant IS_GIGA_NAME_CID = uint256(keccak256("is_giga_name")); uint256 constant GAME_ITEM_ID_CID = uint256(keccak256("game_item_id")); uint256 constant UINT256_CID = uint256(keccak256("int256")); uint256 constant ETH_MINT_PRICE_CID = uint256(keccak256("eth_mint_price")); uint256 constant NEXT_DOCID_CID = uint256(keccak256("next_token_id")); uint256 constant ID_CID = uint256(keccak256("id")); uint256 constant BASE_NAME_CID = uint256(keccak256("base_name")); uint256 constant BASE_URI_CID = uint256(keccak256("base_uri")); uint256 constant LAST_TRANSFER_TIME_CID = uint256(keccak256("last_transfer_time")); uint256 constant OWNER_CID = uint256(keccak256("owner")); uint256 constant INITIALIZED_CID = uint256(keccak256("initialized")); uint256 constant MAX_SUPPLY_CID = uint256(keccak256("max_supply")); uint256 constant ADDRESS_CID = uint256(keccak256("address")); uint256 constant IS_SOULBOUND_CID = uint256(keccak256("soulbound")); uint256 constant TIME_BETWEEN_CID = uint256(keccak256("time_between")); uint256 constant TIMESTAMP_CID = uint256(keccak256("timestamp")); uint256 constant IMG_URL_CID = uint256(keccak256("img_url")); uint256 constant PLAYER_CID = uint256(keccak256("player")); uint256 constant MINT_COUNT_CID = uint256(keccak256("mint_count")); uint256 constant CONTRACT_URI_CID = uint256(keccak256("contract_uri")); uint256 constant IS_RECYCLABLE_CID = uint256(keccak256("is_recyclable")); uint256 constant BURN_COUNT_CID = uint256(keccak256("burn_count")); uint256 constant BALANCE_CID = uint256(keccak256("balance")); uint256 constant ICON_URL_CID = uint256(keccak256("icon_url")); uint256 constant DUNGEON_ID_CID = uint256(keccak256("dungeon_id")); uint256 constant ENERGY_CID = uint256(keccak256("energy")); uint256 constant IS_CANCELLED_CID = uint256(keccak256("is_cancelled")); uint256 constant SPRITE_SHEET_URL_CID = uint256(keccak256("sprite_sheet_url")); uint256 constant IMPORT_AMOUNT_CID = uint256(keccak256("import_amount")); uint256 constant EXPORT_AMOUNT_CID = uint256(keccak256("export_amount")); uint256 constant EXPORT_LICENSE_CID = uint256(keccak256("export_license"));
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; // Pauser Role - Can pause the game bytes32 constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); // Minter Role - Can mint items, NFTs, and ERC20 currency bytes32 constant MINTER_ROLE = keccak256("MINTER_ROLE"); // Manager Role - Can manage the shop, loot tables, and other game data bytes32 constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); // Depoloyer Role - Can Deploy new Systems bytes32 constant DEPLOYER_ROLE = keccak256("DEPLOYER_ROLE"); // Game Logic Contract - Contract that executes game logic and accesses other systems bytes32 constant GAME_LOGIC_CONTRACT_ROLE = keccak256("GAME_LOGIC_CONTRACT_ROLE"); // For functions callable from game server bytes32 constant SERVER_JUDGE_ROLE = keccak256("SERVER_JUDGE_ROLE");
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {IGameNFT} from "../gamenft/IGameNFT.sol"; import {IMintableERC721} from "../../mint/interfaces/IMintableERC721.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.gigaromnft.v2")); interface IGigaRomNFT is IGameNFT, IMintableERC721 { function totalMinted() external view returns (uint256); function getMaxSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toUint248(uint256 value) internal pure returns (uint248) { require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits"); return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toUint240(uint256 value) internal pure returns (uint240) { require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits"); return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toUint232(uint256 value) internal pure returns (uint232) { require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits"); return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.2._ */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toUint216(uint256 value) internal pure returns (uint216) { require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits"); return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toUint208(uint256 value) internal pure returns (uint208) { require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits"); return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toUint200(uint256 value) internal pure returns (uint200) { require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits"); return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toUint192(uint256 value) internal pure returns (uint192) { require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits"); return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toUint184(uint256 value) internal pure returns (uint184) { require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits"); return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toUint176(uint256 value) internal pure returns (uint176) { require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits"); return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toUint168(uint256 value) internal pure returns (uint168) { require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits"); return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toUint160(uint256 value) internal pure returns (uint160) { require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits"); return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toUint152(uint256 value) internal pure returns (uint152) { require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits"); return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toUint144(uint256 value) internal pure returns (uint144) { require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits"); return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toUint136(uint256 value) internal pure returns (uint136) { require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits"); return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v2.5._ */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toUint120(uint256 value) internal pure returns (uint120) { require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits"); return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toUint112(uint256 value) internal pure returns (uint112) { require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits"); return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toUint104(uint256 value) internal pure returns (uint104) { require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits"); return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.2._ */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toUint88(uint256 value) internal pure returns (uint88) { require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits"); return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toUint80(uint256 value) internal pure returns (uint80) { require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits"); return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toUint72(uint256 value) internal pure returns (uint72) { require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits"); return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v2.5._ */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toUint56(uint256 value) internal pure returns (uint56) { require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits"); return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toUint48(uint256 value) internal pure returns (uint48) { require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits"); return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toUint40(uint256 value) internal pure returns (uint40) { require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits"); return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v2.5._ */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toUint24(uint256 value) internal pure returns (uint24) { require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits"); return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v2.5._ */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v2.5._ */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. * * _Available since v3.0._ */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); require(downcasted == value, "SafeCast: value doesn't fit in 248 bits"); } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); require(downcasted == value, "SafeCast: value doesn't fit in 240 bits"); } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); require(downcasted == value, "SafeCast: value doesn't fit in 232 bits"); } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.7._ */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); require(downcasted == value, "SafeCast: value doesn't fit in 224 bits"); } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); require(downcasted == value, "SafeCast: value doesn't fit in 216 bits"); } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); require(downcasted == value, "SafeCast: value doesn't fit in 208 bits"); } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); require(downcasted == value, "SafeCast: value doesn't fit in 200 bits"); } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); require(downcasted == value, "SafeCast: value doesn't fit in 192 bits"); } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); require(downcasted == value, "SafeCast: value doesn't fit in 184 bits"); } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); require(downcasted == value, "SafeCast: value doesn't fit in 176 bits"); } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); require(downcasted == value, "SafeCast: value doesn't fit in 168 bits"); } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); require(downcasted == value, "SafeCast: value doesn't fit in 160 bits"); } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); require(downcasted == value, "SafeCast: value doesn't fit in 152 bits"); } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); require(downcasted == value, "SafeCast: value doesn't fit in 144 bits"); } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); require(downcasted == value, "SafeCast: value doesn't fit in 136 bits"); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); require(downcasted == value, "SafeCast: value doesn't fit in 128 bits"); } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); require(downcasted == value, "SafeCast: value doesn't fit in 120 bits"); } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); require(downcasted == value, "SafeCast: value doesn't fit in 112 bits"); } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); require(downcasted == value, "SafeCast: value doesn't fit in 104 bits"); } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.7._ */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); require(downcasted == value, "SafeCast: value doesn't fit in 96 bits"); } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); require(downcasted == value, "SafeCast: value doesn't fit in 88 bits"); } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); require(downcasted == value, "SafeCast: value doesn't fit in 80 bits"); } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); require(downcasted == value, "SafeCast: value doesn't fit in 72 bits"); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); require(downcasted == value, "SafeCast: value doesn't fit in 64 bits"); } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); require(downcasted == value, "SafeCast: value doesn't fit in 56 bits"); } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); require(downcasted == value, "SafeCast: value doesn't fit in 48 bits"); } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); require(downcasted == value, "SafeCast: value doesn't fit in 40 bits"); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); require(downcasted == value, "SafeCast: value doesn't fit in 32 bits"); } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); require(downcasted == value, "SafeCast: value doesn't fit in 24 bits"); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); require(downcasted == value, "SafeCast: value doesn't fit in 16 bits"); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); require(downcasted == value, "SafeCast: value doesn't fit in 8 bits"); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. * * _Available since v3.0._ */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title Interface for game NFTs that have stats and other properties */ interface IGameNFT is IERC721 { /** * @param account Account to check hold time of * @param tokenId Id of the token * @return The time in seconds a given account has held a token */ function getTimeHeld( address account, uint256 tokenId ) external view returns (uint32); function getLastTransfer( uint256 tokenId ) external view returns (uint32); /** * Mints a batch of ERC721 token * * @param to Recipient of the token * @param amount Quantity of token to mint */ function mintBatch(address to, uint256 amount) external returns (uint256[] memory); function exists(uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {DataStore, ID as DATA_STORE_ID} from "./DataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; import {NAME_CID, ADDRESS_CID, ID_CID, NEXT_DOCID_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; contract DataTable is GameRegistryConsumer { error AlreadyInitialized(); bool private _initialized; constructor(address gameRegistryAddress, uint256 ID) GameRegistryConsumer(gameRegistryAddress, ID) {} function owner() public view virtual returns (address) { return getTableAddressValue(OWNER_CID); } function name() public view virtual returns (string memory) { return getTableStringValue(NAME_CID); } function initializeTable(string memory nameToSet, uint256 id) internal { if (_initialized) { revert AlreadyInitialized(); } _setTableAddressValue(ADDRESS_CID, address(this)); _setTableAddressValue(OWNER_CID, msg.sender); _setTableStringValue(NAME_CID, nameToSet); _setTableUint256Value(ID_CID, id); _initialized = true; } function getTableId() public virtual view returns (uint256) { return getId(); } function _getAndIncrementAutoIncId() internal returns (uint256) { uint256 currentId = getTableUint256Value(NEXT_DOCID_CID); _setTableUint256Value(NEXT_DOCID_CID, currentId + 1); return currentId + 1; } function _incrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount + amount); } function _decrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount - amount); } function _setTableStringValue(uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), 0, columnId, value); } function _setTableUint256Value(uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), 0, columnId, value); } function _setTableAddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableBoolValue(uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), 0, columnId, value); } function _setTableAdddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableUint256ArrayValue(uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), 0, columnId, value); } function _setTableBoolArrayValue(uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), 0, columnId, value); } function _setTableAddressArrayValue(uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), 0, columnId, value); } function _setDocAddressArrayValue(uint256 docId, uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolArrayValue(uint256 docId, uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), docId, columnId, value); } function _setDocStringValue(uint256 docId, uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), docId, columnId, value); } function _setDocUint256Value(uint256 docId, uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), docId, columnId, value); } function _setDocUint256ArrayValue(uint256 docId, uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolValue(uint256 docId, uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), docId, columnId, value); } function _setDocAddressValue(uint256 docId, uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), docId, columnId, value); } function getTableBoolValue(uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), 0, columnId); } function getTableUint256Value(uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), 0, columnId); } function getTableStringValue(uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), 0, columnId); } function getTableAddressValue(uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), 0, columnId); } function getTableUint256ArrayValue(uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), 0, columnId); } function getDocUint256ArrayValue(uint256 docId, uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), docId, columnId); } function getDocStringValue(uint256 docId, uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), docId, columnId); } function getDocUint256Value(uint256 docId, uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), docId, columnId); } function getDocBoolValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), docId, columnId); } function getDocAddressValue(uint256 docId, uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), docId, columnId); } function hasDocStringValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasStringValue(getTableId(), docId, columnId); } function hasDocValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasValue(getTableId(), docId, columnId); } function getPlayerDocId(address player) public pure returns (uint256) { return uint256(uint160(player)); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; interface IERC721UpdateHandler { /** * Before transfer hook for NFTs. Performs any trait checks needed before transfer * */ function update( address from, address to, uint256 tokenId ) external; }
// 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.8.4; import "../utils/AutomaticValidatorTransferApproval.sol"; import "../utils/CreatorTokenBase.sol"; import "../token/erc721/ERC721OpenZeppelin.sol"; import "../interfaces/ITransferValidatorSetTokenType.sol"; import {TOKEN_TYPE_ERC721} from "@limitbreak/permit-c/Constants.sol"; /** * @title ERC721C * @author Limit Break, Inc. * @notice Extends OpenZeppelin's ERC721 implementation with Creator Token functionality, which * allows the contract owner to update the transfer validation logic by managing a security policy in * an external transfer validation security policy registry. See {CreatorTokenTransferValidator}. */ abstract contract ERC721C is ERC721OpenZeppelin, CreatorTokenBase, AutomaticValidatorTransferApproval { /** * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) { isApproved = super.isApprovedForAll(owner, operator); if (!isApproved) { if (autoApproveTransfersFromValidator) { isApproved = operator == address(getTransferValidator()); } } } /** * @notice Indicates whether the contract implements the specified interface. * @dev Overrides supportsInterface in ERC165. * @param interfaceId The interface id * @return true if the contract implements the specified interface, false otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || interfaceId == type(ICreatorTokenLegacy).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Returns the function selector for the transfer validator's validation function to be called * @notice for transaction simulation. */ function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) { functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256)")); isViewFunction = true; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateBeforeTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateAfterTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC721); } } /** * @title ERC721CInitializable * @author Limit Break, Inc. * @notice Initializable implementation of ERC721C to allow for EIP-1167 proxy clones. */ abstract contract ERC721CInitializable is ERC721OpenZeppelinInitializable, CreatorTokenBase, AutomaticValidatorTransferApproval { function initializeERC721(string memory name_, string memory symbol_) public override { super.initializeERC721(name_, symbol_); _emitDefaultTransferValidator(); _registerTokenType(getTransferValidator()); } /** * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) { isApproved = super.isApprovedForAll(owner, operator); if (!isApproved) { if (autoApproveTransfersFromValidator) { isApproved = operator == address(getTransferValidator()); } } } /** * @notice Indicates whether the contract implements the specified interface. * @dev Overrides supportsInterface in ERC165. * @param interfaceId The interface id * @return true if the contract implements the specified interface, false otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || interfaceId == type(ICreatorTokenLegacy).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Returns the function selector for the transfer validator's validation function to be called * @notice for transaction simulation. */ function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) { functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256)")); isViewFunction = true; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateBeforeTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual override { for (uint256 i = 0; i < batchSize;) { _validateAfterTransfer(from, to, firstTokenId + i); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC721); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/common/ERC2981.sol"; /** * @title BasicRoyaltiesBase * @author Limit Break, Inc. * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties. */ abstract contract BasicRoyaltiesBase is ERC2981 { event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator); event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator); function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override { super._setDefaultRoyalty(receiver, feeNumerator); emit DefaultRoyaltySet(receiver, feeNumerator); } function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override { super._setTokenRoyalty(tokenId, receiver, feeNumerator); emit TokenRoyaltySet(tokenId, receiver, feeNumerator); } } /** * @title BasicRoyalties * @author Limit Break, Inc. * @notice Constructable BasicRoyalties Contract implementation. */ abstract contract BasicRoyalties is BasicRoyaltiesBase { constructor(address receiver, uint96 feeNumerator) { _setDefaultRoyalty(receiver, feeNumerator); } } /** * @title BasicRoyaltiesInitializable * @author Limit Break, Inc. * @notice Initializable BasicRoyalties Contract implementation to allow for EIP-1167 clones. */ abstract contract BasicRoyaltiesInitializable is BasicRoyaltiesBase {}
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../../access/OwnablePermissions.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; abstract contract ERC721OpenZeppelinBase is ERC721 { // Token name string internal _contractName; // Token symbol string internal _contractSymbol; function name() public view virtual override returns (string memory) { return _contractName; } function symbol() public view virtual override returns (string memory) { return _contractSymbol; } function _setNameAndSymbol(string memory name_, string memory symbol_) internal { _contractName = name_; _contractSymbol = symbol_; } } abstract contract ERC721OpenZeppelin is ERC721OpenZeppelinBase { constructor(string memory name_, string memory symbol_) ERC721("", "") { _setNameAndSymbol(name_, symbol_); } } abstract contract ERC721OpenZeppelinInitializable is OwnablePermissions, ERC721OpenZeppelinBase { error ERC721OpenZeppelinInitializable__AlreadyInitializedERC721(); /// @notice Specifies whether or not the contract is initialized bool private _erc721Initialized; /// @dev Initializes parameters of ERC721 tokens. /// These cannot be set in the constructor because this contract is optionally compatible with EIP-1167. function initializeERC721(string memory name_, string memory symbol_) public virtual { _requireCallerIsContractOwner(); if(_erc721Initialized) { revert ERC721OpenZeppelinInitializable__AlreadyInitializedERC721(); } _erc721Initialized = true; _setNameAndSymbol(name_, symbol_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./OwnablePermissions.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract OwnableBasic is OwnablePermissions, Ownable { function _requireCallerIsContractOwner() internal view virtual override { _checkOwner(); } }
// 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/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; interface IMintableERC721 is IERC721 { function mint(address to, uint256 quantity) external returns (uint256[] memory tokenIds); function totalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./DataTypes.sol"; import {IDataStore, ID} from "./IDataStore.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; import {GAME_LOGIC_CONTRACT_ROLE} from "../constants/RoleConstants.sol"; contract DataStore is IDataStore, GameRegistryConsumer { using DataTypes for *; mapping(uint256 => mapping(uint256 => bytes32)) public datastore; mapping(uint256 => mapping(uint256 => bytes32[])) public arrayStore; mapping(uint256 => mapping(uint256 => string)) private stringStore; mapping(uint256 => bytes32) public columnTypes; constructor(address gameRegistryAddress) GameRegistryConsumer(gameRegistryAddress, ID) {} function generateKey(uint256 docId, uint256 colId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(docId, colId))); } function generateArrayKey (uint256 docId, uint256 colId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(docId, colId, "__array"))); } function setValue(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { datastore[tableId][uint256(keccak256(abi.encodePacked(docId, colId)))] = value; emit ValueSet(tableId, docId, colId, value); } function setArrayValue(uint256 tableId, uint256 docId, uint256 colId, bytes32[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { arrayStore[tableId][generateArrayKey(docId, colId)] = value; emit ArrayValueSet(tableId, docId, colId, value); } function setUint256ArrayValue(uint256 tableId, uint256 docId, uint256 colId, uint256[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256ARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packUint256(); } setArrayValue(tableId, docId, colId, packedValues); } function setBoolArrayValue(uint256 tableId, uint256 docId, uint256 colId, bool[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOLARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packBool(); } setArrayValue(tableId, docId, colId, packedValues); } function setAddressArrayValue(uint256 tableId, uint256 docId, uint256 colId, address[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESSARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packAddress(); } setArrayValue(tableId, docId, colId, packedValues); } function getUint256Array(uint256 tableId, uint256 docId, uint256 colId) public view returns (uint256[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; uint256[] memory uintArray = new uint256[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { uintArray[i] = byteArray[i].unpackUint256(); } return uintArray; } function getBoolArray(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; bool[] memory boolArray = new bool[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { boolArray[i] = byteArray[i].unpackBool(); } return boolArray; } function getAddressArray(uint256 tableId, uint256 docId, uint256 colId) public view returns (address[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; address[] memory addressArray = new address[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { addressArray[i] = byteArray[i].unpackAddress(); } return addressArray; } function getValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bytes32) { return datastore[tableId][uint256(keccak256(abi.encodePacked(docId, colId)))]; } function setColumnType(uint256 colId, IDataStore.ColumnType columnType) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require(!isColumnTypeSet(colId), "Column type already set"); columnTypes[colId] = bytes32(uint256(columnType)); emit ColumnTypeSet(colId, columnType); } function isColumnTypeSet(uint256 colId) public view returns (bool) { return columnTypes[colId] != bytes32(0); } function getColumnType(uint256 colId) public view returns (IDataStore.ColumnType) { bytes32 typeValue = columnTypes[colId]; require(typeValue != bytes32(0), "Column type not set"); return IDataStore.ColumnType(uint8(uint256(typeValue))); } // Type-specific setters function setUint256(uint256 tableId, uint256 docId, uint256 colId, uint256 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); setValue(tableId, docId, colId, value.packUint256()); } function setInt256(uint256 tableId, uint256 docId, uint256 colId, int256 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.INT256, "Column is not INT256"); setValue(tableId, docId, colId, value.packInt256()); } function setBool(uint256 tableId, uint256 docId, uint256 colId, bool value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); setValue(tableId, docId, colId, value.packBool()); } function setAddress(uint256 tableId, uint256 docId, uint256 colId, address value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); setValue(tableId, docId, colId, value.packAddress()); } function setBytes32(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.BYTES32, "Column is not BYTES32"); setValue(tableId, docId, colId, value); } function setString(uint256 tableId, uint256 docId, uint256 colId, string memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.STRING, "Column is not STRING"); uint256 key = generateKey(docId, colId); stringStore[tableId][key] = value; emit StringValueSet(tableId, docId, colId, value); } function deleteValue(uint256 tableId, uint256 docId, uint256 colId) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ uint256 key = generateKey(docId, colId); delete datastore[tableId][key]; } // Type-specific getters function getUint256(uint256 tableId, uint256 docId, uint256 colId) public view returns (uint256) { require(getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); return getValue(tableId, docId, colId).unpackUint256(); } function getInt256(uint256 tableId, uint256 docId, uint256 colId) public view returns (int256) { require(getColumnType(colId) == IDataStore.ColumnType.INT256, "Column is not INT256"); return getValue(tableId, docId, colId).unpackInt256(); } function getBool(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { require(getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); return getValue(tableId, docId, colId).unpackBool(); } function getAddress(uint256 tableId, uint256 docId, uint256 colId) public view returns (address) { require(getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); return getValue(tableId, docId, colId).unpackAddress(); } function getBytes32(uint256 tableId, uint256 docId, uint256 colId) public view returns (bytes32) { require(getColumnType(colId) == IDataStore.ColumnType.BYTES32, "Column is not BYTES32"); return getValue(tableId, docId, colId); } function getString(uint256 tableId, uint256 docId, uint256 colId) public view returns (string memory) { require(getColumnType(colId) == IDataStore.ColumnType.STRING, "Column is not STRING"); uint256 key = generateKey(docId, colId); return stringStore[tableId][key]; } function hasValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { uint256 key = generateKey(docId, colId); return datastore[tableId][key] != bytes32(0); } function hasStringValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { uint256 key = generateKey(docId, colId); return keccak256(bytes(stringStore[tableId][key])) != keccak256(bytes("")); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {PAUSER_ROLE, MANAGER_ROLE} from "../constants/RoleConstants.sol"; import {ISystem} from "./ISystem.sol"; import {IGameRegistry, IERC165} from "./IGameRegistry.sol"; import {IDataStore, ID as DATA_STORE_ID} from "../db/IDataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; /** @title Contract that lets a child contract access the GameRegistry contract */ abstract contract GameRegistryConsumer is ReentrancyGuard, ISystem { /// @notice Whether or not the contract is paused bool private _paused; /// @notice Reference to the game registry that this contract belongs to IGameRegistry internal _gameRegistry; /// @notice Id for the system/component uint256 private _id; /** EVENTS **/ /// @dev Emitted when the pause is triggered by `account`. event Paused(address account); /// @dev Emitted when the pause is lifted by `account`. event Unpaused(address account); /** ERRORS **/ /// @notice Not authorized to perform action error MissingRole(address account, bytes32 expectedRole); /** MODIFIERS **/ /// @notice Modifier to verify a user has the appropriate role to call a given function modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** ERRORS **/ /// @notice Error if the game registry specified is invalid error InvalidGameRegistry(); /** SETUP **/ /** @return ID for this system */ function getId() public view override returns (uint256) { return _id; } /** * Pause/Unpause the contract * * @param shouldPause Whether or pause or unpause */ function setPaused(bool shouldPause) external onlyRole(PAUSER_ROLE) { if (shouldPause) { _pause(); } else { _unpause(); } } /** * @dev Returns true if the contract OR the GameRegistry is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused || _gameRegistry.paused(); } /** * Sets the GameRegistry contract address for this contract * * @param gameRegistryAddress Address for the GameRegistry contract */ function setGameRegistry( address gameRegistryAddress ) external onlyRole(MANAGER_ROLE) { _gameRegistry = IGameRegistry(gameRegistryAddress); if (gameRegistryAddress == address(0)) { revert InvalidGameRegistry(); } } /** @return GameRegistry contract for this contract */ function getGameRegistry() external view returns (IGameRegistry) { return _gameRegistry; } /** INTERNAL **/ /** * @dev Returns `true` if `account` has been granted `role`. */ function _hasAccessRole( bytes32 role, address account ) internal view returns (bool) { return _gameRegistry.hasAccessRole(role, account); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!_gameRegistry.hasAccessRole(role, account)) { revert MissingRole(account, role); } } /** @return Returns the dataStore for this contract */ function _dataStore() internal view returns (IDataStore) { return IDataStore(_getSystem(DATA_STORE_ID)); } /** @return Address for a given system */ function _getSystem(uint256 systemId) internal view returns (address) { return _gameRegistry.getSystem(systemId); } /** PAUSABLE **/ /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual { require(_paused == false, "Pausable: not paused"); _paused = true; emit Paused(msg.sender); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual { require(_paused == true, "Pausable: not paused"); _paused = false; emit Unpaused(msg.sender); } function initialize() external virtual onlyRole(DEPLOYER_ROLE) { } /** * Constructor for this contract * * @param gameRegistryAddress Address of the GameRegistry contract * @param id Id of the system/component */ constructor( address gameRegistryAddress, uint256 id ) { _gameRegistry = IGameRegistry(gameRegistryAddress); if (gameRegistryAddress == address(0)) { revert InvalidGameRegistry(); } _paused = true; _id = id; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; /** * @title AutomaticValidatorTransferApproval * @author Limit Break, Inc. * @notice Base contract mix-in that provides boilerplate code giving the contract owner the * option to automatically approve a 721-C transfer validator implementation for transfers. */ abstract contract AutomaticValidatorTransferApproval is OwnablePermissions { /// @dev Emitted when the automatic approval flag is modified by the creator. event AutomaticApprovalOfTransferValidatorSet(bool autoApproved); /// @dev If true, the collection's transfer validator is automatically approved to transfer holder's tokens. bool public autoApproveTransfersFromValidator; /** * @notice Sets if the transfer validator is automatically approved as an operator for all token owners. * * @dev Throws when the caller is not the contract owner. * * @param autoApprove If true, the collection's transfer validator will be automatically approved to * transfer holder's tokens. */ function setAutomaticApprovalOfTransfersFromValidator(bool autoApprove) external { _requireCallerIsContractOwner(); autoApproveTransfersFromValidator = autoApprove; emit AutomaticApprovalOfTransferValidatorSet(autoApprove); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; import "../interfaces/ICreatorToken.sol"; import "../interfaces/ICreatorTokenLegacy.sol"; import "../interfaces/ITransferValidator.sol"; import "./TransferValidation.sol"; import "../interfaces/ITransferValidatorSetTokenType.sol"; /** * @title CreatorTokenBase * @author Limit Break, Inc. * @notice CreatorTokenBaseV3 is an abstract contract that provides basic functionality for managing token * transfer policies through an implementation of ICreatorTokenTransferValidator/ICreatorTokenTransferValidatorV2/ICreatorTokenTransferValidatorV3. * This contract is intended to be used as a base for creator-specific token contracts, enabling customizable transfer * restrictions and security policies. * * <h4>Features:</h4> * <ul>Ownable: This contract can have an owner who can set and update the transfer validator.</ul> * <ul>TransferValidation: Implements the basic token transfer validation interface.</ul> * * <h4>Benefits:</h4> * <ul>Provides a flexible and modular way to implement custom token transfer restrictions and security policies.</ul> * <ul>Allows creators to enforce policies such as account and codehash blacklists, whitelists, and graylists.</ul> * <ul>Can be easily integrated into other token contracts as a base contract.</ul> * * <h4>Intended Usage:</h4> * <ul>Use as a base contract for creator token implementations that require advanced transfer restrictions and * security policies.</ul> * <ul>Set and update the ICreatorTokenTransferValidator implementation contract to enforce desired policies for the * creator token.</ul> * * <h4>Compatibility:</h4> * <ul>Backward and Forward Compatible - V1/V2/V3 Creator Token Base will work with V1/V2/V3 Transfer Validators.</ul> */ abstract contract CreatorTokenBase is OwnablePermissions, TransferValidation, ICreatorToken { /// @dev Thrown when setting a transfer validator address that has no deployed code. error CreatorTokenBase__InvalidTransferValidatorContract(); /// @dev The default transfer validator that will be used if no transfer validator has been set by the creator. address public constant DEFAULT_TRANSFER_VALIDATOR = address(0x721C002B0059009a671D00aD1700c9748146cd1B); /// @dev Used to determine if the default transfer validator is applied. /// @dev Set to true when the creator sets a transfer validator address. bool private isValidatorInitialized; /// @dev Address of the transfer validator to apply to transactions. address private transferValidator; constructor() { _emitDefaultTransferValidator(); _registerTokenType(DEFAULT_TRANSFER_VALIDATOR); } /** * @notice Sets the transfer validator for the token contract. * * @dev Throws when provided validator contract is not the zero address and does not have code. * @dev Throws when the caller is not the contract owner. * * @dev <h4>Postconditions:</h4> * 1. The transferValidator address is updated. * 2. The `TransferValidatorUpdated` event is emitted. * * @param transferValidator_ The address of the transfer validator contract. */ function setTransferValidator(address transferValidator_) public { _requireCallerIsContractOwner(); bool isValidTransferValidator = transferValidator_.code.length > 0; if(transferValidator_ != address(0) && !isValidTransferValidator) { revert CreatorTokenBase__InvalidTransferValidatorContract(); } emit TransferValidatorUpdated(address(getTransferValidator()), transferValidator_); isValidatorInitialized = true; transferValidator = transferValidator_; _registerTokenType(transferValidator_); } /** * @notice Returns the transfer validator contract address for this token contract. */ function getTransferValidator() public view override returns (address validator) { validator = transferValidator; if (validator == address(0)) { if (!isValidatorInitialized) { validator = DEFAULT_TRANSFER_VALIDATOR; } } } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Be aware that if the msg.sender is the transfer validator, the transfer is automatically permitted, as the * transfer validator is expected to pre-validate the transfer. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. * @param tokenId The token id being transferred. */ function _preValidateTransfer( address caller, address from, address to, uint256 tokenId, uint256 /*value*/) internal virtual override { address validator = getTransferValidator(); if (validator != address(0)) { if (msg.sender == validator) { return; } ITransferValidator(validator).validateTransfer(caller, from, to, tokenId); } } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Be aware that if the msg.sender is the transfer validator, the transfer is automatically permitted, as the * transfer validator is expected to pre-validate the transfer. * * @dev Used for ERC20 and ERC1155 token transfers which have an amount value to validate in the transfer validator. * @dev The `tokenId` for ERC20 tokens should be set to `0`. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. * @param tokenId The token id being transferred. * @param amount The amount of token being transferred. */ function _preValidateTransfer( address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 /*value*/) internal virtual override { address validator = getTransferValidator(); if (validator != address(0)) { if (msg.sender == validator) { return; } ITransferValidator(validator).validateTransfer(caller, from, to, tokenId, amount); } } function _tokenType() internal virtual pure returns(uint16); function _registerTokenType(address validator) internal { if (validator != address(0)) { uint256 validatorCodeSize; assembly { validatorCodeSize := extcodesize(validator) } if(validatorCodeSize > 0) { try ITransferValidatorSetTokenType(validator).setTokenTypeOfCollection(address(this), _tokenType()) { } catch { } } } } /** * @dev Used during contract deployment for constructable and cloneable creator tokens * @dev to emit the `TransferValidatorUpdated` event signaling the validator for the contract * @dev is the default transfer validator. */ function _emitDefaultTransferValidator() internal { emit TransferValidatorUpdated(address(0), DEFAULT_TRANSFER_VALIDATOR); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITransferValidatorSetTokenType { function setTokenTypeOfCollection(address collection, uint16 tokenType) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @dev Constant bytes32 value of 0x000...000 bytes32 constant ZERO_BYTES32 = bytes32(0); /// @dev Constant value of 0 uint256 constant ZERO = 0; /// @dev Constant value of 1 uint256 constant ONE = 1; /// @dev Constant value representing an open order in storage uint8 constant ORDER_STATE_OPEN = 0; /// @dev Constant value representing a filled order in storage uint8 constant ORDER_STATE_FILLED = 1; /// @dev Constant value representing a cancelled order in storage uint8 constant ORDER_STATE_CANCELLED = 2; /// @dev Constant value representing the ERC721 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC721 = 721; /// @dev Constant value representing the ERC1155 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC1155 = 1155; /// @dev Constant value representing the ERC20 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC20 = 20; /// @dev Constant value to mask the upper bits of a signature that uses a packed `vs` value to extract `s` bytes32 constant UPPER_BIT_MASK = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @dev EIP-712 typehash used for validating signature based stored approvals bytes32 constant UPDATE_APPROVAL_TYPEHASH = keccak256("UpdateApprovalBySignature(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 approvalExpiration,uint256 sigDeadline,uint256 masterNonce)"); /// @dev EIP-712 typehash used for validating a single use permit without additional data bytes32 constant SINGLE_USE_PERMIT_TYPEHASH = keccak256("PermitTransferFrom(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 expiration,uint256 masterNonce)"); /// @dev EIP-712 typehash used for validating a single use permit with additional data string constant SINGLE_USE_PERMIT_TRANSFER_ADVANCED_TYPEHASH_STUB = "PermitTransferFromWithAdditionalData(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 expiration,uint256 masterNonce,"; /// @dev EIP-712 typehash used for validating an order permit that updates storage as it fills string constant PERMIT_ORDER_ADVANCED_TYPEHASH_STUB = "PermitOrderWithAdditionalData(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 salt,address operator,uint256 expiration,uint256 masterNonce,"; /// @dev Pausable flag for stored approval transfers of ERC721 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC721 = 1 << 0; /// @dev Pausable flag for stored approval transfers of ERC1155 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC1155 = 1 << 1; /// @dev Pausable flag for stored approval transfers of ERC20 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC20 = 1 << 2; /// @dev Pausable flag for single use permit transfers of ERC721 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC721 = 1 << 3; /// @dev Pausable flag for single use permit transfers of ERC1155 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC1155 = 1 << 4; /// @dev Pausable flag for single use permit transfers of ERC20 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC20 = 1 << 5; /// @dev Pausable flag for order fill transfers of ERC1155 assets uint256 constant PAUSABLE_ORDER_TRANSFER_FROM_ERC1155 = 1 << 6; /// @dev Pausable flag for order fill transfers of ERC20 assets uint256 constant PAUSABLE_ORDER_TRANSFER_FROM_ERC20 = 1 << 7;
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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 pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract OwnablePermissions is Context { function _requireCallerIsContractOwner() internal view virtual; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; library DataTypes { // Pack and unpack uint256 function packUint256(uint256 value) internal pure returns (bytes32) { return bytes32(value); } function unpackUint256(bytes32 packed) internal pure returns (uint256) { return uint256(packed); } // Pack and unpack int256 function packInt256(int256 value) internal pure returns (bytes32) { return bytes32(uint256(value)); } function unpackInt256(bytes32 packed) internal pure returns (int256) { return int256(uint256(packed)); } // Pack and unpack address function packAddress(address value) internal pure returns (bytes32) { return bytes32(uint256(uint160(value))); } function unpackAddress(bytes32 packed) internal pure returns (address) { return address(uint160(uint256(packed))); } // Pack and unpack bool function packBool(bool value) internal pure returns (bytes32) { return bytes32(uint256(value ? 1 : 0)); } function unpackBool(bytes32 packed) internal pure returns (bool) { return uint256(packed) == 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; uint256 constant ID = uint256(keccak256("game.gigaverse.datastore")); interface IDataStore { enum ColumnType { NONE, UINT256, INT256, BOOL, ADDRESS, BYTES32, STRING, UINT256_ARRAY } event ValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, bytes32 value); event StringValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, string value); event ArrayValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, bytes32[] value); event ColumnTypeSet(uint256 indexed colId, ColumnType columnType); function setValue(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) external; function getValue(uint256 tableId, uint256 docId, uint256 colId) external view returns (bytes32); function setColumnType(uint256 colId, ColumnType columnType) external; function getColumnType(uint256 colId) external view returns (ColumnType); // Type-specific setters function setUint256(uint256 tableId, uint256 docId, uint256 colId, uint256 value) external; function setInt256(uint256 tableId, uint256 docId, uint256 colId, int256 value) external; function setBool(uint256 tableId, uint256 docId, uint256 colId, bool value) external; function setAddress(uint256 tableId, uint256 docId, uint256 colId, address value) external; function setBytes32(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) external; function setString(uint256 tableId, uint256 docId, uint256 colId, string memory value) external; // Type-specific getters function getUint256(uint256 tableId, uint256 docId, uint256 colId) external view returns (uint256); function getInt256(uint256 tableId, uint256 docId, uint256 colId) external view returns (int256); function getBool(uint256 tableId, uint256 docId, uint256 colId) external view returns (bool); function getAddress(uint256 tableId, uint256 docId, uint256 colId) external view returns (address); function getBytes32(uint256 tableId, uint256 docId, uint256 colId) external view returns (bytes32); function getString(uint256 tableId, uint256 docId, uint256 colId) external view returns (string memory); function deleteValue(uint256 tableId, uint256 docId, uint256 colId) external; function hasValue(uint256 tableId, uint256 docId, uint256 colId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * Defines a system the game engine */ interface ISystem { /** @return The ID for the system. Ex: a uint256 casted keccak256 hash */ function getId() external view returns (uint256); function initialize() external; }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; // @title Interface the game's ACL / Management Layer interface IGameRegistry is IERC165 { /** * @dev Returns `true` if `account` has been granted `role`. * @param role The role to query * @param account The address to query */ function hasAccessRole( bytes32 role, address account ) external view returns (bool); /** * @return Whether or not the registry is paused */ function paused() external view returns (bool); /** * Registers a system by id * * @param systemId Id of the system * @param systemAddress Address of the system contract */ function registerSystem(uint256 systemId, address systemAddress, bool isGameLogicContract) external; /** * @param systemId Id of the system * @return System based on an id */ function getSystem(uint256 systemId) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ICreatorToken { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (address validator); function setTransferValidator(address validator) external; function getTransferValidationFunction() external view returns (bytes4 functionSignature, bool isViewFunction); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ICreatorTokenLegacy { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (address validator); function setTransferValidator(address validator) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITransferValidator { function applyCollectionTransferPolicy(address caller, address from, address to) external view; function validateTransfer(address caller, address from, address to) external view; function validateTransfer(address caller, address from, address to, uint256 tokenId) external view; function validateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount) external; function beforeAuthorizedTransfer(address operator, address token, uint256 tokenId) external; function afterAuthorizedTransfer(address token, uint256 tokenId) external; function beforeAuthorizedTransfer(address operator, address token) external; function afterAuthorizedTransfer(address token) external; function beforeAuthorizedTransfer(address token, uint256 tokenId) external; function beforeAuthorizedTransferWithAmount(address token, uint256 tokenId, uint256 amount) external; function afterAuthorizedTransferWithAmount(address token, uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; /** * @title TransferValidation * @author Limit Break, Inc. * @notice A mix-in that can be combined with ERC-721 contracts to provide more granular hooks. * Openzeppelin's ERC721 contract only provides hooks for before and after transfer. This allows * developers to validate or customize transfers within the context of a mint, a burn, or a transfer. */ abstract contract TransferValidation is Context { /// @dev Thrown when the from and to address are both the zero address. error ShouldNotMintToBurnAddress(); /*************************************************************************/ /* Transfers Without Amounts */ /*************************************************************************/ /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /*************************************************************************/ /* Transfers With Amounts */ /*************************************************************************/ /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId, uint256 amount) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, amount, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, amount, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, amount, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId, uint256 amount) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, amount, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, amount, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, amount, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@limitbreak/creator-token-standards/=lib/creator-token-standards/", "@openzeppelin/=lib/openzeppelin-contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "murky/=lib/murky/src/", "erc721a/=lib/ERC721A/", "@creator-token-standards/=lib/creator-token-standards/src/", "@limitbreak/permit-c/=lib/creator-token-standards/lib/PermitC/src/", "@opensea/tstorish/=lib/creator-token-standards/lib/tstorish/src/", "@rari-capital/solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/", "ERC721A/=lib/ERC721A/contracts/", "PermitC/=lib/creator-token-standards/lib/PermitC/", "creator-token-standards/=lib/creator-token-standards/", "erc4626-tests/=lib/murky/lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-gas-metering/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/", "forge-zksync-std/=lib/forge-zksync-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/creator-token-standards/lib/PermitC/lib/openzeppelin-contracts/contracts/", "solady/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/lib/solady/", "solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/src/", "tstorish/=lib/creator-token-standards/lib/tstorish/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address","name":"gameRegistryAddress","type":"address"},{"internalType":"address","name":"royaltyRecipient","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"CreatorTokenBase__InvalidTransferValidatorContract","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"InvalidAccountAddress","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[],"name":"InvalidTokenId","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"NotEnoughSupply","type":"error"},{"inputs":[],"name":"ShouldNotMintToBurnAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"autoApproved","type":"bool"}],"name":"AutomaticApprovalOfTransferValidatorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"lastTransferTime","type":"uint32"}],"name":"LastTransferSet","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"timeHeld","type":"uint32"}],"name":"TimeHeldSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldValidator","type":"address"},{"indexed":false,"internalType":"address","name":"newValidator","type":"address"}],"name":"TransferValidatorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_TRANSFER_VALIDATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"afterUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoApproveTransfersFromValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchAirDrop","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beforeUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burnByGameContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGameRegistry","outputs":[{"internalType":"contract IGameRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLastTransfer","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerDocId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeHeld","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransferValidationFunction","outputs":[{"internalType":"bytes4","name":"functionSignature","type":"bytes4"},{"internalType":"bool","name":"isViewFunction","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTransferValidator","outputs":[{"internalType":"address","name":"validator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocStringValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isApproved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"autoApprove","type":"bool"}],"name":"setAutomaticApprovalOfTransfersFromValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"name":"setGameRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldPause","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"soulbound","type":"bool"}],"name":"setSoulbound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"setTraitsInitialized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bool","name":"before","type":"bool"}],"name":"setUpdateHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100161541d38759e01acf9b986f09c2d86cff214bb9b19dc833cffaa4e17ee9000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000002710000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6000000000000000000000000bc3d3f90005f4a4649764431e1a3d529d2aae66e00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x0004000000000002000e000000000002000000000401034f0000006001100270000014f40010019d000014f403100197000300000034035500020000000403550000000100200190000000220000c13d0000008001000039000000400010043f000000040030008c0000004e0000413d000000000134034f000000000204043b000000e0022002700000151d0020009c000000500000213d000015510020009c0000008a0000213d0000156b0020009c000001100000213d000015780020009c0000022f0000a13d000015790020009c000004280000a13d0000157a0020009c000006740000613d0000157b0020009c000006f30000613d0000157c0020009c000003fd0000613d0000004e0000013d000000a002000039000000400020043f0000000001000416000000000001004b0000004e0000c13d0000001f01300039000014f501100197000000a001100039000000400010043f0000001f0530018f000014f606300198000000a001600039000000340000613d000000000704034f000000007807043c0000000002820436000000000012004b000000300000c13d000000000005004b000000410000613d000000000264034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000800030008c0000004e0000413d000000c00200043d000014f70020009c0000004e0000213d000000e00100043d000e00000001001d000014f70010009c0000004e0000213d000001000100043d000d00000001001d000014f80010009c000001c50000a13d0000000001000019000053cc000104300000151e0020009c000000e60000213d000015380020009c0000015a0000213d000015450020009c0000023c0000a13d000015460020009c000004350000a13d000015470020009c000006900000613d000015480020009c000006fa0000613d000015490020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014fe0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d0000000402100039000000000224034f000000000202043b000a00000002001d000014fe0020009c0000004e0000213d0000000a020000290000000502200210000900240010003d0000000901200029000000000031004b0000004e0000213d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f701100197000e00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c000017760000c13d0000000103000031000000200030008c000000200400003900000000040340190000179b0000013d000015520020009c0000017f0000213d0000155f0020009c0000025d0000a13d000015600020009c0000043e0000a13d000015610020009c000004e20000613d000015620020009c0000070f0000613d000015630020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000014fe0020009c0000004e0000213d0000002301200039000000000031004b0000004e0000813d0000000405200039000000000154034f000000000101043b000014fe0010009c00001cee0000213d0000001f06100039000015f3066001970000003f06600039000015f306600197000015aa0060009c00001cee0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b0000004e0000213d0000002002500039000000000324034f000015f3041001980000001f0510018f000000a002400039000000c00000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000000bc0000c13d000000000005004b000000cd0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000a01000039000000000201041a000000400500043d000015ab0100004100000000001504350000000401500039000015b00300004100000000003104350000000001000411000014f7031001970000002401500039000d00000003001d000000000031043500000000010004140000000802200270000014f702200197000000040020008c000019aa0000c13d0000000103000031000000200030008c00000020040000390000000004034019000019d70000013d0000151f0020009c0000019e0000213d0000152c0020009c0000027e0000a13d0000152d0020009c000004540000a13d0000152e0020009c000006ba0000613d0000152f0020009c0000071b0000613d000015300020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f701100197000d00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c000012330000c13d0000000103000031000000200030008c00000020040000390000000004034019000012580000013d0000156c0020009c000002890000a13d0000156d0020009c000004730000a13d0000156e0020009c000006c00000613d0000156f0020009c000007200000613d000015700020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000e00000001001d0000000401400370000000000101043b000000000010043f0000000e01000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000400300043d000014f90030009c00001cee0000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a0021002700000000000240435000014f7011001980000000000130435000001490000c13d000000400300043d000014f90030009c00001cee0000213d0000004001300039000000400010043f0000000d01000039000000000101041a0000002004300039000000a0021002700000000000240435000014f70110019700000000001304350000000e0400002900000000034200a9000000000004004b000001500000613d00000000044300d9000000000042004b000004f30000c13d000027100230011a000000400300043d000000200430003900000000002404350000000000130435000014f40030009c000014f4030080410000004001300210000015de011001c7000053cb0001042e000015390020009c000002a40000a13d0000153a0020009c000004890000a13d0000153b0020009c000006d40000613d0000153c0020009c000007350000613d0000153d0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402400370000000000202043b000d00000002001d0000000402400370000000000202043b000e00000002001d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c00000df40000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e190000013d000015530020009c000002c50000a13d000015540020009c000004b40000a13d000015550020009c000006dd0000613d000015560020009c0000073a0000613d000015570020009c0000004e0000c13d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c00000e920000c13d0000000103000031000000200030008c0000002004000039000000000403401900000eb70000013d000015200020009c000002f10000a13d000015210020009c000004cc0000a13d000015220020009c000006e90000613d000015230020009c000007530000613d000015240020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000601043b000014f70060009c0000004e0000213d0000000f01000039000000000201041a000014f7032001970000000005000411000000000053004b000007dc0000c13d000000000006004b000014500000c13d0000151801000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000158401000041000000c40010043f0000158501000041000000e40010043f0000158601000041000053cc00010430000b00000002001d000000400100043d000c00000001001d000014f90010009c00001cee0000213d000000a00100043d000800000001001d0000000c020000290000004001200039000000400010043f00000008010000390000000002120436000014fa01000041000900000002001d0000000000120435000000400100043d000a00000001001d000014f90010009c00001cee0000213d0000000a020000290000004001200039000000400010043f00000003010000390000000002120436000014fb01000041000600000002001d0000000000120435000000400100043d000700000001001d000014f90010009c00001cee0000213d00000007020000290000004001200039000000400010043f0000000a010000390000000002120436000014fc01000041000400000002001d0000000000120435000000400100043d000500000001001d000014fd0010009c00001cee0000213d00000005020000290000002001200039000000400010043f0000000000020435000000400200043d000300000002001d000014fd0020009c00001cee0000213d00000003020000290000002003200039000100000003001d000000400030043f000000000002043500000005020000290000000002020433000200000002001d000014fe0020009c00001cee0000213d000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000007090000c13d000000200030008c00000002040000290000021d0000413d0000001f024000390000000502200270000014ff0220009a000000200040008c0000150002004041000000000000043f0000001f033000390000000503300270000014ff0330009a000000000032004b0000021d0000813d000000000002041b0000000102200039000000000032004b000002190000413d0000001f0040008c000019930000a13d000000000000043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000200200008a0000000202200180000000000101043b00001ccd0000c13d000000200300003900001cda0000013d0000157f0020009c0000036a0000213d000015820020009c000004f90000613d000015830020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000150801000041000000800010043f0000158801000041000053cb0001042e0000154c0020009c000003910000213d0000154f0020009c000005140000613d000015500020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c00000a360000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a5b0000013d000015660020009c000003ac0000213d000015690020009c000005290000613d0000156a0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c00000a7a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a9f0000013d000015330020009c000003d10000213d000015360020009c0000053c0000613d000015370020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000001001000039000006be0000013d000015730020009c000003d60000213d000015760020009c000005670000613d000015770020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c00000ac00000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ae50000013d000015400020009c000003f90000213d000015430020009c000005700000613d000015440020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c00000b050000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b2a0000013d0000155a0020009c000004020000213d0000155d0020009c000005940000613d0000155e0020009c0000004e0000c13d000000640030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000d00000001001d0000002401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000004401400370000000000101043b000c00000001001d000014f80010009c0000004e0000213d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f701100197000b00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c000013340000c13d0000000103000031000000200030008c00000020040000390000000004034019000013590000013d000015270020009c000004070000213d0000152a0020009c000005ba0000613d0000152b0020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014fe0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d0000000402100039000000000224034f000000000502043b000014fe0050009c00001cee0000213d00000005025002100000003f06200039000015a906600197000015aa0060009c00001cee0000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002210019000000000032004b0000004e0000213d000000000005004b0000031f0000613d000000a005000039000000000614034f000000000606043b000014f70060009c0000004e0000213d00000000056504360000002001100039000000000021004b000003170000413d0000002401400370000000000101043b000014fe0010009c0000004e0000213d0000002302100039000000000032004b00000000050000190000158f050040410000158f02200197000000000002004b00000000060000190000158f060020410000158f0020009c000000000605c019000000000006004b0000004e0000613d0000000402100039000000000224034f000000000202043b000014fe0020009c00001cee0000213d00000005052002100000003f06500039000015a906600197000000400700043d0000000006670019000c00000007001d000000000076004b00000000070000390000000107004039000014fe0060009c00001cee0000213d000000010070019000001cee0000c13d000000400060043f0000000c060000290000000006260436000700000006001d00000024011000390000000005510019000000000035004b0000004e0000213d000000000002004b000003520000613d0000000702000029000000000314034f000000000303043b00000000023204360000002001100039000000000051004b0000034c0000413d0000000a01000039000000000201041a000000400400043d000015ab0100004100000000001404350000000401400039000015ac0300004100000000003104350000000001000411000014f703100197000e00000004001d0000002401400039000b00000003001d000000000031043500000000010004140000000802200270000014f702200197000000040020008c00001f8a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001fb40000013d000015800020009c000005db0000613d000015810020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000002401400370000000000101043b000d00000001001d000014f80010009c0000004e0000213d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f701100197000c00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c0000137f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000013a40000013d0000154d0020009c000005fb0000613d0000154e0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a000015ab01000041000000800010043f000015ca01000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c00000b480000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b6d0000013d000015670020009c000004e20000613d000015680020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000d00000001001d000014f70010009c0000004e0000213d0000002401400370000000000101043b000c00000001001d0000000a01000039000000000201041a000015ab01000041000000800010043f000015ac01000041000000840010043f0000000001000411000014f701100197000e00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c000010d90000c13d0000000103000031000000200030008c00000020040000390000000004034019000010fe0000013d000015340020009c000006100000613d000015350020009c000004eb0000613d0000004e0000013d000015740020009c0000062b0000613d000015750020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000e00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a000015ab01000041000000800010043f000015e001000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c000011150000c13d0000000103000031000000200030008c000000200400003900000000040340190000113a0000013d000015410020009c000006350000613d000015420020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d53ca2b050000040f0000075c0000013d0000155b0020009c000006540000613d0000155c0020009c000004e30000613d0000004e0000013d000015280020009c0000065c0000613d000015290020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000002401400370000000000101043b000c00000001001d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c000011500000c13d0000000103000031000000200030008c00000020040000390000000004034019000011750000013d0000157d0020009c000007630000613d0000157e0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b53ca2a100000040f0000075c0000013d0000154a0020009c000004e30000613d0000154b0020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d0000000f01000039000006be0000013d000015640020009c000007760000613d000015650020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d53ca2da10000040f000014f70110019800000d960000613d0000000002000411000000000021004b000012820000c13d0000000e0100002953ca4ab20000040f0000000001000019000053cb0001042e000015310020009c000007940000613d000015320020009c0000004e0000c13d000000440030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000002402400370000000000202043b000d00000002001d0000000402400370000000000202043b000e00000002001d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c00000f330000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f580000013d000015710020009c000004eb0000613d000015720020009c0000004e0000c13d0000000001000416000000000001004b0000004e0000c13d000000000103001953ca29870000040f000e00000001001d000d00000002001d0000000002030019000c00000003001d000000000100041153ca31760000040f53ca2d8a0000040f0000000e010000290000000d020000290000000c0300002953ca334e0000040f0000000001000019000053cb0001042e0000153e0020009c000007a90000613d0000153f0020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000000f01000039000000000101041a000014f7011001970000000002000411000000000021004b000007dc0000c13d0000150b0100004100000000001004430000000e0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d0000000e04000029000000000004004b0000165d0000613d000000000101043b000000000001004b0000165d0000c13d000015ba01000041000000000010043f0000159b01000041000053cc00010430000015580020009c000007be0000613d000015590020009c0000004e0000c13d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b53ca2da10000040f000e14f70010019c0000000001000039000000010100c03953ca2ef40000040f000000400100043d0000000e020000290000000000210435000014f40010009c000014f401008041000000400110021000001587011001c7000053cb0001042e000015250020009c000007c90000613d000015260020009c0000004e0000c13d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014f70010009c0000004e0000213d0000002402400370000000000202043b000014f70020009c0000004e0000213d53ca30ba0000040f000000000001004b0000000001000039000000010100c0390000075c0000013d53ca29a80000040f0000000001000416000000000001004b0000004e0000c13d0000000b01000039000000000101041a000000800010043f0000158801000041000053cb0001042e0000000001000416000000000001004b0000004e0000c13d53ca2b050000040f000e00000001001d53ca2bdc0000040f0000000e0110006b0000075c0000813d000015d301000041000000000010043f0000001101000039000000040010043f0000159201000041000053cc00010430000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c000008210000c13d0000000103000031000000200030008c00000020040000390000000004034019000008460000013d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a000015ab01000041000000800010043f000015cb01000041000000840010043f0000000001000411000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c000007e50000c13d0000000103000031000000200030008c000000200400003900000000040340190000080a0000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000903000039000000000203041a000000020020008c000008940000c13d0000151801000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000015dd01000041000000c40010043f000015be01000041000053cc00010430000000840030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000002401400370000000000101043b000d00000001001d000014f70010009c0000004e0000213d0000006401400370000000000101043b000014fe0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d0000000402100039000000000224034f000000000202043b0000004404400370000000000404043b000c00000004001d000000240110003953ca29d80000040f000b00000001001d00000000010004110000000c0200002953ca31760000040f53ca2d8a0000040f0000000e010000290000000d020000290000000c0300002953ca334e0000040f0000000e010000290000000d020000290000000c030000290000078f0000013d0000000001000416000000000001004b0000004e0000c13d000015e401000041000000800010043f0000000101000039000000a00010043f000015e501000041000053cb0001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d0000000f02000039000000000202041a000014f7022001970000000003000411000000000032004b000007dc0000c13d0000000802000039000000000302041a000015c003300197000000000001004b0000000004000019000015c10400c041000000000343019f000000000032041b000000800010043f0000000001000414000014f40010009c000014f401008041000000c001100210000015c2011001c70000800d020000390000000103000039000015c3040000410000074e0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f703100197000000a40030043f00000000010004140000000802200270000014f702200197000000040020008c000c00000003001d000012a20000c13d0000000103000031000000200030008c00000020040000390000000004034019000012c70000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000e00000002001d000000000012004b0000004e0000c13d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f701100197000d00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c00000fe90000c13d0000000103000031000000200030008c000000200400003900000000040340190000100e0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000201043b000015eb002001980000004e0000c13d0000000101000039000015ec0020009c000005f70000613d000015ed0020009c000005f70000613d000015ee0020009c000005f70000613d000015ef0020009c00000000030000390000000103006039000015f00020009c00000000040000390000000104006039000015f10020009c00000000050000390000000105006039000015f20020009c000000000134c19f000000000115c19f000000010110018f000000800010043f0000158801000041000053cb0001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c000008aa0000c13d0000000103000031000000200030008c00000020040000390000000004034019000008cf0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000e00000001001d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c000008ee0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009130000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014f70010009c0000004e0000213d000007c60000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b0000004e0000c13d00000000020004110000000e0020006c000012de0000c13d0000151801000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f000015bd01000041000000c40010043f000015be01000041000053cc000104300000000001000416000000000001004b0000004e0000c13d53ca2e7c0000040f000000000001004b0000000001000039000000010100c0390000075c0000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000402400370000000000202043b000e00000002001d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c0000095c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000009810000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d000014f70010009c0000004e0000213d0000002401400370000000000101043b000d00000001001d53ca2da10000040f000014f70110019800000d960000613d0000000e0010006b000013da0000c13d000000400100043d0000006402100039000015e90300004100000000003204350000004402100039000015ea030000410000000000320435000000240210003900000021030000390000128b0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014fe0010009c0000004e0000213d0000002302100039000000000032004b0000004e0000813d000d00040010003d0000000d02400360000000000202043b000e00000002001d000014fe0020009c0000004e0000213d0000000e01100029000c00240010003d0000000c0030006b0000004e0000213d0000000a01000039000000000201041a000015ab01000041000000800010043f000015b001000041000000840010043f0000000001000411000014f701100197000b00000001001d000000a40010043f00000000010004140000000802200270000014f702200197000000040020008c0000172e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000017530000013d0000000001000416000000000001004b0000004e0000c13d0000001101000039000000000101041a000006ef0000013d000000440030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014f70010009c0000004e0000213d000000a001000039000000400010043f000000800000043f000000800200003953ca29990000040f000000a00110008a000014f40010009c000014f4010080410000006001100210000015df011001c7000053cb0001042e0000000001000416000000000001004b0000004e0000c13d000000000100041153ca30ef0000040f0000000d01000039000000000001041b0000000001000019000053cb0001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000014f70010009c0000004e0000213d53ca525a0000040f53ca2f080000040f0000075c0000013d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000101041a0000000801100270000014f701100197000000800010043f0000158801000041000053cb0001042e0000000001000416000000000001004b0000004e0000c13d53ca2afb0000040f000000800010043f0000158801000041000053cb0001042e0000000001000416000000000001004b0000004e0000c13d0000000701000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f000000010040019000000b830000613d000015d301000041000000000010043f0000002201000039000000040010043f0000159201000041000053cc00010430000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b53ca2da10000040f000014f7001001980000000001000039000000010100c0390000075c0000013d0000000001000416000000000001004b0000004e0000c13d53ca2cb30000040f0000075c0000013d000000240030008c0000004e0000413d0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c00000cea0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d0f0000013d0000000001000416000000000001004b0000004e0000c13d53ca2bdc0000040f0000075c0000013d0000000001000416000000000001004b0000004e0000c13d0000000f01000039000000000201041a000014f7032001970000000005000411000000000053004b000007dc0000c13d0000151302200197000000000021041b0000000001000414000014f40010009c000014f401008041000000c00110021000001514011001c70000800d0200003900000003030000390000151504000041000000000600001953ca53c00000040f00000001002001900000004e0000613d0000000001000019000053cb0001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b53ca2fe10000040f000014f401100197000000400200043d0000000000120435000014f40020009c000014f402008041000000400120021000001587011001c7000053cb0001042e0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c00000b9e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000bc30000013d0000000001000416000000000001004b0000004e0000c13d000000000103001953ca29870000040f000d00000001001d000c00000002001d000e00000003001d000000400100043d000b00000001001d000000200200003953ca29c60000040f0000000b01000029000000000001043500000000010004110000000e0200002953ca31760000040f53ca2d8a0000040f0000000d010000290000000c020000290000000e0300002953ca334e0000040f0000000d010000290000000c020000290000000e030000290000000b0400002953ca52a00000040f53ca528c0000040f0000000001000019000053cb0001042e000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000401400370000000000101043b000e00000001001d53ca2da10000040f000014f70010019800000d920000c13d000000400100043d0000006402100039000015b70300004100000000003204350000004402100039000015b803000041000000000032043500000024021000390000002f030000390000128b0000013d000000240030008c0000004e0000413d0000000001000416000000000001004b0000004e0000c13d0000000a01000039000000000201041a0000158901000041000000800010043f0000158a01000041000000840010043f00000000010004140000000802200270000014f702200197000000040020008c00000da70000c13d0000000103000031000000200030008c0000002004000039000000000403401900000dcc0000013d0000000001000416000000000001004b0000004e0000c13d0000000801000039000000000101041a000015d5001001980000000001000039000000010100c039000000800010043f0000158801000041000053cb0001042e0000000002000416000000000002004b0000004e0000c13d0000000a02000039000000000202041a0000158903000041000000800030043f0000158a03000041000000840030043f00000000030004140000000802200270000014f702200197000000040020008c00000c440000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c690000013d0000151801000041000000800010043f0000002001000039000000840010043f000000a40010043f000015d401000041000000c40010043f000015be01000041000053cc00010430000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007f90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007f50000c13d000000000006004b000008060000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fdd0000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b000014680000c13d000015af01000041000000000010043f0000000001000411000000040010043f000015cb01000041000000240010043f0000150e01000041000053cc00010430000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008350000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008310000c13d000000000006004b000008420000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010720000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a000015bb040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c00000b440000613d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000c0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000008770000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008730000c13d000000000006004b000008840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016200000c13d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000088f0000c13d000021bd0000013d0000000202000039000000000023041b0000000a02000039000000000202041a000015ab03000041000000800030043f000015b003000041000000840030043f0000000003000411000014f703300197000e00000003001d000000a40030043f00000000030004140000000802200270000014f702200197000000040020008c0000107e0000c13d0000000104000031000000200040008c00000020030000390000000003044019000010a30000013d000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008be0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008ba0000c13d000000000006004b000008cb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010b50000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a00001590040000410000000e05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c0000150b0000c13d0000000001150019000000400010043f0000000e0200002900000abc0000013d000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009020000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008fe0000c13d000000000006004b0000090f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010c10000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a0000159d040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c00000b440000613d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000c0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000009440000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000009400000c13d000000000006004b000009510000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000183f0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000b460000813d0000004e0000013d000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009700000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000096c0000c13d000000000006004b0000097d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010cd0000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a0000159d060000410000000d07000029000000000067043500000084064001bf0000000000560435000000c4054000390000159e060000410000000000650435000000a4054000390000000e0600002900000000006504350000000005000414000000040020008c0000153b0000c13d0000000002470019000c00000002001d000000400020043f0000000d020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b0000004e0000c13d0000000a02000039000000000202041a00001589060000410000000c07000029000000000067043500000004067001bf0000158a0700004100000000007604350000000802200270000014f702200197000000000005004b00001a090000c13d0000000005000414000000040020008c00001b110000c13d0000000c02400029000d00000002001d000000400020043f0000000c020000290000000002020433000014f70020009c0000004e0000213d0000000b04000039000000000404041a0000000d0700002900000044057000390000159f0600004100000000006504350000158c05000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000009d80000613d0000000d010000290000004001100210000014f40040009c000014f404008041000000c003400210000000000131019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f4033001970003000000010355000000010020019000001e040000613d000000200200008a00000000052301700000001f0630018f0000000d04500029000009e30000613d000000000701034f0000000d08000029000000007907043c0000000008980436000000000048004b000009df0000c13d000000000006004b000009f00000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000d01400029000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000d040000290000000004040433000014fe0040009c0000004e0000213d0000000d063000290000000d034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000054030434000014fe0040009c00001cee0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000014fe0030009c00001cee0000213d000000400030043f00000000034104360000000007540019000000000067004b0000004e0000213d000000000724016f0000001f0640018f000000000035004b000023e20000813d000000000007004b00000a320000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000a2c0000c13d000000000006004b000023f80000613d0000000008030019000023ee0000013d000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a4a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a460000c13d000000000006004b00000a570000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011a40000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a00001593040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c0000156b0000c13d0000000001150019000000400010043f0000000c02000029000000000202043300000df00000013d000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a8e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a8a0000c13d000000000006004b00000a9b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011b00000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a00001590040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c0000159a0000c13d0000000001150019000000400010043f0000000c020000290000000002020433000014f70020009c0000004e0000213d00000df00000013d000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ad40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ad00000c13d000000000006004b00000ae10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011bc0000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a00001593040000410000000e05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000015c90000c13d0000000001150019000000400010043f0000000e02000029000000000202043300000df00000013d000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b190000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b150000c13d000000000006004b00000b260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011c80000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a000015bf040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000d040000290000000000430435000000a4031000390000000e0400002900000000004304350000000003000414000000040020008c000015f80000c13d0000000001150019000000400010043f0000000c0200002900000dea0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b5c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b580000c13d000000000006004b00000b690000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011d40000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000016270000c13d000015af01000041000000000010043f0000000001000411000000040010043f000015ca01000041000000240010043f0000150e01000041000053cc00010430000000800050043f000000000003004b000011e00000c13d000015f401600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a000000800100003953ca29c60000040f0000002001000039000000400200043d000e00000002001d0000000002120436000000800100003953ca29550000040f0000000e020000290000000001210049000014f40010009c000014f4010080410000006001100210000014f40020009c000014f4020080410000004002200210000000000121019f000053cb0001042e000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bb20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bae0000c13d000000000006004b00000bbf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011f10000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a0000158c060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000159e060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000bea0000613d0000004001a00210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f40330019700030000000103550000000100200190000019310000613d0000000e0a000029000015f3053001980000001f0630018f00000000045a001900000bf40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000bf00000c13d000000000006004b00000c010000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3041001970000000001a40019000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e040000290000000004040433000014fe0040009c0000004e0000213d0000000e063000290000000e034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000043030434000014fe0030009c00001cee0000213d0000001f05300039000015f3055001970000003f05500039000015f3055001970000000005150019000014fe0050009c00001cee0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d000015f3063001970000001f0230018f000000000054004b0000204a0000813d000000000006004b00000fd90000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000c3d0000c13d00000fd90000013d000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f000000800a0000390000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c580000613d000000000801034f000000008908043c000000000a9a043600000000005a004b00000c540000c13d000000000006004b00000c650000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011fd0000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a0000158c060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000158d060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000c900000613d0000004001a00210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f403300197000300000001035500000001002001900000193d0000613d0000000e0a000029000015f3053001980000001f0630018f00000000045a001900000c9a0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000c960000c13d000000000006004b00000ca70000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3041001970000000001a40019000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e040000290000000004040433000014fe0040009c0000004e0000213d0000000e063000290000000e034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000043030434000014fe0030009c00001cee0000213d0000001f05300039000015f3055001970000003f05500039000015f3055001970000000005150019000014fe0050009c00001cee0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d000015f3063001970000001f0230018f000000000054004b000020540000813d000000000006004b00000fd90000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000ce30000c13d00000fd90000013d000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000cfe0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000cfa0000c13d000000000006004b00000d0b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012090000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a0000158c060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000d380000613d0000004001a00210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f40330019700030000000103550000000100200190000019490000613d0000000e0a000029000015f3053001980000001f0630018f00000000045a001900000d420000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000d3e0000c13d000000000006004b00000d4f0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3041001970000000001a40019000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e040000290000000004040433000014fe0040009c0000004e0000213d0000000e063000290000000e034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000043030434000014fe0030009c00001cee0000213d0000001f05300039000015f3055001970000003f05500039000015f3055001970000000005150019000014fe0050009c00001cee0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d000015f3063001970000001f0230018f000000000054004b0000205e0000813d000000000006004b00000fd90000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000d8b0000c13d00000fd90000013d0000000e0100002953ca2da10000040f000014f700100198000012150000c13d000000400100043d00000044021000390000159c03000041000000000032043500000024021000390000001803000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc00010430000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000dbb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000db70000c13d000000000006004b00000dc80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012270000613d0000001f01400039000000600110018f00000080021001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a000015bb040000410000000e05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c0000162e0000c13d0000000001150019000000400010043f0000000e020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004e0000c13d0000000000210435000000400110021000001587011001c7000053cb0001042e000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e080000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e040000c13d000000000006004b00000e150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000126a0000613d0000001f02400039000000600420018f00000080024001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a000015b9060000410000000c0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000d060000290000000000650435000000a4044000390000000e0500002900000000005404350000000004000414000000040020008c00000e410000613d0000004001a00210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f40330019700030000000103550000000100200190000019610000613d0000000c0a000029000015f3053001980000001f0630018f00000000045a001900000e4b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000e470000c13d000000000006004b00000e580000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3011001970000000002a10019000000000012004b00000000010000390000000101004039000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d000000400020043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000c010000290000000001010433000014fe0010009c0000004e0000213d0000000c033000290000000c011000290000001f04100039000000000034004b00000000050000190000158f050080410000158f044001970000158f06300197000000000764013f000000000064004b00000000040000190000158f040040410000158f0070009c000000000405c019000000000004004b0000004e0000c13d0000000015010434000014fe0050009c00001cee0000213d00000005045002100000003f06400039000015a9066001970000000006260019000014fe0060009c00001cee0000213d000000400060043f00000000005204350000000004140019000000000034004b0000004e0000213d000000000005004b00000f300000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000e8c0000413d00000f300000013d000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ea60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ea20000c13d000000000006004b00000eb30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012760000613d0000001f02400039000000600420018f00000080024001bf000e00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a000015b9060000410000000e0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000ee00000613d0000004001a00210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f403300197000300000001035500000001002001900000196d0000613d0000000e0a000029000015f3053001980000001f0630018f00000000045a001900000eea0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000ee60000c13d000000000006004b00000ef70000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3011001970000000002a10019000000000012004b00000000010000390000000101004039000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d000000400020043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000e010000290000000001010433000014fe0010009c0000004e0000213d0000000e033000290000000e011000290000001f04100039000000000034004b00000000050000190000158f050080410000158f044001970000158f06300197000000000764013f000000000064004b00000000040000190000158f040040410000158f0070009c000000000405c019000000000004004b0000004e0000c13d0000000015010434000014fe0050009c00001cee0000213d00000005045002100000003f06400039000015a9066001970000000006260019000014fe0060009c00001cee0000213d000000400060043f00000000005204350000000004140019000000000034004b0000004e0000213d000000000005004b00000f300000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000f2b0000413d000000400100043d000e00000001001d000018b90000013d000014f40030009c000014f403008041000000c0013002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f470000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f430000c13d000000000006004b00000f540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012960000613d0000001f02400039000000600420018f00000080024001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b05000039000000000505041a0000158c060000410000000c0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000d060000290000000000650435000000a4044000390000000e0500002900000000005404350000000004000414000000040020008c00000f800000613d0000004001a00210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f40330019700030000000103550000000100200190000019870000613d0000000c0a000029000015f3053001980000001f0630018f00000000045a001900000f8a0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000f860000c13d000000000006004b00000f970000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3041001970000000001a40019000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000c040000290000000004040433000014fe0040009c0000004e0000213d0000000c063000290000000c034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000043030434000014fe0030009c00001cee0000213d0000001f05300039000015f3055001970000003f05500039000015f3055001970000000005150019000014fe0050009c00001cee0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d000015f3063001970000001f0230018f000000000054004b000020680000813d000000000006004b00000fd90000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000fd30000c13d000000000002004b0000207e0000613d0000000007050019000020740000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fe40000c13d000021bd0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ffd0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ff90000c13d000000000006004b0000100a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000130e0000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b000012660000613d0000000a02000039000000000202041a00001589040000410000000c05000029000000000045043500000084011001bf0000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00001a8e0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000c010000290000000001010433000d00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000c00000001001d0000150b0100004100000000001004430000000d0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d00000064013000390000000e0200002900000000002104350000004401300039000015b2020000410000000000210435000015b301000041000000000013043500000004013000390000000c020000290000000000210435000e00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c0000106b0000613d0000000e02000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000d0200002953ca53c00000040f0000006003100270000114f40030019d0003000000010355000000010020019000001fdd0000613d0000000e01000029000014fe0010009c00001cee0000213d0000000e01000029000000400010043f0000000001000019000053cb0001042e0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010790000c13d000021bd0000013d000014f40030009c000014f403008041000000c001300210000015b1011001c753ca53c50000040f0000006003100270000014f404300197000000200040008c000000200300003900000000030440190000001f0630018f000000200730019000000080057001bf000010920000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000108e0000c13d000000000006004b0000109f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000131a0000613d0000001f02300039000000600220018f00000080052001bf000000400050043f000000200040008c0000004e0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004e0000c13d000000000002004b0000184b0000c13d000015af01000041000000000010043f0000000e01000029000017650000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010bc0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010c80000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010d40000c13d000021bd0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010ed0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010e90000c13d000000000006004b000010fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013b60000613d0000001f01400039000000600110018f00000080011001bf000a00000001001d000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b0000186e0000c13d000015af01000041000000000010043f0000000e01000029000000040010043f000015ac01000041000000240010043f0000150e01000041000053cc00010430000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011290000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011250000c13d000000000006004b000011360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013c20000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004e0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004e0000c13d000000000003004b000018bb0000c13d000015af01000041000000000010043f0000000001000411000000040010043f000015e001000041000000240010043f0000150e01000041000053cc00010430000014f40010009c000014f401008041000000c0011002100000158b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011640000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011600000c13d000000000006004b000011710000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013ce0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000014f70020009c0000004e0000213d0000000b03000039000000000303041a00001590040000410000000d05000029000000000045043500000084041001bf0000000000340435000000c40310003900001591040000410000000000430435000000a4031000390000000c0400002900000000004304350000000003000414000000040020008c000018d20000c13d0000000001150019000b00000001001d000000400010043f0000000d010000290000000001010433000014f70010009c0000004e0000213d000000000001004b00001b730000c13d00001518010000410000000b03000029000000000013043500000004013001bf0000002002000039000000000021043500000044013000390000159c0200004100000000002104350000002401300039000000180200003900001dfd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011ab0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011b70000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011c30000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011cf0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011db0000c13d000021bd0000013d000e00000006001d000d00000005001d000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d0000000e02000029000000020020008c000017210000813d000000a00100003900000b8b0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011f80000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012040000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012100000c13d000021bd0000013d0000000a01000039000000000201041a000000400b00043d000015890100004100000000001b04350000000401b000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000014010000c13d0000000103000031000000200030008c000000200400003900000000040340190000142d0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000122e0000c13d000021bd0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012470000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012430000c13d000000000006004b000012540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000145c0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000019790000c13d000015af01000041000000000010043f0000000d01000029000017650000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012710000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000127d0000c13d000021bd0000013d000000400100043d0000006402100039000015d80300004100000000003204350000004402100039000015d903000041000000000032043500000024021000390000002303000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f40100804100000040011002100000151c011001c7000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000129d0000c13d000021bd0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012b60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012b20000c13d000000000006004b000012c30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016c80000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000013b20000613d0000000d0000006b0000001101006039000000100100c039000000000201041a00001513022001970000000e022001af000000000021041b0000000001000019000053cb0001042e000000000020043f0000000501000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000000101043b0000000e02000029000000000020043f000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000000101043b000000000201041a000015f4022001970000000d03000029000000000232019f000000000021041b000000400100043d0000000000310435000014f40010009c000014f40100804100000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001501011001c70000800d020000390000000303000039000015bc0400004100000000050004110000000e060000290000074e0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013150000c13d000021bd0000013d0000001f0540018f000014f606400198000000400200043d0000000003620019000013250000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000013210000c13d000000000005004b000013320000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001304350000006001400210000021cb0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013480000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000013440000c13d000000000006004b000013550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016d40000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004e0000c13d000000000002004b000017620000613d0000000c02000029000014f802200197000c00000002001d000027110020008c00001bce0000413d00001518020000410000000a04000029000000000024043500000084021001bf00000020030000390000000000320435000000e4021000390000151a030000410000000000320435000000c4021000390000151b030000410000000000320435000000a4011000390000002a02000039000000000021043500000040014002100000151c011001c7000053cc00010430000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013930000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000138f0000c13d000000000006004b000013a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016e00000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004e0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004e0000c13d000000000003004b00001ac30000c13d000015af01000041000000000010043f0000000c01000029000017650000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013bd0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013c90000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013d50000c13d000021bd0000013d0000000002000411000000000012004b000016ec0000c13d0000000d01000029000000000010043f0000000401000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000000101043b000000000201041a00001513022001970000000e022001af000000000021041b0000000d0100002953ca2da10000040f000014f70510019800000d960000613d0000000001000414000014f40010009c000014f401008041000000c00110021000001514011001c70000800d020000390000000403000039000015e8040000410000000e060000290000000d0700002953ca53c00000040f00000001002001900000004e0000613d000007510000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c7000d0000000b001d53ca53c50000040f0000000d0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000141c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014180000c13d000000000006004b000014290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000176a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000d00000002001d000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d0000000d01000029000000400010043f000000200030008c0000004e0000413d00000000020b0433000014f70020009c0000004e0000213d0000000b01000039000000000101041a0000000d060000290000004404600039000015b60500004100000000005404350000158c04000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c00001c5f0000c13d000000030100036700001c6f0000013d0000151302200197000000000262019f000000000021041b0000000001000414000014f40010009c000014f401008041000000c00110021000001514011001c70000800d02000039000000030300003900001515040000410000074e0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014630000c13d000021bd0000013d000000c002100039000000400020043f0000000a040000390000000e020000290000000000420435000000a005100039000015cc0200004100000000002504350000000c02000039000000000202041a000000ff002001900000183b0000c13d000d00000005001d000000000204041a000000400b00043d000015890400004100000000004b04350000000404b000390000158a05000041000000000054043500000000040004140000000802200270000014f702200197000000040020008c000014af0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001592011001c7000c0000000b001d53ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0b0000290000000c057000290000149c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014980000c13d000000000006004b000014a90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b790000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d000000400020043f000000200030008c0000004e0000413d00000000010b0433000c00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d0000150b0100004100000000001004430000000c0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000006401300039000000000200041000000000002104350000004401300039000015ce020000410000000000210435000015cf0100004100000000001304350000000401300039000900000001001d0000000b020000290000000000210435000a00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c000014f50000613d0000000a02000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000c0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000020fe0000613d0000000a01000029000014fe0010009c00001cee0000213d0000000a03000029000000400030043f0000000a01000039000000000201041a000015890100004100000000001304350000158a010000410000000903000029000000000013043500000000010004140000000802200270000014f702200197000000040020008c000021180000c13d0000000103000031000000200030008c00000020040000390000000004034019000021420000013d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000e0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015220000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000151e0000c13d000000000006004b0000152f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018560000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004e0000413d0000000e0200002900000abc0000013d000014f40050009c000014f405008041000000c0015002100000004003700210000000000131019f00001519011001c753ca53c50000040f0000000d0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015520000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000154e0000c13d000000000006004b0000155f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018620000613d0000001f02400039000000600420018f0000000002b40019000c00000002001d000000400020043f000000200030008c0000099e0000813d0000004e0000013d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000c0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015820000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000157e0000c13d000000000006004b0000158f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019010000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a770000813d0000004e0000013d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000c0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015b10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015ad0000c13d000000000006004b000015be0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000190d0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004e0000413d00000abb0000013d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000e0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015e00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015dc0000c13d000000000006004b000015ed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019190000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004e0000413d00000b020000013d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000c0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000160f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000160b0000c13d000000000006004b0000161c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019250000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000b460000813d0000004e0000013d53ca3acf0000040f00000004010000390000000201100367000000000101043b53ca4ab20000040f0000000001000019000053cb0001042e000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000000e0b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016450000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016410000c13d000000000006004b000016520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019550000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000de90000813d0000004e0000013d0000000801000039000000000201041a0000000801200270000014f701100198000016650000c13d000000ff0020019000000000010000190000150801006041000000400200043d000000200320003900000000004304350000000000120435000014f40020009c000014f40200804100000040012002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001509011001c70000800d0200003900000001030000390000150a0400004153ca53c00000040f00000001002001900000004e0000613d0000000804000039000000000104041a0000150f011001970000000e0300002900000008023002100000151002200197000000000112019f00000001011001bf000000000014041b000000000003004b000007510000613d0000150b0100004100000000001004430000000e0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b000007510000613d0000150b0100004100000000001004430000000e0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000002401300039000002d10200003900000000002104350000150d010000410000000000130435000d00000003001d00000004013000390000000002000410000000000021043500000000010004140000000e02000029000000040020008c000016c10000613d0000000d02000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000150e011001c70000000e0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000007510000613d0000000d01000029000014fe0010009c00001cee0000213d0000000d01000029000000400010043f0000000001000019000053cb0001042e0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016cf0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016db0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016e70000c13d000021bd0000013d000000000010043f0000000501000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000000101043b0000000002000411000014f702200197000c00000002001d000000000020043f000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000000101043b000000000101041a000000ff00100190000013dd0000c13d0000000801000039000000000101041a000015d500100198000017170000613d0000000802100270000014f702200198000017150000c13d000000ff00100190000000000200001900001508020060410000000c0020006b000013dd0000613d000000400100043d0000006402100039000015e60300004100000000003204350000004402100039000015e703000041000000000032043500000024021000390000003d030000390000128b0000013d000000000101043b00000000030000190000000d050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000017240000413d000000c00120003900000b8b0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000017420000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000173e0000c13d000000000006004b0000174f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000199e0000613d0000001f01400039000000600110018f00000080021001bf000a00000002001d000000400020043f000000200030008c0000004e0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004e0000c13d000000000002004b00001c1c0000c13d000015af01000041000000000010043f0000000b01000029000000040010043f000015b001000041000000240010043f0000150e01000041000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017710000c13d000021bd0000013d000014f40010009c000014f401008041000000c001100210000015b1011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000178a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000017860000c13d000000000006004b000017970000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019fd0000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c0000004e0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000010b10000613d0000000a0000006b000007510000613d000000000a040019000e00000000001d0000000e01000029000000050110021000000009011000290000000201100367000000000101043b000c00000001001d0000000a01000039000000000201041a000015890100004100000000001a04350000000401a000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000017c40000c13d0000000103000031000000200030008c00000020040000390000000004034019000017ef0000013d000014f400a0009c000014f40300004100000000030a40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c7000d0000000a001d53ca53c50000040f0000000d0a0000290000006003100270000014f403300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000017de0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000017da0000c13d0000001f07400190000017eb0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020850000613d0000001f01400039000000600110018f0000000001a10019000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d00000000020a0433000014f70020009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d0000150b010000410000000000100443000d00000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000000d030000290000004e0000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a00039000015c40200004100000000002104350000002401a000390000000c020000290000000000210435000015b30100004100000000001a04350000000401a000390000000b0200002900000000002104350000000001000414000000040030008c000018320000613d000014f400a0009c000014f40200004100000000020a40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000d0000000a001d53ca53c00000040f0000000d0a0000290000006003100270000114f40030019d00030000000103550000000100200190000020910000613d000014fe00a0009c00001cee0000213d0000004000a0043f0000000e020000290000000102200039000e00000002001d0000000a0020006c000017ad0000413d000007510000013d000015cd01000041000000000010043f0000159b01000041000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018460000c13d000021bd0000013d00000004020000390000000202200367000000000302043b00000000020004140000000006000411000000040060008c00001abc0000c13d000014fe0040009c00001cee0000213d000000010200003900001b9c0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000185d0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018690000c13d000021bd0000013d0000000a01000039000000000201041a000000ff0020019000001df20000c13d000015ad010000410000000a04000029000000000014043500000000010004140000000802200270000014f702200197000000040020008c00001bdf0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000a01100029000b00000001001d000000400010043f0000000a010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b00001df10000c13d0000000c01000029000014fe0010009c00001cee0000213d0000000c0100002900000005021002100000003f01200039000015a9011001970000000b01100029000014fe0010009c00001cee0000213d000000400010043f0000000c010000290000000b030000290000000001130436000a00000001001d0000001f0120018f000000000002004b000018a40000613d0000000a04000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b000018a00000c13d000000000001004b0000000c0000006b000018b60000613d000e00000000001d0000000d0100002953ca3b5a0000040f0000000b0200002900000000020204330000000e04000029000000000042004b000026810000a13d00000005024002100000000a0220002900000000001204350000000104400039000e00000004001d0000000c0040006c000018a80000413d000000400100043d000e00000001001d0000000b0200002953ca29990000040f00000b940000013d0000000a03000039000000000303041a000000ff0430018f0000000e0000006b00001ad80000c13d000000000004004b00001af70000613d000015f4023001970000000a03000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001501011001c70000800d020000390000000103000039000015e204000041000005930000013d000014f40030009c000014f403008041000000c0013002100000004003500210000000000131019f00001519011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000018e80000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000018e40000c13d000000000006004b000018f50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001aeb0000613d0000001f01400039000000600110018f0000000d01100029000b00000001001d000000400010043f000000200030008c000011920000813d0000004e0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019080000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019140000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019200000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000192c0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019380000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019440000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019500000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000195c0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019680000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019740000c13d000021bd0000013d0000000e03000029000000080130021000001510011001970000000a04000039000000000204041a000015b402200197000000000112019f000000000014041b000000000003004b000007510000c13d000015b501000041000000000010043f0000159b01000041000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000198e0000c13d000021bd0000013d000000000004004b0000000002000019000019970000613d00000000020104330000000301400210000015f50110027f000015f501100167000000000112016f0000000102400210000000000121019f00001ce80000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019a50000c13d000021bd0000013d000014f40050009c000014f40300004100000000030540190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000150e011001c7000e00000005001d53ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0b0000290000000e05700029000019c50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019c10000c13d000000000006004b000019d20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b050000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000e00000002001d000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d0000000e01000029000000400010043f000000200030008c0000004e0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000012660000613d0000000a01000039000000000201041a00001589010000410000000e04000029000000000014043500000004014000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00001f190000c13d000000200400003900001f430000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a040000c13d000021bd0000013d0000000005000414000000040020008c00001b420000c13d0000000c02400029000d00000002001d000000400020043f0000000c020000290000000002020433000014f70020009c0000004e0000213d0000000b04000039000000000404041a0000000d0700002900000044057000390000159e06000041000000000065043500000024057000390000000e0600002900000000006504350000158c050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001a310000613d0000000d010000290000004001100210000014f40040009c000014f404008041000000c003400210000000000131019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f4033001970003000000010355000000010020019000001e100000613d000015f3053001980000001f0630018f0000000d0450002900001a3b0000613d000000000701034f0000000d08000029000000007907043c0000000008980436000000000048004b00001a370000c13d000000000006004b00001a480000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000015f3041001970000000d01400029000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000d040000290000000004040433000014fe0040009c0000004e0000213d0000000d063000290000000d034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000043030434000014fe0030009c00001cee0000213d0000001f05300039000015f3055001970000003f05500039000015f3055001970000000005150019000014fe0050009c00001cee0000213d000000400050043f00000000053104360000000007430019000000000067004b0000004e0000213d000015f3063001970000001f0230018f000000000054004b000024010000813d000000000006004b00001a8a0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001a840000c13d000000000002004b000024170000613d00000000070500190000240d0000013d000014f40010009c000014f401008041000000c0011002100000004003500210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001aa40000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001aa00000c13d000000000006004b00001ab10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b850000613d0000001f01400039000000600110018f0000000c01100029000000400010043f000000200030008c000010300000813d0000004e0000013d000014f40020009c000014f402008041000000c001200210000000000003004b00001b910000c13d000000000200041100001b950000013d0000000d03000029000014f803300197000027110030008c00001c0f0000413d0000151803000041000000000031043500000084032001bf00000020040000390000000000430435000000e4032000390000151a040000410000000000430435000000c4032000390000151b040000410000000000430435000000a4022000390000002a03000039000000000032043500000040011002100000151c011001c7000053cc00010430000000000004004b00001af70000c13d000015f40230019700000001022001bf0000000a03000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001501011001c70000800d020000390000000103000039000015e104000041000005930000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001af20000c13d000021bd0000013d0000151803000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000015e3040000410000000000430435000000a40220003900000014030000390000000000320435000000400110021000001519011001c7000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b0c0000c13d000021bd0000013d000014f40050009c000014f405008041000000c0015002100000000c03000029000c00000003001d0000004003300210000000000113019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001b290000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001b250000c13d000000000006004b00001b360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001d260000613d0000001f02400039000000600220018f0000000c02200029000d00000002001d000000400020043f000000200030008c000009b70000813d0000004e0000013d000014f40050009c000014f405008041000000c0015002100000000c03000029000c00000003001d0000004003300210000000000113019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001b5a0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001b560000c13d000000000006004b00001b670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001d320000613d0000001f02400039000000600220018f0000000c02200029000d00000002001d000000400020043f000000200030008c00001a0f0000813d0000004e0000013d0000000e0000006b00001d3e0000c13d0000159a01000041000000000010043f0000159b01000041000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b800000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b8c0000c13d000021bd0000013d00001514011001c700008009020000390000000004000411000000000500001953ca53c00000040f00030000000103550000006003100270000114f40030019d000014f40430019800001bc00000613d000000400500043d0000001f03400039000015da033001970000003f03300039000015db063001970000000003560019000000000063004b00000000060000390000000106004039000014fe0030009c00001cee0000213d000000010060019000001cee0000c13d000000400030043f0000000006450436000015f3054001980000001f0440018f000000000356001900001bb30000613d000000000701034f000000007807043c0000000006860436000000000036004b00001baf0000c13d000000000004004b00001bc00000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000001bc70000613d00000001010000390000000902000039000000000012041b0000000001000019000053cb0001042e000000400100043d0000004402100039000015dc03000041000000000032043500000024021000390000000f0300003900000d9c0000013d0000000e0000006b00001d8f0000c13d00001518020000410000000a04000029000000000024043500000084021001bf00000020030000390000000000320435000000c402100039000015d7030000410000000000320435000000a4011000390000001b020000390000000000210435000000400140021000001519011001c7000053cc00010430000014f40010009c000014f401008041000000c0011002100000000a030000290000004003300210000000000131019f0000159b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001bf60000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001bf20000c13d000000000006004b00001c030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001dbf0000613d0000001f01400039000000600110018f0000000a01100029000b00000001001d000000400010043f000000200030008c000018810000813d0000004e0000013d0000000e0000006b00001dcb0000c13d0000151803000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900001517040000410000000000430435000000a402200039000000190300003900001b010000013d0000000e020000290000001f02200039000015f302200197000b00000002001d0000003f02200039000015f3022001970000000a02200029000014fe0020009c00001cee0000213d000000400020043f0000000e020000290000000a0500002900000000002504350000000c02000029000000000020007c0000004e0000213d0000000e02000029000015f3042001980009001f00200193000000a001100039000800000004001d000c00000001001d00000000014100190000000d020000290000002002200039000700000002001d000000020220036700001c3e0000613d000000000402034f0000000c05000029000000004604043c0000000005650436000000000015004b00001c3a0000c13d000000090000006b00001c4c0000613d000000080220036000000009040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000c020000290000000e0120002900000000000104350000000a01000039000000000201041a000000400400043d00001589010000410000000000140435000d00000004001d00000004014000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00001ea10000c13d000000200400003900001ecb0000013d0000000d03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c753ca53c50000040f0000006003100270000114f40030019d000014f4033001970003000000010355000000010020019000001de50000613d000000200200008a00000000052301700000001f0630018f0000000d0450002900001c7a0000613d000000000701034f0000000d08000029000000007907043c0000000008980436000000000048004b00001c760000c13d000000000006004b00001c870000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000d01400029000000000041004b00000000040000390000000104004039000014fe0010009c00001cee0000213d000000010040019000001cee0000c13d000000400010043f0000158e0030009c0000004e0000213d000000200030008c0000004e0000413d0000000d040000290000000004040433000014fe0040009c0000004e0000213d0000000d063000290000000d034000290000001f04300039000000000064004b00000000050000190000158f050080410000158f044001970000158f07600197000000000874013f000000000074004b00000000040000190000158f040040410000158f0080009c000000000405c019000000000004004b0000004e0000c13d0000000054030434000014fe0040009c00001cee0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000014fe0030009c00001cee0000213d000000400030043f00000000034104360000000007540019000000000067004b0000004e0000213d000000000724016f0000001f0640018f000000000035004b000021d00000813d000000000007004b00001cc90000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001cc30000c13d000000000006004b000021e60000613d0000000008030019000021dc0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001cd30000c13d000000020020006c00001ce50000813d00000002020000290000000302200210000000f80220018f000015f50220027f000015f50220016700000005033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf000000000010041b00000003010000290000000001010433000500000001001d000014fe0010009c00001cf40000a13d000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000000101000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000007090000c13d000000200010008c00001d120000413d0000000102000039000000000020043f00000005030000290000001f023000390000000502200270000015020220009a000000200030008c00001503020040410000001f011000390000000501100270000015020110009a000000000012004b00001d120000813d000000000002041b0000000102200039000000000012004b00001d0e0000413d00000005010000290000001f0010008c00001d820000a13d0000000101000039000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000200200008a0000000502200180000000000101043b00001e4d0000c13d000000200300003900001e5a0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001d2d0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001d390000c13d000021bd0000013d0000000e0010006c00001e010000c13d0000000a01000039000000000201041a00001589010000410000000b030000290000000001130436000e00000001001d00000004013001bf0000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00001e1c0000c13d00000020010000390000000e02000029000000400020043f0000000b020000290000000002020433000014f70020009c0000004e0000213d0000000b03000039000000000303041a00001593040000410000000e05000029000000000045043500000004045001bf000000000034043500000044035000390000159404000041000000000043043500000024035000390000000c0400002900000000004304350000000003000414000000040020008c0000201a0000c13d0000000e01100029000000400010043f0000000e010000290000000001010433000e00000001001d000015950100004100000000001004430000000001000414000014f40010009c000014f401008041000000c00110021000001596011001c70000800b0200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000015970010009c0000219c0000413d000000400100043d000000640210003900001598030000410000000000320435000000440210003900001599030000410000000000320435000000240210003900000026030000390000128b0000013d000000050000006b000000000100001900001d870000613d0000000101000029000000000101043300000005040000290000000302400210000015f50220027f000015f502200167000000000121016f0000000102400210000000000121019f00001e680000013d000000c002100039000000400020043f0000000e020000290000000a030000290000000000230435000000a0021000390000000c01000029000b00000002001d00000000001204350000000d01000029000000000010043f0000000e01000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d0000000a020000290000000002020433000014f7022001970000000b030000290000000003030433000000a003300210000000000223019f000000000101043b000000000021041b000000400100043d0000000c020000290000000000210435000014f40010009c000014f40100804100000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001501011001c70000800d020000390000000303000039000015d6040000410000000d050000290000130c0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dc60000c13d000021bd0000013d000000c004200039000000400040043f0000000e050000290000000000510435000000a00120003900000000003104350000000d01000029000000a001100210000000000151019f0000000d02000039000000000012041b000000400100043d0000000000310435000014f40010009c000014f40100804100000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001501011001c70000800d02000039000000020300003900001512040000410000074e0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001dec0000c13d000021bd0000013d000a000b0000002d0000000a030000290000004401300039000015ae02000041000000000021043500000024013000390000001002000039000000000021043500001518010000410000000000130435000000040130003900000020020000390000000000210435000000400130021000001519011001c7000053cc0001043000000000010000190000000b020000290000075d0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e0b0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e170000c13d000021bd0000013d000014f40010009c000014f401008041000000c0011002100000000b03000029000b00000003001d0000004003300210000000000113019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001e340000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001e300000c13d000000000006004b00001e410000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001fea0000613d0000001f01400039000000600110018f0000000b02100029000e00000002001d000000400020043f000000200030008c00001d510000813d0000004e0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001e530000c13d000000050020006c00001e650000813d00000005020000290000000302200210000000f80220018f000015f50220027f000015f50220016700000003033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000102000039000000000012041b0000000c010000290000000001010433000500000001001d000014fe0010009c00001cee0000213d0000000601000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000007090000c13d000000200010008c00001e8d0000413d0000000602000039000000000020043f00000005030000290000001f023000390000000502200270000015040220009a000000200030008c00001505020040410000001f011000390000000501100270000015040110009a000000000012004b00001e8d0000813d000000000002041b0000000102200039000000000012004b00001e890000413d00000005010000290000001f0010008c00001fd00000a13d0000000601000039000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000200200008a0000000502200180000000000101043b0000209e0000c13d0000002003000039000020ab0000013d0000000d03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0570002900001eba0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b00001eb60000c13d000000000006004b00001ec70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ff60000613d0000001f01400039000000600210018f0000000d01200029000000000021004b00000000020000390000000102004039000014fe0010009c00001cee0000213d000000010020019000001cee0000c13d000000400010043f000000200030008c0000004e0000413d0000000d010000290000000001010433000d00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000600000001001d0000150b0100004100000000001004430000000d0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000158d020000410000000000210435000015c5010000410000000001150436000500000001001d000000040150003900000006020000290000000000210435000000240150003900000000000104350000000a01000029000000000101043300000084025000390000000000120435000015f3041001970000001f0310018f000a00000005001d000000a4025000390000000c0020006b0000228a0000813d000000000004004b00001f150000613d0000000c063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001f0f0000c13d000000000003004b000022a10000613d0000000005020019000022960000013d0000000e03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0570002900001f320000613d000000000801034f0000000e09000029000000008a08043c0000000009a90436000000000059004b00001f2e0000c13d000000000006004b00001f3f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020020000613d0000001f01400039000000600110018f0000000e01100029000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d0000000e010000290000000001010433000e00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000d00000001001d0000150b0100004100000000001004430000000e0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000015b6020000410000000000210435000015c501000041000000000015043500000004015000390000000d020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d0000000000120435000015f3041001970000001f0310018f000d00000005001d000000a402500039000000a10020008c000022f60000413d000000000004004b00001f850000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001f7f0000c13d000000000003004b0000230c0000613d000000a0040000390000000005020019000023020000013d0000000e03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000150e011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0570002900001fa30000613d000000000801034f0000000e09000029000000008a08043c0000000009a90436000000000059004b00001f9f0000c13d000000000006004b00001fb00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000200e0000613d0000001f01400039000000600110018f0000000e02100029000000000012004b00000000010000390000000101004039000d00000002001d000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d0000000d01000029000000400010043f000000200030008c0000004e0000413d0000000e010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000021a40000c13d000015af01000041000000000010043f0000000b01000029000011100000013d000000050000006b000000000100001900001fd50000613d0000000901000029000000000101043300000005040000290000000302400210000015f50220027f000015f502200167000000000121016f0000000102400210000000000121019f000020b90000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001fe50000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ff10000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ffd0000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020090000c13d000021bd0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020150000c13d000021bd0000013d000014f40030009c000014f403008041000000c0013002100000000e03000029000e00000003001d0000004003300210000000000113019f00001519011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e05700029000020320000613d000000000801034f0000000e09000029000000008a08043c0000000009a90436000000000059004b0000202e0000c13d000000000006004b0000203f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020f20000613d0000001f01400039000000600110018f0000000e01100029000000400010043f000000200030008c00001d670000813d0000004e0000013d0000000007650019000000000006004b000020710000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b0000204f0000c13d000020710000013d0000000007650019000000000006004b000020710000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000020590000c13d000020710000013d0000000007650019000000000006004b000020710000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000020630000c13d000020710000013d0000000007650019000000000006004b000020710000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b0000206d0000c13d000000000002004b0000207e0000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000e00000003001d000000000223043600000b930000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000208c0000c13d000021bd0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020990000c13d000021bd0000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000c0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000020a40000c13d000000050020006c000020b60000813d00000005020000290000000302200210000000f80220018f000015f50220027f000015f5022001670000000c033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000602000039000000000012041b0000000a010000290000000001010433000c00000001001d000014fe0010009c00001cee0000213d0000000701000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000007090000c13d000000200010008c000020de0000413d0000000702000039000000000020043f0000000c030000290000001f023000390000000502200270000015060220009a000000200030008c00001507020040410000001f011000390000000501100270000015060110009a000000000012004b000020de0000813d000000000002041b0000000102200039000000000012004b000020da0000413d0000000c010000290000001f0010008c0000210b0000a13d0000000701000039000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000200200008a0000000c02200180000000000101043b000021f90000c13d0000002003000039000022060000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020f90000c13d000021bd0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021060000c13d000021bd0000013d0000000c0000006b0000000001000019000021100000613d000000060100002900000000010104330000000c040000290000000302400210000015f50220027f000015f502200167000000000121016f0000000102400210000000000121019f000022140000013d0000000a03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000021310000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b0000212d0000c13d000000000006004b0000213e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021b20000613d0000001f01400039000000600110018f0000000a01100029000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d0000000a010000290000000001010433000c00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d0000150b0100004100000000001004430000000c0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d000000640130003900000000020004110000000000210435000000440130003900001591020000410000000000210435000015cf0100004100000000001304350000000401300039000900000001001d0000000b020000290000000000210435000a00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c000021860000613d0000000a02000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000c0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000025c50000613d0000000a01000029000014fe0010009c00001cee0000213d0000000a03000029000000400030043f0000000a01000039000000000201041a000015890100004100000000001304350000158a010000410000000903000029000000000013043500000000010004140000000802200270000014f702200197000000040020008c000025d20000c13d0000000103000031000000200030008c00000020040000390000000004034019000025fc0000013d0000000e02000029000014f4022001970000000001210049000014f40010009c000004f30000213d000000400200043d000b00000002001d00001e020000013d0000000a01000039000000000201041a000000ff00200190000025b40000c13d000015ad010000410000000d04000029000000000014043500000000010004140000000802200270000014f702200197000000040020008c000023850000c13d0000002004000039000023af0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021b90000c13d000000000005004b000021ca0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000000008730019000000000007004b000021d90000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000021d50000c13d000000000006004b000021e60000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b000021f20000c13d000000400100043d000014fd0010009c00001cee0000213d0000002002100039000000400020043f0000000000010435000024190000013d0000000e04000029000015a00040009c0000232d0000413d00000040060000390000000e04000029000015a00440012a000023360000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000a0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000021ff0000c13d0000000c0020006c000022110000813d0000000c020000290000000302200210000000f80220018f000015f50220027f000015f5022001670000000a033000290000000003030433000000000223016f000000000021041b0000000c01000029000000010110021000000001011001bf0000000702000039000000000012041b000000400100043d0000002002100039000015080300004100000000003204350000000000010435000014f40010009c000014f40100804100000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001509011001c70000800d0200003900000001030000390000150a0400004153ca53c00000040f00000001002001900000004e0000613d0000150b010000410000000000100443000015080100004100000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b000022590000c13d00000009010000390000000102000039000000000021041b0000000b03000029000014f700300198000019830000613d0000000d01000029000014f8021001970000000a04000039000000000104041a0000150f0110019700000008033002100000151003300197000000000113019f00000001011001bf000000000014041b00001511010000410000000b03000039000000000013041b000000400100043d000027110020008c000025340000413d00000064021000390000151a03000041000000000032043500000044021000390000151b03000041000000000032043500000024021000390000002a030000390000128b0000013d0000150b010000410000000000100443000015080100004100000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000002401300039000002d10200003900000000002104350000150d010000410000000000130435000000040130003900000000020004100000000000210435000014f40030009c000c00000003001d000014f401000041000000000103401900000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f0000150e011001c7000015080200004153ca53c00000040f0000006003100270000114f40030019d000300000001035500000001002001900000223a0000613d0000000c01000029000014fe0010009c00001cee0000213d0000000c01000029000000400010043f0000223a0000013d0000000005420019000000000004004b000022930000613d0000000c06000029000000000702001900000000680604340000000007870436000000000057004b0000228f0000c13d000000000003004b000022a10000613d000c000c0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000c0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000d03000029000000040030008c000022bd0000613d0000001f01100039000015f301100197000000a401100039000014f40010009c000014f40100804100000060011002100000000a03000029000014f40030009c000014f4030080410000004003300210000000000131019f000014f40020009c000014f402008041000000c002200210000000000112019f0000000d0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000024730000613d0000000a01000029000014fe0010009c00001cee0000213d0000000a02000029000000400020043f0000000e0100002900000005030000290000000000130435000000200100003900000000001204350000004001200039000000080210002900000007030000290000000203300367000000080000006b000022d30000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000022cf0000c13d000000090000006b000022e10000613d000000080330036000000009040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000e0110002900000000000104350000000b020000290000006001200210000015c60110009a000015c70020009c000015c8010080410000000a02000029000014f40020009c000014f4020080410000004002200210000000000121019f0000000002000414000014f40020009c000014f402008041000000c00220021000000000012100190000800d020000390000000103000039000015c904000041000005930000013d0000000005420019000000000004004b000022ff0000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000022fb0000c13d000000000003004b0000230c0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000e03000029000000040030008c000023280000613d0000001f01100039000015f301100197000000a401100039000014f40010009c000014f40100804100000060011002100000000d03000029000014f40030009c000014f4030080410000004003300210000000000131019f000014f40020009c000014f402008041000000c002200210000000000121019f0000000e0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000024800000613d0000000d01000029000000000200001953ca29c60000040f0000000001000019000053cb0001042e0000000e04000029000015a20040009c000015a10440212a00000000060000390000002006002039000015a30040009c00000010066081bf000015a404408197000015a30440812a000015a50040009c0000000806608039000014fe04408197000015a50440812a000027100040008c0000000406608039000014f404408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000014fe0040009c00001cee0000213d000000010080019000001cee0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f0000235f0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b0000235b0000c13d000000000007004b000000000665001900000021066000390000000e09000029000000090090008c0000000a7990011a0000000307700210000000010660008a0000000008060433000015a608800197000015a70770021f000015a807700197000000000787019f0000000000760435000023630000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b0000248d0000813d000000000009004b000023810000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000237b0000c13d000000000008004b000024a30000613d000000000a070019000024990000013d0000000d03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000159b011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d057000290000239e0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b0000239a0000c13d000000000006004b000023ab0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024ba0000613d0000001f01400039000000600110018f0000000d01100029000800000001001d000014fe0010009c00001cee0000213d0000000801000029000000400010043f000000200030008c0000004e0000413d0000000d010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000004e0000c13d000000000001004b000025b30000c13d000000800100043d000014fe0010009c00001cee0000213d00000005021002100000003f03200039000015a9033001970000000803300029000014fe0030009c00001cee0000213d000000400030043f00000008030000290000000001130436000600000001001d0000001f0120018f000000000002004b000023da0000613d0000000604000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b000023d60000c13d000000000001004b000000800200043d000000000002004b000026510000c13d000000400100043d000e00000001001d0000000802000029000018b90000013d0000000008730019000000000007004b000023eb0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000023e70000c13d000000000006004b000023f80000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000e04000029000015a00040009c0000241b0000413d00000040060000390000000e04000029000015a00440012a000024240000013d0000000007650019000000000006004b0000240a0000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000024060000c13d000000000002004b000024170000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d000025320000013d0000000e04000029000015a20040009c000015a10440212a00000000060000390000002006002039000015a30040009c00000010066081bf000015a404408197000015a30440812a000015a50040009c0000000806608039000014fe04408197000015a50440812a000027100040008c0000000406608039000014f404408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000014fe0040009c00001cee0000213d000000010080019000001cee0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f0000244d0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000024490000c13d000000000007004b000000000665001900000021066000390000000e09000029000000090090008c0000000a7990011a0000000307700210000000010660008a0000000008060433000015a608800197000015a70770021f000015a807700197000000000787019f0000000000760435000024510000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b000024de0000813d000000000009004b0000246f0000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000024690000c13d000000000008004b000024f40000613d000000000a070019000024ea0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000247b0000c13d000021bd0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024880000c13d000021bd0000013d000000000a970019000000000009004b000024960000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000024920000c13d000000000008004b000024a30000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000024c60000813d000000000007004b000024b60000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000024b00000c13d000000000006004b000024dc0000613d0000000008030019000024d20000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024c10000c13d000021bd0000013d0000000008730019000000000007004b000024cf0000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000024cb0000c13d000000000006004b000024dc0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003530019000025220000013d000000000a970019000000000009004b000024e70000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000024e30000c13d000000000008004b000024f40000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b0000250b0000813d000000000007004b000025070000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000025010000c13d000000000006004b000025210000613d0000000008030019000025170000013d0000000008730019000000000007004b000025140000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000025100000c13d000000000006004b000025210000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b00000000020000390000000102004039000014fe0040009c00001cee0000213d000000010020019000001cee0000c13d0000000003040019000000400040043f0000002002000039000020820000013d0000000e03000029000014f7053001980000253d0000c13d0000004402100039000015170300004100000000003204350000002402100039000000190300003900000d9c0000013d000014f90010009c00001cee0000213d0000004003100039000000400030043f0000002003100039000000000023043500000000005104350000000d01000029000000a001100210000000000151019f0000000d03000039000000000013041b000000400100043d0000000000210435000014f40010009c000014f40100804100000040011002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001501011001c70000800d020000390000000203000039000015120400004153ca53c00000040f00000001002001900000004e0000613d0000000f01000039000000000201041a00001513032001970000000006000411000000000363019f000000000031041b0000000001000414000014f705200197000014f40010009c000014f401008041000000c00110021000001514011001c70000800d020000390000000303000039000015150400004153ca53c00000040f00000001002001900000004e0000613d00000012010000390000000802000029000000000021041b00000007010000290000000001010433000e00000001001d000014fe0010009c00001cee0000213d0000001301000039000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000007090000c13d0000000d01000029000000200010008c0000259f0000413d0000001301000039000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d0000000e030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000d010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000259f0000813d000000000002041b0000000102200039000000000012004b0000259b0000413d0000000e010000290000001f0010008c000026870000a13d0000001301000039000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d000000200200008a0000000e02200180000000000101043b000026e90000c13d0000002003000039000026f50000013d000d00080000002d0000000d030000290000004401300039000015ae02000041000000000021043500000024013000390000001002000039000000000021043500001518010000410000000000130435000000040130003900000020020000390000000000210435000014f40030009c000014f403008041000000400130021000001519011001c7000053cc00010430000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025cd0000c13d000021bd0000013d0000000a03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000025eb0000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000025e70000c13d000000000006004b000025f80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000026450000613d0000001f01400039000000600110018f0000000a01100029000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d0000000a010000290000000001010433000c00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d0000150b0100004100000000001004430000000c0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000159e020000410000000000210435000015c50100004100000000001504350000000401500039000900000001001d0000000b020000290000000000210435000000240150003900000000000104350000000e01000029000000000101043300000084025000390000000000120435000015f3041001970000001f0310018f000a00000005001d000000a4025000390000000d0020006b000026930000813d000000000004004b000026410000613d0000000d063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000263b0000c13d000000000003004b000026aa0000613d00000000050200190000269f0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000264c0000c13d000021bd0000013d0000000c010000290000000001010433000d00000000001d000026590000013d0000000d03000029000d00010030003d0000000d0020006b000023de0000813d0000000d03000029000000000031004b000026810000a13d00000005033002100000000704300029000b00000004001d0000000004040433000000000004004b000026550000613d000900060030002d000a00a00030003d00000000040000190000000d03000029000e00000004001d000000800100043d000000000031004b000026810000a13d0000000a010000290000000001010433000014f70110019753ca3b5a0000040f0000000d0300002900000008020000290000000002020433000000000032004b000026810000a13d000000090200002900000000001204350000000c010000290000000001010433000000000031004b000026810000a13d0000000e0400002900000001044000390000000b020000290000000002020433000000000024004b000026660000413d000000800200043d000026550000013d000015d301000041000000000010043f0000003201000039000000040010043f0000159201000041000053cc000104300000000e0000006b00000000010000190000268c0000613d000000040100002900000000010104330000000e040000290000000302400210000015f50220027f000015f502200167000000000121016f0000000102400210000027030000013d0000000005420019000000000004004b0000269c0000613d0000000d06000029000000000702001900000000680604340000000007870436000000000057004b000026980000c13d000000000003004b000026aa0000613d000d000d0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000d0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000c03000029000000040030008c000026c60000613d0000001f01100039000015f301100197000000a401100039000014f40010009c000014f40100804100000060011002100000000a03000029000014f40030009c000014f4030080410000004003300210000000000131019f000014f40020009c000014f402008041000000c002200210000000000121019f0000000c0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000026dc0000613d0000000a01000029000014fe0010009c00001cee0000213d0000000a03000029000000400030043f0000000a01000039000000000201041a000015890100004100000000001304350000158a010000410000000903000029000000000013043500000000010004140000000802200270000014f702200197000000040020008c000027100000c13d0000000103000031000000200030008c000000200400003900000000040340190000273a0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026e40000c13d000021bd0000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000026ee0000c13d0000000e0020006c000027000000813d0000000e020000290000000302200210000000f80220018f000015f50220027f000015f50220016700000007033000290000000003030433000000000223016f000000000021041b0000000e0100002900000001011002100000000102000039000000000121019f0000001302000039000000000012041b0000000801000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000151601000041000053cb0001042e0000000a03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000027290000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000027250000c13d000000000006004b000027360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000279c0000613d0000001f01400039000000600110018f0000000a01100029000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d0000000a010000290000000001010433000e00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000d00000001001d0000150b0100004100000000001004430000000e0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d0000006401300039000015110200004100000000002104350000004401300039000015d0020000410000000000210435000015d10100004100000000001304350000000401300039000b00000001001d0000000d020000290000000000210435000c00000003001d0000002401300039000000000001043500000000010004140000000e02000029000000040020008c0000277e0000613d0000000c02000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000e0200002953ca53c00000040f0000006003100270000114f40030019d00030000000103550000000100200190000027a80000613d0000000c01000029000014fe0010009c00001cee0000213d0000000c04000029000000400040043f0000000c02000039000000000102041a000015f40110019700000001011001bf000000000012041b0000001201000039000000000101041a000e00000001001d0000000a01000039000000000201041a000015890100004100000000001404350000158a010000410000000b03000029000000000013043500000000010004140000000802200270000014f702200197000000040020008c000027b50000c13d0000000103000031000000200030008c00000020040000390000000004034019000027df0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027a30000c13d000021bd0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027b00000c13d000021bd0000013d0000000c03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c05700029000027ce0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b000027ca0000c13d000000000006004b000027db0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000028430000613d0000001f01400039000000600110018f0000000c01100029000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d0000000c010000290000000001010433000d00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d0000150b0100004100000000001004430000000d0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400300043d00000064013000390000000e0200002900000000002104350000004401300039000015d2020000410000000000210435000015d1010000410000000001130436000c00000001001d00000004013000390000000b020000290000000000210435000e00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c000028230000613d0000000e02000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000d0200002953ca53c00000040f0000006003100270000114f40030019d000300000001035500000001002001900000284f0000613d0000000e01000029000014fe0010009c00001cee0000213d0000000e01000029000000400010043f0000001301000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000d00000004001d0000001f0040008c00000000040000390000000104002039000b00000005001d000000000445013f0000000100400190000007090000c13d0000000e040000290000000d050000290000000000540435000000000003004b0000285c0000c13d000001000100008a0000000b0110017f0000000c030000290000000000130435000000000002004b0000000001030019000000200110c039000028770000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000284a0000c13d000021bd0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028570000c13d000021bd0000013d000000000010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001501011001c7000080100200003953ca53c50000040f00000001002001900000004e0000613d0000000b02000029000000020020008c0000286b0000813d0000002001000039000028760000013d000000000101043b0000000002000019000000000302001900000020022000390000000e04200029000000000501041a000000000054043500000001011000390000000d0020006c0000286d0000413d00000040013000390000000e011000290000000e0110006a0000001f01100039000015f3011001970000000e02100029000000000012004b00000000010000390000000101004039000d00000002001d000014fe0020009c00001cee0000213d000000010010019000001cee0000c13d0000000d03000029000000400030043f0000000a01000039000000000201041a0000158901000041000000000013043500000004013000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000028960000c13d0000000103000031000000200030008c00000020040000390000000004034019000028c00000013d0000000d03000029000014f40030009c000014f4030080410000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f0000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000028af0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000028ab0000c13d000000000006004b000028bc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029090000613d0000001f01400039000000600110018f0000000d01100029000014fe0010009c00001cee0000213d000000400010043f000000200030008c0000004e0000413d0000000d010000290000000001010433000d00000001001d000014f70010009c0000004e0000213d0000000b01000039000000000101041a000b00000001001d0000150b0100004100000000001004430000000d0100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000029080000613d000000000101043b000000000001004b0000004e0000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000159f020000410000000000210435000015c501000041000000000015043500000004015000390000000b0200002900000000002104350000002401500039000000000001043500000084025000390000000e0100002900000000010104330000000000120435000015f3041001970000001f0310018f000e00000005001d000000a4025000390000000c0020006b000029150000813d000000000004004b000029040000613d0000000c063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000028fe0000c13d000000000003004b0000292c0000613d0000000005020019000029210000013d000000000001042f0000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029100000c13d000021bd0000013d0000000005420019000000000004004b0000291e0000613d0000000c06000029000000000702001900000000680604340000000007870436000000000057004b0000291a0000c13d000000000003004b0000292c0000613d000c000c0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000c0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000d03000029000000040030008c0000106b0000613d0000001f01100039000015f301100197000000a401100039000014f40010009c000014f40100804100000060011002100000000e03000029000014f40030009c000014f4030080410000004003300210000000000131019f000014f40020009c000014f402008041000000c002200210000000000112019f0000000d0200002953ca53c00000040f0000006003100270000114f40030019d000300000001035500000001002001900000106b0000c13d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000021bd0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029500000c13d000021bd0000013d00000000430104340000000001320436000015f3063001970000001f0530018f000000000014004b0000296b0000813d000000000006004b000029670000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000029610000c13d000000000005004b000029810000613d0000000007010019000029770000013d0000000007610019000000000006004b000029740000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000029700000c13d000000000005004b000029810000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f03300039000015f3023001970000000001210019000000000001042d0000158e0010009c000029970000213d000000630010008c000029970000a13d00000002030003670000000401300370000000000101043b000014f70010009c000029970000213d0000002402300370000000000202043b000014f70020009c000029970000213d0000004403300370000000000303043b000000000001042d0000000001000019000053cc0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000029a70000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000029a10000413d000000000001042d00030000000000020000000001000416000000000001004b000029c40000c13d00000000010000310000158e0010009c000029c40000213d000000030010008c000029c40000a13d000000400100043d000100000001001d0000000001000412000300000001001d000200000000003d000080050100003900000044030000390000000004000415000000030440008a0000000504400210000015f60200004153ca53a20000040f00000001020000290000000000120435000014f40020009c000014f402008041000000400120021000001587011001c7000053cb0001042e0000000001000019000053cc000104300000001f02200039000015f3022001970000000001120019000000000021004b00000000020000390000000102004039000014fe0010009c000029d20000213d0000000100200190000029d20000c13d000000400010043f000000000001042d000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc00010430000015f70020009c00002a080000813d00000000040100190000001f01200039000015f3011001970000003f01100039000015f305100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000014fe0050009c00002a080000213d000000010070019000002a080000c13d000000400050043f00000000052104360000000007420019000000000037004b00002a0e0000213d000015f3062001980000001f0720018f00000002044003670000000003650019000029f80000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000029f40000c13d000000000007004b00002a050000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000000001000019000053cc0001043000020000000000020000000a02000039000000000202041a000000400c00043d000015890300004100000000003c04350000000404c000390000158a03000041000000000034043500000000040004140000000802200270000014f702200197000000040020008c000200000001001d00002a240000c13d0000000103000031000000200030008c0000002004000039000000000403401900002a510000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40040009c000014f404008041000000c001400210000000000131019f00001592011001c700010000000c001d53ca53c50000040f000000010c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002a3f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002a3b0000c13d000000000006004b00002a4c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ad10000613d00000002010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000014fe00b0009c00002abb0000213d000000010020019000002abb0000c13d0000004000b0043f0000001f0030008c00002ab90000a13d00000000020c0433000014f70020009c00002ab90000213d0000000b04000039000000000404041a0000004405b00039000015910600004100000000006504350000002405b000390000000000150435000015900500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002a9e0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002a8a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002a860000c13d000000000006004b00002a970000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002add0000613d0000001f01400039000000600710018f00000002010000290000000004b70019000014fe0040009c00002abb0000213d000000400040043f000000200030008c00002ab90000413d00000000020b0433000014f70020009c00002ab90000213d000000000002004b00002ac10000613d000000000010043f0000000401000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f000000010020019000002ab90000613d000000000101043b000000000101041a000014f701100197000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc0001043000000044024000390000159c03000041000000000032043500000024024000390000001803000039000000000032043500001518020000410000000000240435000000040240003900000020030000390000000000320435000014f40040009c000014f404008041000000400140021000001519011001c7000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002ae80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ad80000c13d00002ae80000013d0000001f0530018f000014f606300198000000400200043d000000000462001900002ae80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ae40000c13d000000000005004b00002af50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000000801000039000000000201041a0000000801200270000014f70110019800002b010000613d000000000001042d000000ff0020019000000000010000190000150801006041000000000001042d00010000000000020000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00002b180000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b440000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700010000000c001d53ca53c50000040f000000010c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002b330000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002b2f0000c13d000000000006004b00002b400000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ba00000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c00002b9a0000213d000000010020019000002b9a0000c13d0000004000b0043f0000001f0030008c00002b980000a13d00000000020c0433000014f70020009c00002b980000213d0000000b04000039000000000404041a0000004405b00039000015f8060000410000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002b900000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002b7d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002b790000c13d000000000006004b00002b8a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002bbe0000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00002b9a0000213d000000400010043f000000200030008c00002b980000413d00000000010b0433000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002bab0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ba70000c13d000000000005004b00002bb80000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002bc90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002bc50000c13d000000000005004b00002bd60000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc0001043000010000000000020000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00002bef0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002c1b0000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700010000000c001d53ca53c50000040f000000010c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002c0a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002c060000c13d000000000006004b00002c170000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002c770000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c00002c710000213d000000010020019000002c710000c13d0000004000b0043f0000001f0030008c00002c6f0000a13d00000000020c0433000014f70020009c00002c6f0000213d0000000b04000039000000000404041a0000004405b00039000015f9060000410000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002c670000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002c540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002c500000c13d000000000006004b00002c610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002c950000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00002c710000213d000000400010043f000000200030008c00002c6f0000413d00000000010b0433000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002c820000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c7e0000c13d000000000005004b00002c8f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002ca00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c9c0000c13d000000000005004b00002cad0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc0001043000010000000000020000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00002cc60000c13d0000000103000031000000200030008c0000002004000039000000000403401900002cf20000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700010000000c001d53ca53c50000040f000000010c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002ce10000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002cdd0000c13d000000000006004b00002cee0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d4e0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c00002d480000213d000000010020019000002d480000c13d0000004000b0043f0000001f0030008c00002d460000a13d00000000020c0433000014f70020009c00002d460000213d0000000b04000039000000000404041a0000004405b00039000015d2060000410000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002d3e0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002d2b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002d270000c13d000000000006004b00002d380000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d6c0000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00002d480000213d000000400010043f000000200030008c00002d460000413d00000000010b0433000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002d590000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d550000c13d000000000005004b00002d660000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002d770000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d730000c13d000000000005004b00002d840000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc00010430000000000001004b00002d8d0000613d000000000001042d000000400100043d0000006402100039000015fa0300004100000000003204350000004402100039000015fb03000041000000000032043500000024021000390000002d03000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f40100804100000040011002100000151c011001c7000053cc0001043000020000000000020000000a02000039000000000202041a000000400c00043d000015890300004100000000003c04350000000404c000390000158a03000041000000000034043500000000040004140000000802200270000014f702200197000000040020008c00002db40000c13d0000000103000031000000200030008c0000002004000039000000000403401900002de20000013d000100000001001d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40040009c000014f404008041000000c001400210000000000131019f00001592011001c700020000000c001d53ca53c50000040f000000020c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002dd00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002dcc0000c13d000000000006004b00002ddd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e400000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000014fe00b0009c00002e3a0000213d000000010020019000002e3a0000c13d0000004000b0043f0000001f0030008c00002e380000a13d00000000020c0433000014f70020009c00002e380000213d0000000b04000039000000000404041a0000004405b00039000015910600004100000000006504350000002405b000390000000000150435000015900500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002e2e0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e1b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e170000c13d000000000006004b00002e280000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e5e0000613d0000001f01400039000000600710018f0000000001b70019000014fe0010009c00002e3a0000213d000000400010043f000000200030008c00002e380000413d00000000010b0433000014f70010009c00002e380000213d000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002e4b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e470000c13d000000000005004b00002e580000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002e690000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e650000c13d000000000005004b00002e760000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc0001043000010000000000020000000a01000039000000000201041a000000ff0120019000002ecd0000c13d000000400b00043d000015ad0100004100000000001b043500000000010004140000000802200270000014f702200197000000040020008c00002e8e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002eba0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000159b011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002ea90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002ea50000c13d000000000006004b00002eb60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ed60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c00002ed00000213d000000010020019000002ed00000c13d000000400010043f0000001f0030008c00002ece0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002ece0000c13d000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002ee10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002edd0000c13d000000000005004b00002eee0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc00010430000000000001004b00002ef70000613d000000000001042d000000400100043d00000044021000390000159c03000041000000000032043500000024021000390000001803000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc0001043000020000000000020000000a02000039000000000202041a000000400c00043d000015890300004100000000003c04350000000404c000390000158a03000041000000000034043500000000040004140000000802200270000014f702200197000000040020008c00002f1b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002f490000013d000100000001001d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40040009c000014f404008041000000c001400210000000000131019f00001592011001c700020000000c001d53ca53c50000040f000000020c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002f370000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002f330000c13d000000000006004b00002f440000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002fa50000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000014fe00b0009c00002f9f0000213d000000010020019000002f9f0000c13d0000004000b0043f0000001f0030008c00002f9d0000a13d00000000020c0433000014f70020009c00002f9d0000213d0000000b04000039000000000404041a0000004405b00039000015fc0600004100000000006504350000002405b000390000000000150435000015930500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002f950000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f820000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f7e0000c13d000000000006004b00002f8f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002fc30000613d0000001f01400039000000600710018f0000000001b70019000014fe0010009c00002f9f0000213d000000400010043f000000200030008c00002f9d0000413d00000000010b0433000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002fb00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fac0000c13d000000000005004b00002fbd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900002fce0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fca0000c13d000000000005004b00002fdb0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc0001043000020000000000020000000a02000039000000000202041a000000400c00043d000015890300004100000000003c04350000000404c000390000158a03000041000000000034043500000000040004140000000802200270000014f702200197000000040020008c00002ff40000c13d0000000103000031000000200030008c00000020040000390000000004034019000030220000013d000100000001001d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40040009c000014f404008041000000c001400210000000000131019f00001592011001c700020000000c001d53ca53c50000040f000000020c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000030100000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000300c0000c13d000000000006004b0000301d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000307e0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000014fe00b0009c000030780000213d0000000100200190000030780000c13d0000004000b0043f0000001f0030008c000030760000a13d00000000020c0433000014f70020009c000030760000213d0000000b04000039000000000404041a0000004405b00039000015940600004100000000006504350000002405b000390000000000150435000015930500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000306e0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000305b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030570000c13d000000000006004b000030680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000309c0000613d0000001f01400039000000600710018f0000000001b70019000014fe0010009c000030780000213d000000400010043f000000200030008c000030760000413d00000000010b0433000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000030890000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030850000c13d000000000005004b000030960000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000030a70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030a30000c13d000000000005004b000030b40000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc000104300001000000000002000100000002001d000014f701100197000000000010043f0000000501000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000030ed0000613d000000000101043b0000000102000029000014f702200197000100000002001d000000000020043f000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000030ed0000613d000000000101043b000000000101041a000000ff01100190000030dd0000613d000000000001042d0000000801000039000000000201041a000015d500200198000030eb0000613d0000000801200270000014f701100198000030e70000c13d000000ff0020019000000000010000190000150801006041000000010010006b00000000010000390000000101006039000000000001042d0000000001000019000000000001042d0000000001000019000053cc0001043000020000000000020000000a02000039000000000202041a000000400b00043d000015ab0300004100000000003b04350000000403b00039000015b0040000410000000000430435000014f7051001970000002401b00039000000000051043500000000010004140000000802200270000014f702200197000000040020008c000031050000c13d0000000103000031000000200030008c00000020040000390000000004034019000031330000013d000100000005001d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000150e011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031210000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000311d0000c13d000000000006004b0000312e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031580000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c0000314b0000213d00000001002001900000314b0000c13d000000400010043f0000001f0030008c000031490000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000031490000c13d000000000001004b000031510000613d000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc00010430000015af01000041000000000010043f000000040050043f000015b001000041000000240010043f0000150e01000041000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000031630000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000315f0000c13d000000000005004b000031700000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300006000000000002000400000002001d000300000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c0000318b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000031b70000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700020000000c001d53ca53c50000040f000000020c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031a60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031a20000c13d000000000006004b000031b30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000330c0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c000032f60000213d0000000100200190000032f60000c13d0000004000b0043f0000001f0030008c000032f40000a13d00000000020c0433000014f70020009c000032f40000213d0000000b04000039000000000404041a0000004405b00039000015910600004100000000006504350000002405b0003900000004060000290000000000650435000015900500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000032040000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031f10000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031ed0000c13d000000000006004b000031fe0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033180000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c000032f60000213d000000400010043f000000200030008c000032f40000413d00000000020b0433000014f70020009c000032f40000213d000000000002004b000032fc0000613d0000000301000029000314f70010019b000000030020006b000032150000c13d0000000101000039000000000001042d000000000020043f0000000501000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000032f40000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000032f40000613d000000000101043b000000000101041a000000ff01100190000032330000613d000000000001042d0000000003000415000000060330008a00000005033002100000000801000039000000000101041a000015d500100198000032460000613d0000000802100270000014f702200198000032400000c13d000000ff00100190000000000200001900001508020060410000000003000415000000050330008a0000000503300210000000030020006b0000000101000039000032320000613d000200000003001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000032590000c13d0000000103000031000000200030008c00000020040000390000000004034019000032850000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700010000000c001d53ca53c50000040f000000010c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000032740000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000032700000c13d000000000006004b000032810000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033360000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c000032f60000213d0000000100200190000032f60000c13d0000004000b0043f000000200030008c000032f40000413d00000000020c0433000014f70020009c000032f40000213d0000000b04000039000000000404041a0000004405b00039000015910600004100000000006504350000002405b0003900000004060000290000000000650435000015900500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000032d20000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032bf0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032bb0000c13d000000000006004b000032cc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033420000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c000032f60000213d000000400010043f000000200030008c000032f40000413d00000000020b0433000014f70020009c000032f40000213d000000000002004b000032fc0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000032f40000613d000000000101043b000000000101041a000014f701100197000000030010006c0000000001000039000000010100603900000002020000290000000502200270000000000201001f000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc0001043000000044021000390000159c03000041000000000032043500000024021000390000001803000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000033230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033130000c13d000033230000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000033230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000331f0000c13d000000000005004b000033300000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f0530018f000014f606300198000000400200043d0000000004620019000033230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000333d0000c13d000033230000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000033230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033490000c13d000033230000013d0007000000000002000700000003001d000400000002001d000500000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000033640000c13d0000000103000031000000200030008c00000020040000390000000004034019000033900000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700060000000c001d53ca53c50000040f000000060c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000337f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000337b0000c13d000000000006004b0000338c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039b50000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c0000395b0000213d00000001002001900000395b0000c13d0000004000b0043f0000001f0030008c000039590000a13d00000000020c0433000014f70020009c000039590000213d0000000b04000039000000000404041a0000004405b00039000015910600004100000000006504350000002405b0003900000007060000290000000000650435000015900500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000033dd0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700060000000b001d53ca53c50000040f000000060b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033ca0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033c60000c13d000000000006004b000033d70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039c10000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c0000395b0000213d000000400010043f000000200030008c000039590000413d00000000020b0433000600000002001d000014f70020009c000039590000213d0000000603000029000000000003004b000039620000613d0000000502000029000014f702200197000000000023004b000039720000c13d0000000402000029000514f70020019c000039810000613d0000001001000039000000000101041a000014f702100198000034290000613d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000039610000613d000000000101043b000000000001004b000039590000613d000000400400043d000000440140003900000007020000290000000000210435000000240140003900000005020000290000000000210435000015ff01000041000000000014043500000004014000390000000602000029000000000021043500000000010004140000000402000029000000040020008c000034260000613d000014f40040009c000014f40300004100000000030440190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c7000400000004001d53ca53c00000040f00000004040000290000006003100270000114f40030019d0003000000010355000000010020019000003aa30000613d000014fe0040009c0000395b0000213d000000400040043f000015950100004100000000001004430000000001000414000014f40010009c000014f401008041000000c00110021000001596011001c70000800b0200003953ca53c50000040f0000000100200190000039610000613d000000400b00043d0000000402b00039000000000101043b000015970010009c000039940000813d000400000001001d0000000a01000039000000000301041a000015890100004100000000001b04350000158a01000041000000000012043500000000010004140000000802300270000014f702200197000000040020008c0000344a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000034760000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700030000000b001d53ca53c50000040f000000030b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034650000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034610000c13d000000000006004b000034720000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039cd0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c0000395b0000213d00000001002001900000395b0000c13d000000400010043f000000200030008c000039590000413d00000000020b0433000014f70020009c000039590000213d0000000b01000039000000000101041a000200000001001d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000039610000613d000000000101043b000000000001004b0000000303000029000039590000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000015940200004100000000002104350000002401b0003900000007020000290000000000210435000015d10100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d000034c00000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f0000000404000029000000010b0000290000006003100270000114f40030019d00030000000103550000000100200190000039d90000613d000014fe00b0009c0000395b0000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c000034d30000c13d0000000103000031000000200030008c00000020040000390000000004034019000034fe0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034ed0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034e90000c13d000000000006004b000034fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039e60000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c0000395b0000213d0000004000c0043f000000200030008c000039590000413d00000000020b0433000014f70020009c000039590000213d0000000b04000039000000000404041a0000004405c00039000015b2060000410000000000650435000015bb0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000035450000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035320000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000352e0000c13d000000000006004b0000353f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039f20000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c0000395b0000213d0000004000b0043f000000200030008c000039590000413d00000000020c0433000000000002004b0000000001000039000000010100c039000000000012004b000039590000c13d0000000401b00039000000000002004b000039a60000c13d0000000a02000039000000000202041a000015890400004100000000004b04350000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c000035610000c13d00000020040000390000358d0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000b001d53ca53c50000040f000000040b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000357c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000035780000c13d000000000006004b000035890000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000039fe0000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c0000395b0000213d0000004000c0043f000000200030008c000039590000413d00000000020b0433000014f70020009c000039590000213d0000000b04000039000000000404041a0000004405c00039000015910600004100000000006504350000002405c0003900000007060000290000000000650435000015900500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000035d50000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035c20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035be0000c13d000000000006004b000035cf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a0a0000613d0000001f01400039000000600110018f0000000001c10019000014fe0010009c0000395b0000213d000000400010043f000000200030008c000039590000413d00000000020c0433000014f70020009c000039590000213d000000000002004b000039620000613d000000060020006c000039720000c13d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000039590000613d000000000101043b000000000201041a0000151302200197000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000039590000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000039590000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000039590000613d000000000101043b000000000201041a00001513022001970000000506000029000000000262019f000000000021041b0000000001000414000014f40010009c000014f401008041000000c00110021000001514011001c70000800d02000039000000040300003900001601040000410000000605000029000000070700002953ca53c00000040f0000000100200190000039590000613d0000001101000039000000000101041a000014f7021001980000366e0000613d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000039610000613d000000000101043b000000000001004b000039590000613d000000400400043d000000440140003900000007020000290000000000210435000000240140003900000005020000290000000000210435000015ff01000041000000000014043500000004014000390000000602000029000000000021043500000000010004140000000402000029000000040020008c0000366a0000613d000014f40040009c000014f40300004100000000030440190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c7000400000004001d53ca53c00000040f00000004040000290000006003100270000114f40030019d0003000000010355000000010020019000003ab00000613d000014fe0040009c0000395b0000213d000000400040043f0000366f0000013d000000400400043d0000002001000039000400000001001d000000000114043600000006020000290000000000210435000014f90040009c0000395b0000213d0000004002400039000000400020043f000014f40010009c000014f40100804100000040011002100000000002040433000014f40020009c000014f4020080410000006002200210000000000112019f0000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001514011001c7000080100200003953ca53c50000040f0000000100200190000039590000613d000000000101043b000600000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c0000369e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000036ca0000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700030000000c001d53ca53c50000040f000000030c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000036b90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036b50000c13d000000000006004b000036c60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a160000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c0000395b0000213d00000001002001900000395b0000c13d0000004000b0043f000000200030008c000039590000413d00000000020c0433000014f70020009c000039590000213d0000000b04000039000000000404041a0000004405b00039000015fc0600004100000000006504350000002405b0003900000006060000290000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000037170000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700030000000b001d53ca53c50000040f000000030b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037040000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037000000c13d000000000006004b000037110000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a220000613d0000001f01400039000000600110018f000000000ab10019000014fe00a0009c0000395b0000213d0000004000a0043f000000200030008c000039590000413d00000000010b0433000300000001001d000000000001004b0000397b0000613d0000000a01000039000000000201041a000015890100004100000000001a04350000000401a000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c0000375a0000613d000014f400a0009c000014f40300004100000000030a40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700020000000a001d53ca53c50000040f000000020a0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a0019000037490000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000037450000c13d000000000005004b000037560000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003a2e0000613d00000004010000290000001f01100039000000600110018f0000000001a10019000014fe0010009c0000395b0000213d000000400010043f000000200030008c000039590000413d00000000020a0433000014f70020009c000039590000213d0000000b01000039000000000101041a000200000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000039610000613d000000000101043b000000000001004b0000000403000029000039590000613d0000000301000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b00039000015fc0200004100000000002104350000002401b0003900000006020000290000000000210435000015d10100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00030000000b001d000037a10000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000600000004001d53ca53c00000040f0000000604000029000000030b0000290000006003100270000114f40030019d0003000000010355000000010020019000003a3a0000613d000014fe00b0009c0000395b0000213d0000000a01000039000000000201041a0000004000b0043f000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c000037b40000c13d0000000103000031000000200030008c00000020040000390000000004034019000037df0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000030b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037ce0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037ca0000c13d000000000006004b000037db0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a470000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c0000395b0000213d000000400010043f000000200030008c000039590000413d00000000020b0433000014f70020009c000039590000213d0000000b01000039000000000101041a000400000001001d0000150b010000410000000000100443000600000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000039610000613d000000000101043b000000000001004b0000000603000029000039590000613d000000400400043d000000640140003900000005020000290000000000210435000000440140003900001591020000410000000000210435000000240140003900000007020000290000000000210435000015cf0100004100000000021404360000000401400039000000040500002900000000005104350000000001000414000000040030008c000038240000613d000014f40040009c000400000002001d000014f40200004100000000020440190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000700000004001d53ca53c00000040f00000007040000290000006003100270000114f40030019d00030000000103550000000100200190000000040200002900003a530000613d000014fe0040009c0000395b0000213d000000400040043f0000002001000039000600000001001d000000000014043500000005010000290000000000120435000014f90040009c0000395b0000213d0000004001400039000000400010043f000014f40020009c000014f40200804100000040012002100000000002040433000014f40020009c000014f4020080410000006002200210000000000112019f0000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001514011001c7000080100200003953ca53c50000040f0000000100200190000039590000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000038560000c13d0000000103000031000000200030008c00000020040000390000000004034019000038820000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700050000000c001d53ca53c50000040f000000050c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000038710000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000386d0000c13d000000000006004b0000387e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a600000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c0000395b0000213d00000001002001900000395b0000c13d0000004000b0043f000000200030008c000039590000413d00000000020c0433000014f70020009c000039590000213d0000000b04000039000000000404041a0000004405b00039000015fc0600004100000000006504350000002405b0003900000007060000290000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000038cf0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700050000000b001d53ca53c50000040f000000050b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000038bc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038b80000c13d000000000006004b000038c90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a6c0000613d0000001f01400039000000600110018f000000000ab10019000014fe00a0009c0000395b0000213d0000004000a0043f000000200030008c000039590000413d00000000010b0433000500010010003e0000397b0000613d0000000a01000039000000000201041a000015890100004100000000001a04350000000401a000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c000039110000613d000014f400a0009c000014f40300004100000000030a40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000a001d53ca53c50000040f000000040a0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0540018f000600000004001d000000200640019000000000046a0019000039000000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000038fc0000c13d000000000005004b0000390d0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003a780000613d00000006010000290000001f01100039000000600110018f0000000001a10019000014fe0010009c0000395b0000213d000000400010043f000000200030008c000039590000413d00000000020a0433000014f70020009c000039590000213d0000000b01000039000000000101041a000400000001001d0000150b010000410000000000100443000600000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000039610000613d000000000101043b000000000001004b0000000603000029000039590000613d000000400400043d0000006401400039000000050200002900000000002104350000004401400039000015fc020000410000000000210435000000240140003900000007020000290000000000210435000015d10100004100000000001404350000000401400039000000040200002900000000002104350000000001000414000000040030008c000039550000613d000014f40040009c000014f40200004100000000020440190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000700000004001d53ca53c00000040f00000007040000290000006003100270000114f40030019d0003000000010355000000010020019000003a840000613d000014fe0040009c0000395b0000213d000000400040043f000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc00010430000000000001042f00000044021000390000159c03000041000000000032043500000024021000390000001803000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc000104300000006402100039000015fd0300004100000000003204350000004402100039000015fe03000041000000000032043500000024021000390000002503000039000039890000013d000015d301000041000000000010043f0000001101000039000000040010043f0000159201000041000053cc0001043000000064021000390000160203000041000000000032043500000044021000390000160303000041000000000032043500000024021000390000002403000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f40100804100000040011002100000151c011001c7000053cc00010430000015180100004100000000001b0435000000200100003900000000001204350000006401b00039000015980200004100000000002104350000004401b00039000015990200004100000000002104350000002401b0003900000026020000390000000000210435000014f400b0009c000014f40b0080410000004001b002100000151c011001c7000053cc00010430000015180200004100000000002b0435000000200200003900000000002104350000004401b00039000016000200004100000000002104350000002401b000390000001b020000390000000000210435000014f400b0009c000014f40b0080410000004001b0021000001519011001c7000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039bc0000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039c80000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039d40000c13d00003a900000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039e10000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039ed0000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039f90000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a050000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a110000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a1d0000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a290000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a350000c13d00003a900000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a420000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003abc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a4e0000c13d00003abc0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900003abc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a5b0000c13d00003abc0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a670000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a730000c13d00003a900000013d0000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a7f0000c13d00003a900000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900003a900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a8c0000c13d000000000005004b00003a9d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc00010430000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900003abc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003aab0000c13d00003abc0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900003abc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ab80000c13d000000000005004b00003ac90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc000104300001000000000002000000400b00043d0000000a01000039000000000201041a000000ff0020019000003b250000c13d000015ad0100004100000000001b043500000000010004140000000802200270000014f702200197000000040020008c00003ae10000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b0d0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000159b011001c700010000000b001d53ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003afc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003af80000c13d000000000006004b00003b090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003b3c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c00003b360000213d000000010020019000003b360000c13d000000400010043f0000001f0030008c00003b230000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b00003b230000c13d000000000002004b00003b260000c13d000000000001042d0000000001000019000053cc0001043000000000010b00190000004402100039000015ae03000041000000000032043500000024021000390000001003000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900003b470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b430000c13d000000000005004b00003b540000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc00010430000c000000000002000500000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00003b6e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b9a0000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700080000000c001d53ca53c50000040f000000080c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003b890000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003b850000c13d000000000006004b00003b960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048350000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c00004aa30000213d000000010020019000004aa30000c13d0000004000b0043f0000001f0030008c000047ee0000a13d00000000020c0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405b00039000015f8060000410000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00003be60000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700080000000b001d53ca53c50000040f000000080b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003bd30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003bcf0000c13d000000000006004b00003be00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048410000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c00004aa30000213d0000004000c0043f000000200030008c000047ee0000413d00000000010b0433000800000001001d0000000a01000039000000000201041a000015890100004100000000001c04350000000401c000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00003bfc0000c13d000000200400003900003c280000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700070000000c001d53ca53c50000040f000000070c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003c170000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003c130000c13d000000000006004b00003c240000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000484d0000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000020c0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405b00039000015f9060000410000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00003c6f0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700070000000b001d53ca53c50000040f000000070b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003c5c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003c580000c13d000000000006004b00003c690000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048590000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000010b0433000000080110006b000047f10000413d000000010010003a000047f10000413d000800000001001d000015f60100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000014f40010009c000014f401008041000000c00110021000001604011001c7000080050200003953ca53c50000040f0000000100200190000047f00000613d00000008020000290000000103200039000000400b00043d0000000402b00039000000000101043b000000000013004b000048070000213d0000000a01000039000000000301041a000015890100004100000000001b04350000158a01000041000000000012043500000000010004140000000802300270000014f702200197000000040020008c00003ca00000c13d0000000103000031000000200030008c0000002004000039000000000403401900003ccc0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700080000000b001d53ca53c50000040f000000080b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003cbb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003cb70000c13d000000000006004b00003cc80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048650000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000014fe00c0009c00004aa30000213d000000010020019000004aa30000c13d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c0003900001605060000410000000000650435000015930500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003d180000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700080000000c001d53ca53c50000040f000000080c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003d050000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003d010000c13d000000000006004b00003d120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048710000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000020c0433000800000002001d000000010020003a000047f10000413d0000000a02000039000000000202041a000015890400004100000000004b04350000000404b000390000158a05000041000000000054043500000000040004140000000802200270000014f702200197000000040020008c00003d5c0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001592011001c700070000000b001d53ca53c50000040f000000070b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003d490000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003d450000c13d000000000006004b00003d560000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000487d0000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000600000001001d0000150b010000410000000000100443000700000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000702000029000047ee0000613d00000008010000290000000103100039000000400400043d0000006401400039000800000003001d0000000000310435000000440140003900001605030000410000000000310435000015d1010000410000000005140436000000040140003900000006030000290000000000310435000000240140003900000000000104350000000001000414000000040020008c00003d9f0000613d000014f40040009c000014f40300004100000000030440190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f0000151c011001c7000700000004001d000600000005001d53ca53c00000040f000000060500002900000007040000290000006003100270000114f40030019d00030000000103550000000100200190000048890000613d000014fe0040009c00004aa30000213d000000400040043f000b00000004001d000c00200000003d000014fd0040009c00004aa30000213d000000400050043f00000000000404350000000a01000039000000000201041a000000400b00043d000015890100004100000000001b04350000000401b000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00003dba0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003de60000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700070000000b001d53ca53c50000040f000000070b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003dd50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003dd10000c13d000000000006004b00003de20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048960000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000014fe00c0009c00004aa30000213d000000010020019000004aa30000c13d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015d2060000410000000000650435000015930500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003e320000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700070000000c001d53ca53c50000040f000000070c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003e1f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003e1b0000c13d000000000006004b00003e2c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048a20000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000010c0433000000000001004b00003f510000613d000700000001001d0000000a01000039000000000201041a000015890100004100000000001b04350000000401b000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00003e4a0000c13d000000200400003900003e760000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700060000000b001d53ca53c50000040f000000060b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003e650000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003e610000c13d000000000006004b00003e720000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049a20000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c00004aa30000213d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015f8060000410000000000650435000015930500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003ebd0000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700060000000c001d53ca53c50000040f000000060c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003eaa0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003ea60000c13d000000000006004b00003eb70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049ae0000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000010c0433000600000001001d0000000a01000039000000000201041a000015890100004100000000001b04350000000401b000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00003ed30000c13d000000200400003900003eff0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000b001d53ca53c50000040f000000040b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003eee0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003eea0000c13d000000000006004b00003efb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049ba0000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c00004aa30000213d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015f9060000410000000000650435000015930500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003f460000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003f330000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003f2f0000c13d000000000006004b00003f400000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049c60000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000010c0433000000060110006b000047f10000413d000000070010006c000048310000813d0000000401b000390000000502000029000714f70020019c000048110000613d0000000a02000039000000000202041a000015890400004100000000004b04350000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00003f620000c13d000000200400003900003f8e0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700060000000b001d53ca53c50000040f000000060b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003f7d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003f790000c13d000000000006004b00003f8a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048ae0000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c00004aa30000213d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015910600004100000000006504350000002405c0003900000008060000290000000000650435000015900500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003fd60000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700060000000c001d53ca53c50000040f000000060c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003fc30000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003fbf0000c13d000000000006004b00003fd00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048ba0000613d0000001f01400039000000600110018f0000000001c10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000020c0433000014f70020009c000047ee0000213d000000000002004b000047f70000c13d0000001001000039000000000101041a000014f702100198000040180000613d0000150b010000410000000000100443000600000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b000047ee0000613d000000400400043d000000440140003900000008020000290000000000210435000000240140003900000007020000290000000000210435000015ff0100004100000000001404350000000401400039000000000001043500000000010004140000000602000029000000040020008c000040150000613d000014f40040009c000014f40300004100000000030440190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c7000600000004001d53ca53c00000040f00000006040000290000006003100270000114f40030019d00030000000103550000000100200190000049d20000613d000014fe0040009c00004aa30000213d000000400040043f000015950100004100000000001004430000000001000414000014f40010009c000014f401008041000000c00110021000001596011001c70000800b0200003953ca53c50000040f0000000100200190000047f00000613d000000400b00043d0000000402b00039000000000101043b000015970010009c0000481f0000813d000600000001001d0000000a01000039000000000301041a000015890100004100000000001b04350000158a01000041000000000012043500000000010004140000000802300270000014f702200197000000040020008c000040390000c13d0000000103000031000000200030008c00000020040000390000000004034019000040650000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000b001d53ca53c50000040f000000040b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040540000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000040500000c13d000000000006004b000040610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048c60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c00004aa30000213d000000010020019000004aa30000c13d000000400010043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000300000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000403000029000047ee0000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000015940200004100000000002104350000002401b0003900000008020000290000000000210435000015d10100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00020000000b001d000040af0000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000600000004001d53ca53c00000040f0000000604000029000000020b0000290000006003100270000114f40030019d00030000000103550000000100200190000048d20000613d000014fe00b0009c00004aa30000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c000040c20000c13d0000000103000031000000200030008c00000020040000390000000004034019000040ed0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040dc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000040d80000c13d000000000006004b000040e90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048df0000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c00004aa30000213d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015b2060000410000000000650435000015bb0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000041340000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700060000000c001d53ca53c50000040f000000060c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000041210000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000411d0000c13d000000000006004b0000412e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048eb0000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b000047ee0000c13d0000000a01000039000000000201041a000015890100004100000000001b04350000000401b000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c0000414e0000c13d00000020040000390000417a0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700060000000b001d53ca53c50000040f000000060b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000041690000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000041650000c13d000000000006004b000041760000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000048f70000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c00004aa30000213d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015910600004100000000006504350000002405c0003900000008060000290000000000650435000015900500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000041c20000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700060000000c001d53ca53c50000040f000000060c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000041af0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000041ab0000c13d000000000006004b000041bc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049030000613d0000001f01400039000000600110018f0000000001c10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000020c0433000014f70020009c000047ee0000213d000000000002004b000047f70000c13d0000000701000029000000000010043f0000000301000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000047ee0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000047ee0000613d000000000101043b000000000201041a00001513022001970000000706000029000000000262019f000000000021041b0000000001000414000014f40010009c000014f401008041000000c00110021000001514011001c70000800d02000039000000040300003900001601040000410000000005000019000000080700002953ca53c00000040f0000000100200190000047ee0000613d0000001101000039000000000101041a000014f702100198000042380000613d0000150b010000410000000000100443000600000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b000047ee0000613d000000400b00043d0000004401b00039000000080200002900000000002104350000002401b0003900000007020000290000000000210435000015ff0100004100000000001b04350000000404b00039000000000004043500000000010004140000000602000029000000040020008c000042340000613d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c700060000000b001d000400000004001d53ca53c00000040f0000000404000029000000060b0000290000006003100270000114f40030019d00030000000103550000000100200190000049df0000613d000014fe00b0009c00004aa30000213d0000004000b0043f0000423a0000013d000000400b00043d0000000404b000390000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c0000424a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000042760000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700060000000b001d53ca53c50000040f000000060b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000042650000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000042610000c13d000000000006004b000042720000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000490f0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000014fe00c0009c00004aa30000213d000000010020019000004aa30000c13d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405c00039000015f8060000410000000000650435000015930500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000042c20000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700060000000c001d53ca53c50000040f000000060c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000042af0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000042ab0000c13d000000000006004b000042bc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000491b0000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c00004aa30000213d0000004000b0043f000000200030008c000047ee0000413d00000000010c0433000000010510003a000047f10000613d0000000a01000039000000000201041a000015890100004100000000001b04350000000401b000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c000600000005001d000042da0000c13d0000002004000039000043060000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000b001d53ca53c50000040f000000040b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000042f50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000042f10000c13d000000000006004b000043020000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049270000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000300000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000403000029000047ee0000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000015f8020000410000000000210435000015d10100004100000000001b04350000000404b00039000000030100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00020000000b001d0000434a0000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000600000004001d53ca53c00000040f0000000604000029000000020b0000290000006003100270000114f40030019d00030000000103550000000100200190000049330000613d000014fe00b0009c00004aa30000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a0100004100000000001404350000000c0500002900000000010004140000000802200270000014f702200197000000040020008c000600000005001d0000435e0000c13d000000010050007c00000001040000310000000004054019000043890000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000020b0000290000006003100270000014f403300197000000060030006c000000060400002900000000040340190000001f0640018f000014f60740019800000000057b0019000043780000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000043740000c13d000000000006004b000043850000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049400000613d0000001f01400039000015f3021001970000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c00004aa30000213d000000010020019000004aa30000c13d000000400010043f0000158e0040009c000047ee0000213d000000200040008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000300000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000403000029000047ee0000613d000000400400043d000000640140003900000007020000290000000000210435000000440140003900001591020000410000000000210435000000240140003900000008020000290000000000210435000015cf0100004100000000021404360000000401400039000000030500002900000000005104350000000001000414000000040030008c000043d50000613d000014f40040009c000300000002001d000014f40200004100000000020440190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f00000004040000290000006003100270000114f40030019d0003000000010355000000010020019000000003020000290000494c0000613d000014fe0040009c00004aa30000213d000000400040043f0000002001000039000300000001001d000000000014043500000007010000290000000000120435000014f90040009c00004aa30000213d0000004001400039000000400010043f000014f40020009c000014f40200804100000040012002100000000002040433000014f40020009c000014f4020080410000006002200210000000000112019f0000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001514011001c7000080100200003953ca53c50000040f0000000100200190000047ee0000613d000000000101043b000400000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000044070000c13d0000000103000031000000200030008c00000020040000390000000004034019000044330000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700020000000c001d53ca53c50000040f000000020c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000044220000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000441e0000c13d000000000006004b0000442f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049590000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c00004aa30000213d000000010020019000004aa30000c13d0000004000b0043f000000200030008c000047ee0000413d00000000020c0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405b00039000015fc0600004100000000006504350000002405b0003900000004060000290000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000044800000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000446d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000044690000c13d000000000006004b0000447a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000049650000613d0000001f01400039000000600110018f000000000ab10019000014fe00a0009c00004aa30000213d0000004000a0043f000000200030008c000047ee0000413d00000000010b0433000200010010003e000047f10000613d0000000a01000039000000000201041a000015890100004100000000001a04350000000401a000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c000044c20000613d000014f400a0009c000014f40300004100000000030a40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700010000000a001d53ca53c50000040f000000010a0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a0019000044b10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000044ad0000c13d000000000005004b000044be0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000049710000613d00000003010000290000001f01100039000000600110018f0000000001a10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000020a0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000100000001001d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000303000029000047ee0000613d000000400400043d0000006401400039000000020200002900000000002104350000004401400039000015fc020000410000000000210435000000240140003900000004020000290000000000210435000015d10100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000045060000613d000014f40040009c000014f40200004100000000020440190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f00000004040000290000006003100270000114f40030019d000300000001035500000001002001900000497d0000613d000014fe0040009c00004aa30000213d000000400040043f0003000b0000002d0000000001000415000400000001001d0000150b010000410000000000100443000000050100002900000004001004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b000045430000613d000000400b00043d0000006401b00039000000800a0000390000000000a104350000004401b0003900000008020000290000000000210435000016080100004100000000001b04350000000401b00039000000000200041100000000002104350000002401b0003900000000000104350000008402b00039000000030100002900000000310104340000000000120435000015f3051001970000001f0410018f000000a402b00039000000000023004b000045470000813d000000000005004b0000453f0000613d00000000074300190000000006420019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000045390000c13d000000000004004b0000455d0000613d0000000006020019000045530000013d000000000100041500000004011000690000000001000002000045b90000013d0000000006520019000000000005004b000045500000613d0000000007030019000000000802001900000000790704340000000008980436000000000068004b0000454c0000c13d000000000004004b0000455d0000613d00000000035300190000000304400210000000000506043300000000054501cf000000000545022f00000000030304330000010004400089000000000343022f00000000034301cf000000000353019f00000000003604350000000002210019000000000002043500000000040004140000000702000029000000040020008c0000456b0000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000045a10000013d00050000000a001d0000001f01100039000015f301100197000000a401100039000014f40010009c000014f4010080410000006001100210000014f400b0009c000014f40300004100000000030b40190000004003300210000000000131019f000014f40040009c000014f404008041000000c003400210000000000131019f00070000000b001d53ca53c00000040f000000070b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000458d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045890000c13d000000000006004b0000459a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a00000005055002100000000100200190000049ec0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c00004aa30000213d000000010020019000004aa30000c13d000000400010043f000000200030008c000047ee0000413d00000000010b0433000015eb00100198000047ee0000c13d0000000502500270000000000201001f0000000002000415000000040220006900000000020000020000160a01100197000016080010009c00004a970000c13d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c000045cb0000c13d0000000601000029000000010010007c00000001030000310000000003014019000045f70000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700070000000c001d53ca53c50000040f000000070c0000290000006003100270000014f404300197000000060040006c000000060300002900000000030440190000001f0630018f000014f60730019800000000057c0019000045e60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000045e20000c13d000000000006004b000045f30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000498a0000613d0000001f01300039000015f301100197000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c00004aa30000213d000000010020019000004aa30000c13d0000004000b0043f0000158e0030009c000047ee0000213d000000200030008c000047ee0000413d00000000020c0433000014f70020009c000047ee0000213d0000000b04000039000000000404041a0000004405b00039000015c40600004100000000006504350000002405b0003900000008060000290000000000650435000015bb0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000046460000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700070000000b001d53ca53c50000040f000000070b0000290000006003100270000014f404300197000000060040006c000000060300002900000000030440190000001f0630018f000014f60730019800000000057b0019000046330000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000462f0000c13d000000000006004b000046400000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f00030000000103550000000100200190000049960000613d0000001f01300039000014f501100197000000000cb1001900000000001c004b00000000020000390000000102004039000014fe00c0009c00004aa30000213d000000010020019000004aa30000c13d0000004000c0043f000000200030008c000047ee0000413d00000000020b0433000000000002004b0000000004000039000000010400c039000000000042004b000047ee0000c13d000000000002004b0000465b0000613d0000000801000029000000000001042d0000000a02000039000000000202041a000015890400004100000000004c04350000000404c000390000158a05000041000000000054043500000000040004140000000802200270000014f702200197000000040020008c000046950000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001592011001c700070000000c001d53ca53c50000040f000000070c0000290000006003100270000014f404300197000000060040006c000000060300002900000000030440190000001f0630018f000014f60730019800000000057c0019000046820000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000467e0000c13d000000000006004b0000468f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f00030000000103550000000100200190000049f00000613d0000001f01300039000014f5011001970000000002c10019000000000012004b00000000010000390000000101004039000014fe0020009c00004aa30000213d000000010010019000004aa30000c13d000000400020043f000000200030008c000047ee0000413d00000000020c0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000500000001001d0000150b010000410000000000100443000700000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000703000029000047ee0000613d000000400b00043d0000006401b00039000000010200003900000000002104350000004401b000390000160b0200004100000000002104350000002401b0003900000008020000290000000000210435000015b30100004100000000001b04350000000404b00039000000050100002900000000001404350000000001000414000000040030008c00040000000b001d000046dd0000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000700000004001d53ca53c00000040f0000000704000029000000040b0000290000006003100270000114f40030019d0003000000010355000000010020019000004a0a0000613d000014fe00b0009c00004aa30000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c000046ef0000c13d000000060a0000290000000100a0007c000000010a0080310000471b0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000040b0000290000006003100270000014f403300197000000060030006c000000060400002900000000040340190000001f0540018f000000000a040019000014f60640019800000000046b00190000470a0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000048004b000047060000c13d000000000005004b000047170000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000004a170000613d0000001f01a00039000015f3021001970000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c00004aa30000213d000000010020019000004aa30000c13d00000000030a0019000000400010043f0000158e00a0009c000047ee0000213d000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000600000001001d0000150b010000410000000000100443000700000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000703000029000047ee0000613d000000400b00043d0000006401b00039000000010200003900000000002104350000004401b000390000160c0200004100000000002104350000002401b0003900000008020000290000000000210435000015d10100004100000000001b04350000000404b00039000000060100002900000000001404350000000001000414000000040030008c00050000000b001d000047680000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000700000004001d53ca53c00000040f0000000704000029000000050b0000290000006003100270000114f40030019d0003000000010355000000010020019000004a350000613d000014fe00b0009c00004aa30000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c0000477b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000047a60000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000050b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000047950000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000047910000c13d000000000006004b000047a20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004a420000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c00004aa30000213d000000400010043f000000200030008c000047ee0000413d00000000020b0433000014f70020009c000047ee0000213d0000000b01000039000000000101041a000600000001001d0000150b010000410000000000100443000700000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000047f00000613d000000000101043b000000000001004b0000000703000029000047ee0000613d000000400400043d0000006401400039000000010200003900000000002104350000004401400039000015c4020000410000000000210435000000240140003900000008020000290000000000210435000015b30100004100000000001404350000000401400039000000060200002900000000002104350000000001000414000000040030008c000047e90000613d000014f40040009c000014f40200004100000000020440190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000700000004001d53ca53c00000040f00000007040000290000006003100270000114f40030019d0003000000010355000000010020019000004a4e0000613d000014fe0040009c00004aa30000213d000000400040043f0000000801000029000000000001042d0000000001000019000053cc00010430000000000001042f000015d301000041000000000010043f0000001101000039000000040010043f0000159201000041000053cc0001043000000044021000390000160703000041000000000032043500000024021000390000001c03000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc00010430000015180100004100000000001b0435000000200100003900000000001204350000004401b000390000160e0200004100000000002104350000002401b000390000001202000039000048190000013d000015180200004100000000002b0435000000200200003900000000002104350000004401b000390000160d0300004100000000003104350000002401b000390000000000210435000014f400b0009c000014f40b0080410000004001b0021000001519011001c7000053cc00010430000015180100004100000000001b0435000000200100003900000000001204350000006401b00039000015980200004100000000002104350000004401b00039000015990200004100000000002104350000002401b0003900000026020000390000000000210435000014f400b0009c000014f40b0080410000004001b002100000151c011001c7000053cc000104300000160601000041000000000010043f0000159b01000041000053cc000104300000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000483c0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048480000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048540000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048600000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000486c0000c13d00004a220000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048780000c13d00004a220000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048840000c13d00004a220000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048910000c13d00004a220000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000489d0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048a90000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048b50000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048c10000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048cd0000c13d00004a5a0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048da0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048e60000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048f20000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048fe0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000490a0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049160000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049220000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000492e0000c13d00004a5a0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000493b0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049470000c13d00004a220000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049540000c13d00004a220000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049600000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000496c0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049780000c13d00004a5a0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049850000c13d00004a5a0000013d0000001f0540018f000014f606400198000000400200043d0000000003620019000049fb0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000049910000c13d000049fb0000013d0000001f0540018f000014f606400198000000400200043d0000000003620019000049fb0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000499d0000c13d000049fb0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049a90000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049b50000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049c10000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049cd0000c13d00004a5a0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049da0000c13d00004a220000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000049e70000c13d00004a220000013d000000000003004b00004a6d0000c13d000000600200003900004a940000013d0000001f0540018f000014f606400198000000400200043d0000000003620019000049fb0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000049f70000c13d000000000005004b00004a080000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000130435000000600140021000004a300000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a120000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a220000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a1e0000c13d000000000005004b00004a2f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc00010430000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a3d0000c13d00004a5a0000013d0000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a490000c13d00004a5a0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d000000000462001900004a5a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004a560000c13d000000000005004b00004a670000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc000104300000001f02300039000014f5022001970000003f022000390000160904200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000014fe0040009c00004aa30000213d000000010050019000004aa30000c13d000000400040043f0000001f0430018f0000000006320436000014f605300198000500000006001d000000000356001900004a870000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00004a830000c13d000000000004004b00004a940000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00004aa90000c13d000000400200043d000800000002001d00001518010000410000000000120435000000040120003953ca527f0000040f00000008020000290000000001210049000014f40010009c000014f401008041000000600110021000004a300000013d000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000000502000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f4010080410000006001100210000000000121019f000053cc000104300005000000000002000500000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00004ac60000c13d0000000103000031000000200030008c0000002004000039000000000403401900004af20000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004ae10000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004add0000c13d000000000006004b00004aee0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051270000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c000050f80000213d0000000100200190000050f80000c13d0000004000b0043f0000001f0030008c000050f60000a13d00000000020c0433000014f70020009c000050f60000213d0000000b04000039000000000404041a0000004405b00039000015910600004100000000006504350000002405b0003900000005060000290000000000650435000015900500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00004b3f0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000b001d53ca53c50000040f000000040b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004b2c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004b280000c13d000000000006004b00004b390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051330000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c000050f80000213d000000400010043f000000200030008c000050f60000413d00000000030b0433000014f70030009c000050f60000213d000000000003004b000050ff0000613d0000001001000039000000000101041a000014f70210019800004b820000613d000400000003001d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000403000029000050f60000613d000000400400043d000000440140003900000005020000290000000000210435000015ff010000410000000000140435000000040140003900000000003104350000002401400039000000000001043500000000010004140000000302000029000000040020008c00004b7f0000613d000014f40040009c000014f40300004100000000030440190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c7000400000004001d53ca53c00000040f00000004040000290000006003100270000114f40030019d000300000001035500000001002001900000522e0000613d000014fe0040009c000050f80000213d000000400040043f000015950100004100000000001004430000000001000414000014f40010009c000014f401008041000000c00110021000001596011001c70000800b0200003953ca53c50000040f0000000100200190000050fe0000613d000000400b00043d0000000402b00039000000000101043b000015970010009c000051150000813d000400000001001d0000000a01000039000000000301041a000015890100004100000000001b04350000158a01000041000000000012043500000000010004140000000802300270000014f702200197000000040020008c00004ba30000c13d0000000103000031000000200030008c0000002004000039000000000403401900004bcf0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700030000000b001d53ca53c50000040f000000030b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004bbe0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004bba0000c13d000000000006004b00004bcb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000513f0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014fe0010009c000050f80000213d0000000100200190000050f80000c13d000000400010043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b01000039000000000101041a000200000001001d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000303000029000050f60000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000015940200004100000000002104350000002401b0003900000005020000290000000000210435000015d10100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d00004c190000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f0000000404000029000000010b0000290000006003100270000114f40030019d000300000001035500000001002001900000514b0000613d000014fe00b0009c000050f80000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c00004c2c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004c570000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004c460000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004c420000c13d000000000006004b00004c530000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051580000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c000050f80000213d0000004000c0043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b04000039000000000404041a0000004405c00039000015b2060000410000000000650435000015bb0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00004c9e0000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004c8b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004c870000c13d000000000006004b00004c980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051640000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c000050f80000213d0000004000b0043f000000200030008c000050f60000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b000050f60000c13d0000000a01000039000000000201041a000015890100004100000000001b04350000000401b000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00004cb80000c13d000000200400003900004ce40000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700040000000b001d53ca53c50000040f000000040b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004cd30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004ccf0000c13d000000000006004b00004ce00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051700000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c000050f80000213d0000004000c0043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b04000039000000000404041a0000004405c00039000015910600004100000000006504350000002405c0003900000005060000290000000000650435000015900500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00004d2c0000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004d190000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004d150000c13d000000000006004b00004d260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000517c0000613d0000001f01400039000000600110018f0000000001c10019000014fe0010009c000050f80000213d000000400010043f000000200030008c000050f60000413d00000000020c0433000400000002001d000014f70020009c000050f60000213d000000040000006b000050ff0000613d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000050f60000613d000000000101043b000000000201041a0000151302200197000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000050f60000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000014f40010009c000014f401008041000000c00110021000001509011001c7000080100200003953ca53c50000040f0000000100200190000050f60000613d000000000101043b000000000201041a0000151302200197000000000021041b0000000001000414000014f40010009c000014f401008041000000c00110021000001514011001c70000800d020000390000000403000039000016010400004100000004050000290000000006000019000000050700002953ca53c00000040f0000000100200190000050f60000613d0000001101000039000000000101041a000014f70210019800004db10000613d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b000050f60000613d000000400400043d000000440140003900000005020000290000000000210435000015ff0100004100000000001404350000000401400039000000040200002900000000002104350000002401400039000000000001043500000000010004140000000302000029000000040020008c00004dad0000613d000014f40040009c000014f40300004100000000030440190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001519011001c7000300000004001d53ca53c00000040f00000003040000290000006003100270000114f40030019d000300000001035500000001002001900000523b0000613d000014fe0040009c000050f80000213d000000400040043f00004db20000013d000000400400043d0000002001000039000300000001001d000000000114043600000004020000290000000000210435000014f90040009c000050f80000213d0000004002400039000000400020043f000014f40010009c000014f40100804100000040011002100000000002040433000014f40020009c000014f4020080410000006002200210000000000112019f0000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001514011001c7000080100200003953ca53c50000040f0000000100200190000050f60000613d000000000101043b000400000001001d0000000a01000039000000000201041a000000400c00043d000015890100004100000000001c04350000000401c000390000158a03000041000000000031043500000000010004140000000802200270000014f702200197000000040020008c00004de10000c13d0000000103000031000000200030008c0000002004000039000000000403401900004e0d0000013d000014f400c0009c000014f40300004100000000030c40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700020000000c001d53ca53c50000040f000000020c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004dfc0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004df80000c13d000000000006004b00004e090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051880000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b00000000020000390000000102004039000014fe00b0009c000050f80000213d0000000100200190000050f80000c13d0000004000b0043f000000200030008c000050f60000413d00000000020c0433000014f70020009c000050f60000213d0000000b04000039000000000404041a0000004405b00039000015fc0600004100000000006504350000002405b0003900000004060000290000000000650435000015930500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00004e5a0000613d000014f400b0009c000014f40100004100000000010b40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700020000000b001d53ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004e470000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004e430000c13d000000000006004b00004e540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051940000613d0000001f01400039000000600110018f000000000ab10019000014fe00a0009c000050f80000213d0000004000a0043f000000200030008c000050f60000413d00000000010b0433000200000001001d000000000001004b0000510f0000613d0000000a01000039000000000201041a000015890100004100000000001a04350000000401a000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c00004e9d0000613d000014f400a0009c000014f40300004100000000030a40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700010000000a001d53ca53c50000040f000000010a0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a001900004e8c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00004e880000c13d000000000005004b00004e990000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000051a00000613d00000003010000290000001f01100039000000600110018f0000000001a10019000014fe0010009c000050f80000213d000000400010043f000000200030008c000050f60000413d00000000020a0433000014f70020009c000050f60000213d0000000b01000039000000000101041a000100000001001d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000303000029000050f60000613d0000000201000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b00039000015fc0200004100000000002104350000002401b0003900000004020000290000000000210435000015d10100004100000000001b04350000000404b00039000000010100002900000000001404350000000001000414000000040030008c00020000000b001d00004ee40000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f0000000404000029000000020b0000290000006003100270000114f40030019d00030000000103550000000100200190000051ac0000613d000014fe00b0009c000050f80000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c00004ef70000c13d0000000103000031000000200030008c0000002004000039000000000403401900004f220000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004f110000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004f0d0000c13d000000000006004b00004f1e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051b90000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c000050f80000213d000000400010043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b01000039000000000101041a000300000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000403000029000050f60000613d000000400b00043d0000004401b00039000015910200004100000000002104350000002401b0003900000005020000290000000000210435000015cf0100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d00004f660000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f0000000404000029000000020b0000290000006003100270000114f40030019d00030000000103550000000100200190000051c50000613d000014fe00b0009c000050f80000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c00004f790000c13d0000000103000031000000200030008c0000002004000039000000000403401900004fa40000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000020b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004f930000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004f8f0000c13d000000000006004b00004fa00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051d20000613d0000001f01400039000000600110018f000000000cb10019000014fe00c0009c000050f80000213d0000004000c0043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b04000039000000000404041a0000004405c00039000015f9060000410000000000650435000015930500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00004feb0000613d000014f400c0009c000014f40100004100000000010c40190000004001100210000014f40040009c000014f404008041000000c003400210000000000113019f00001519011001c700040000000c001d53ca53c50000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004fd80000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004fd40000c13d000000000006004b00004fe50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051de0000613d0000001f01400039000000600110018f000000000bc10019000014fe00b0009c000050f80000213d0000004000b0043f000000200030008c000050f60000413d00000000010c0433000400010010003e0000510f0000613d0000000a01000039000000000201041a000015890100004100000000001b04350000000401b000390000158a04000041000000000041043500000000010004140000000802200270000014f702200197000000040020008c000050020000c13d00000020040000390000502e0000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c700030000000b001d53ca53c50000040f000000030b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000501d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000050190000c13d000000000006004b0000502a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000051ea0000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c000050f80000213d000000400010043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b01000039000000000101041a000200000001001d0000150b010000410000000000100443000300000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000303000029000050f60000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000015f9020000410000000000210435000015d10100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00010000000b001d000050720000613d000014f400b0009c000014f40200004100000000020b40190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000400000004001d53ca53c00000040f0000000404000029000000010b0000290000006003100270000114f40030019d00030000000103550000000100200190000051f60000613d000014fe00b0009c000050f80000213d0000004000b0043f0000000a01000039000000000201041a000015890100004100000000001b04350000158a01000041000000000014043500000000010004140000000802200270000014f702200197000000040020008c000050850000c13d0000000103000031000000200030008c00000020040000390000000004034019000050b00000013d000014f400b0009c000014f40300004100000000030b40190000004003300210000014f40010009c000014f401008041000000c001100210000000000131019f00001592011001c753ca53c50000040f000000010b0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000509f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000509b0000c13d000000000006004b000050ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000052030000613d0000001f01400039000000600110018f0000000001b10019000014fe0010009c000050f80000213d000000400010043f000000200030008c000050f60000413d00000000020b0433000014f70020009c000050f60000213d0000000b01000039000000000101041a000300000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000403000029000050f60000613d000000400400043d0000004401400039000015c4020000410000000000210435000000240140003900000005020000290000000000210435000015b3010000410000000000140435000000040140003900000003020000290000000000210435000000640140003900000000000104350000000001000414000000040030008c000050f20000613d000014f40040009c000014f40200004100000000020440190000004002200210000014f40010009c000014f401008041000000c001100210000000000121019f0000151c011001c70000000002030019000500000004001d53ca53c00000040f00000005040000290000006003100270000114f40030019d000300000001035500000001002001900000520f0000613d000014fe0040009c000050f80000213d000000400040043f000000000001042d0000000001000019000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc00010430000000000001042f00000044021000390000159c03000041000000000032043500000024021000390000001803000039000000000032043500001518020000410000000000210435000000040210003900000020030000390000000000320435000014f40010009c000014f401008041000000400110021000001519011001c7000053cc00010430000015d301000041000000000010043f0000001101000039000000040010043f0000159201000041000053cc00010430000015180100004100000000001b0435000000200100003900000000001204350000006401b00039000015980200004100000000002104350000004401b00039000015990200004100000000002104350000002401b0003900000026020000390000000000210435000014f400b0009c000014f40b0080410000004001b002100000151c011001c7000053cc000104300000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000512e0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000513a0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051460000c13d0000521b0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051530000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000515f0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000516b0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051770000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051830000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000518f0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000519b0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051a70000c13d0000521b0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051b40000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d0000000004620019000052470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051c00000c13d000052470000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000052470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051cd0000c13d000052470000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051d90000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051e50000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051f10000c13d0000521b0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051fe0000c13d0000521b0000013d0000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000520a0000c13d0000521b0000013d000014f4033001970000001f0530018f000014f606300198000000400200043d00000000046200190000521b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000052170000c13d000000000005004b000052280000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000112019f000053cc00010430000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000052470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000052360000c13d000052470000013d000014f4033001970000001f0530018f000014f606300198000000400200043d0000000004620019000052470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000052430000c13d000000000005004b000052540000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc00010430000000400200043d00000020030000390000000003320436000014f70110019700000000001304350000160f0020009c000052770000813d0000004001200039000000400010043f000014f40030009c000014f40300804100000040013002100000000002020433000014f40020009c000014f4020080410000006002200210000000000112019f0000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001514011001c7000080100200003953ca53c50000040f00000001002001900000527d0000613d000000000101043b000000000001042d000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000000001000019000053cc00010430000000600210003900001610030000410000000000320435000000400210003900001611030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000001004b000052900000613d000000000001042d000000400200043d000100000002001d00001518010000410000000000120435000000040120003953ca527f0000040f00000001020000290000000001210049000014f40010009c000014f4010080410000006001100210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc000104300006000000000002000300000004001d000200000003001d000100000001001d0000150b010000410000000000100443000400000002001d00000004002004430000000001000414000014f40010009c000014f401008041000000c0011002100000150c011001c7000080020200003953ca53c50000040f0000000100200190000053530000613d000000000101043b000000000001004b000052dd0000613d000000400c00043d0000006401c00039000000800b0000390000000000b104350000004401c00039000000020200002900000000002104350000000101000029000014f7011001970000002402c000390000000000120435000016080100004100000000001c04350000000401c00039000000000200041100000000002104350000008402c00039000000030100002900000000410104340000000000120435000015f3061001970000001f0510018f000000a402c00039000000000024004b000052df0000813d000000000006004b000052d90000613d00000000085400190000000007520019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000052d30000c13d000000000005004b000052f50000613d0000000007020019000052eb0000013d0000000101000039000000000001042d0000000007620019000000000006004b000052e80000613d00000000080400190000000009020019000000008a0804340000000009a90436000000000079004b000052e40000c13d000000000005004b000052f50000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f00000000004704350000000002210019000000000002043500000000040004140000000402000029000014f702200197000000040020008c000053040000c13d0000000005000415000000060550008a00000005055002100000000103000031000000200030008c000000200400003900000000040340190000533a0000013d00030000000b001d0000001f01100039000015f301100197000000a401100039000014f40010009c000014f4010080410000006001100210000014f400c0009c000014f40300004100000000030c40190000004003300210000000000131019f000014f40040009c000014f404008041000000c003400210000000000131019f00040000000c001d53ca53c00000040f000000040c0000290000006003100270000014f403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000053260000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000053220000c13d000000000006004b000053330000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000050550008a00000005055002100000000100200190000053540000613d0000001f01400039000000600210018f0000000001c20019000000000021004b00000000020000390000000102004039000014fe0010009c000053920000213d0000000100200190000053920000c13d000000400010043f0000001f0030008c000053510000a13d00000000010c0433000015eb00100198000053510000c13d0000000502500270000000000201001f0000160a01100197000016080010009c00000000010000390000000101006039000000000001042d0000000001000019000053cc00010430000000000001042f000000000003004b000053580000c13d00000060020000390000537f0000013d0000001f02300039000014f5022001970000003f022000390000160904200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000014fe0040009c000053920000213d0000000100500190000053920000c13d000000400040043f0000001f0430018f0000000006320436000014f605300198000300000006001d0000000003560019000053720000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b0000536e0000c13d000000000004004b0000537f0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000053980000c13d000000400200043d000400000002001d00001518010000410000000000120435000000040120003953ca527f0000040f00000004020000290000000001210049000014f40010009c000014f4010080410000006001100210000014f40020009c000014f4020080410000004002200210000000000121019f000053cc00010430000015d301000041000000000010043f0000004101000039000000040010043f0000159201000041000053cc000104300000000302000029000014f40020009c000014f4020080410000004002200210000014f40010009c000014f4010080410000006001100210000000000121019f000053cc00010430000000000001042f00000000050100190000000000200443000000050030008c000053b00000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000053a80000413d000014f40030009c000014f40300804100000060013002100000000002000414000014f40020009c000014f402008041000000c002200210000000000112019f00001612011001c7000000000205001953ca53c50000040f0000000100200190000053bf0000613d000000000101043b000000000001042d000000000001042f000053c3002104210000000102000039000000000001042d0000000002000019000000000001042d000053c8002104230000000102000039000000000001042d0000000002000019000000000001042d000053ca00000432000053cb0001042e000053cc0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf474947412d524f4d000000000000000000000000000000000000000000000000524f4d0000000000000000000000000000000000000000000000000000000000474947412d524f4d202300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf609addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c93978a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688000000000000000000000000721c002b0059009a671d00ad1700c9748146cd1b0200000000000000000000000000000000000040000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000fb2de5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00f9b1ab390c070ccb3b4accce72179b5bd850923c230f607aab0d72b38699849b8a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76efffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000080000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000002073616c65507269636500000000000000000000000000000000000000000000455243323938313a20726f79616c7479206665652077696c6c206578636565640000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000008129fc1b00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000df30e54a00000000000000000000000000000000000000000000000000000000e8a3d48400000000000000000000000000000000000000000000000000000000ed022ebc00000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000e725f87600000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000df30e54b00000000000000000000000000000000000000000000000000000000e6c35a9100000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000d3b551cf00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000c03ad0bd00000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c4e41b2200000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bb997f27000000000000000000000000000000000000000000000000000000009e05d23f00000000000000000000000000000000000000000000000000000000a485b4ce00000000000000000000000000000000000000000000000000000000aa1b103e00000000000000000000000000000000000000000000000000000000aa1b103f00000000000000000000000000000000000000000000000000000000b55cd04b00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a2309ff8000000000000000000000000000000000000000000000000000000009e05d24000000000000000000000000000000000000000000000000000000000a16ad7da0000000000000000000000000000000000000000000000000000000088e4f1ca00000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000099d3a8860000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000082840eec0000000000000000000000000000000000000000000000000000000082840eed00000000000000000000000000000000000000000000000000000000835f3967000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000008245e472000000000000000000000000000000000000000000000000000000002e1a7d4c000000000000000000000000000000000000000000000000000000005633a362000000000000000000000000000000000000000000000000000000006221d13b0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000006221d13c000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca631000000000000000000000000000000000000000000000000000000005633a363000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000004c0f38c1000000000000000000000000000000000000000000000000000000004c0f38c2000000000000000000000000000000000000000000000000000000004f558e790000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000040c10f19000000000000000000000000000000000000000000000000000000002e1a7d4d000000000000000000000000000000000000000000000000000000002fb0b874000000000000000000000000000000000000000000000000000000000d705df50000000000000000000000000000000000000000000000000000000018160ddc00000000000000000000000000000000000000000000000000000000248b71fb00000000000000000000000000000000000000000000000000000000248b71fc00000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000002a55205a0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000015be71fe0000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c000000000000000000000000000000000000000000000000000000000d705df6000000000000000000000000000000000000000000000000000000001328357f0000000000000000000000000000000000000000000000000000000006fdde0200000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000098144d4000000000000000000000000000000000000000000000000000000000ca1c5c90000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a60000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000004634d8d000000000000000000000000000000000000000000000000000000000035a9ae00000000000000000000000000000000000000000000000000000000014635464f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c00000000000000000000000000000000000000024000000000000000000000000a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000100000000322062697473000000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e2033401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004552433732313a20696e76616c696420746f6b656e204944000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7fc36dd7ea000000000000000000000000000000000000000000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a65c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a20706175736564000000000000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0800000000000000000000000000000000000000440000008000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bdf2c071ca00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6fbfa2ccd20000000000000000000000000000000000000000000000000000000032483afb00000000000000000000000000000000000000000000000000000000651689700000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000000000000000000000000000000000000000006400000080000000000000000007b920aa00000000000000000000000000000000000000000000000000000000ffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff000000000000000000000100000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000006787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc93c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068e95c048700000000000000000000000000000000000000000000000000000000fdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb53fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c47696761526f6d4e4654000000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b71000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000ff0000000000000000000000000000000000000000007f5b076c952c0ec86e5425963c1326dd0f03a3595c19f81d765e8ff559a6e33c455243323938313a20496e76616c696420706172616d657465727300000000006b656e0000000000000000000000000000000000000000000000000000000000596f7520617265206e6f7420746865206f776e6572206f66207468697320746f000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe05472616e73666572206661696c656400000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c0000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000caee23ea0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000008000000000000000006b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e6500000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c1ced5f00000000000000000000000000000000000000000000000000000000a07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e00000000000000000000000000000000000000000000000100000000000000007ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde72206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a0916f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f7272656374208ce516da0000000000000000000000000000000000000000000000000000000047616d654e46543a20546f6b656e20697320736f756c626f756e640000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef72657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164640200000200000000000000000000000000000044000000000000000000000000a2a9f6940e96680af2fe721eb59341cde71d9b7ae61dc834d205d6c59360268ec30436e9000000000000000000000000000000000000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e74656400000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0ffffffff00000000000000000000000000000000000000000000000000000000608e8583c5619bbc3db921ebeaef749afb02ec159f0152f9091151af16e87a3cd7fe74ba2795604f471717a6182ac81070ad95ecee0b7d8ebcfbec785af7e7964552433732313a206d696e7420746f20746865207a65726f206164647265737345786365656473206d617820737570706c790000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc063656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e20455243373231526502000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb50203ee01ecece02489783594bed152c4c7b19b944e320b9d2b4b30c77cfaa
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6000000000000000000000000bc3d3f90005f4a4649764431e1a3d529d2aae66e00000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : maxSupply (uint256): 10000
Arg [1] : gameRegistryAddress (address): 0xb5f84708957E5628C363709AE1d4CB346081fbf6
Arg [2] : royaltyRecipient (address): 0xBc3D3F90005f4a4649764431e1a3d529d2AaE66E
Arg [3] : feeNumerator (uint96): 1000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
Arg [2] : 000000000000000000000000bc3d3f90005f4a4649764431e1a3d529d2aae66e
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
[ 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.