ERC-721
Overview
Max Total Supply
0 NOOB
Holders
2,810
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 NOOBLoading...
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:
GigaNoobNFT
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, IS_SOULBOUND_CID} from "../../constants/ColumnConstants.sol"; import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol"; import {IGigaNoobNFT, ID } from "./IGigaNoobNFT.sol"; /** @title GigaNoob NFTs on L2 */ contract GigaNoobNFT is GameNFT, IGigaNoobNFT { // 0 max supply = infinite uint256 constant MAX_SUPPLY = 0; /** SETUP */ constructor(address gameRegistryAddress, address royaltyRecipient, uint96 feeNumerator) GameNFT(MAX_SUPPLY, "NOOB", "NOOB", "Noob #", gameRegistryAddress, ID, royaltyRecipient, feeNumerator) {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("GigaNoobNFT", ID); _setTableBoolValue(IS_SOULBOUND_CID, true); _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 the ERC721 token * * @param to Recipient of the token */ function mint( address to ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256) { uint256 nextTokenId = _getAndIncrementAutoIncId(); _safeMint(to, nextTokenId); return nextTokenId; } /** * Burn a token - any payment / game logic should be handled in 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); _setDocBoolValue(tokenId, IS_NOOB_CID, false); _setDocUint256Value(tokenId, LEVEL_CID, 0); } }
// 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, UNLOCKED_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, ERC721OpenZeppelin} 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 Trading is locked error TradingLocked(); /** 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 ) { if (from != address(0) && to != address(0)) { if (isTradingLocked()) { revert TradingLocked(); } } 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"); super._beforeTokenTransfer(from, to, tokenId, batchSize); } } 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); } super._afterTokenTransfer(from, to, tokenId, batchSize); } } 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 isSoulbound() public view returns (bool) { return getTableBoolValue(IS_SOULBOUND_CID); } 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); } function isTradingLocked() public view returns (bool) { return !getTableBoolValue(UNLOCKED_CID); } function setTradingLocked(bool locked) external onlyRole(MANAGER_ROLE) { _setTableBoolValue(UNLOCKED_CID, !locked); } }
// 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")); uint256 constant UNLOCKED_CID = uint256(keccak256("unlocked"));
// 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"; uint256 constant ID = uint256(keccak256("game.gigaverse.giganoobnft")); interface IGigaNoobNFT is IGameNFT { function mint(address to) external returns (uint256); function burnByGameContract(uint256 id) external; }
// 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); function isTradingLocked() 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 (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 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 // 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 }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"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":[],"name":"ShouldNotMintToBurnAddress","type":"error"},{"inputs":[],"name":"TradingLocked","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":"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":[],"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":[{"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":"isSoulbound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingLocked","outputs":[{"internalType":"bool","name":"","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"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","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":"bool","name":"locked","type":"bool"}],"name":"setTradingLocked","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":[{"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
9c4d535b000000000000000000000000000000000000000000000000000000000000000001001569c3c6bba0db5f4f82138a905143e432f7ed992932c139cbb3570fabe00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x0004000000000002000f000000000002000000000401034f00000060011002700000144e0010019d0000144e03100197000300000034035500020000000403550000008001000039000000400010043f0000000100200190000000470000c13d000000040030008c000000710000413d000000000134034f000000000204043b000000e002200270000014760020009c000000730000213d000014a90020009c0000009f0000a13d000014aa0020009c000000e70000213d000014b70020009c000001bb0000a13d000014b80020009c000002e50000a13d000014b90020009c000006af0000613d000014ba0020009c000006520000613d000014bb0020009c000000710000c13d000000640030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000c00000001001d0000002401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000004401400370000000000101043b000b00000001001d000014520010009c000000710000213d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145101100197000a00000001001d000000a40010043f000000000100041400000008022002700000145102200197000000040020008c000014040000c13d0000000103000031000000200030008c00000020040000390000000004034019000014290000013d0000000002000416000000000002004b000000710000c13d0000001f023000390000144f022001970000008002200039000000400020043f0000001f0530018f00001450063001980000008002600039000000570000613d000000000704034f000000007807043c0000000001810436000000000021004b000000530000c13d000000000005004b000000640000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000000710000413d000000800200043d000014510020009c000000710000213d000000a00100043d000d00000001001d000014510010009c000000710000213d000000c00100043d000c00000001001d000014520010009c000001550000a13d00000000010000190000513700010430000014770020009c000000c00000a13d000014780020009c000001060000213d000014850020009c000001d40000a13d000014860020009c000002f30000a13d000014870020009c000007000000613d000014880020009c000006780000613d000014890020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145101100197000c00000001001d000000a40010043f000000000100041400000008022002700000145102200197000000040020008c0000121a0000c13d0000000103000031000000200030008c000000200400003900000000040340190000123f0000013d000014c30020009c000001150000a13d000014c40020009c000002040000a13d000014c50020009c000003d20000a13d000014c60020009c0000076a0000613d000014c70020009c0000074b0000613d000014c80020009c000000710000c13d000000240030008c000000710000413d0000000002000416000000000002004b000000710000c13d0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c00000e160000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e3b0000013d000014910020009c000001380000a13d000014920020009c0000020f0000a13d000014930020009c000003f50000a13d000014940020009c0000077c0000613d000014950020009c0000075f0000613d000014960020009c000000710000c13d000000440030008c000000710000413d0000000002000416000000000002004b000000710000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c000d00000004001d000c00000005001d00000ec10000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ee60000013d000014ab0020009c000001df0000a13d000014ac0020009c000003120000a13d000014ad0020009c000007090000613d000014ae0020009c0000067d0000613d000014af0020009c000000710000c13d0000000001000416000000000001004b000000710000c13d0000000a01000039000000000201041a000014fd01000041000000800010043f0000151b01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000145102200197000000040020008c00000ba00000c13d0000000103000031000000200030008c0000002004000039000000000403401900000bc50000013d000014790020009c000001e60000a13d0000147a0020009c000003220000a13d0000147b0020009c000007220000613d0000147c0020009c000006920000613d0000147d0020009c000000710000c13d0000000001000416000000000001004b000000710000c13d513537630000040f0000048f0000013d000014d00020009c000002390000213d000014d60020009c000003690000213d000014d90020009c000005bb0000613d000014da0020009c000000710000c13d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c000d00000003001d000c00000005001d00000d3f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d640000013d0000149e0020009c000002520000213d000014a40020009c0000038d0000213d000014a70020009c000005dc0000613d000014a80020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c00000d820000c13d0000000103000031000000200030008c0000002004000039000000000403401900000da70000013d000a00000002001d000000400100043d000b00000001001d000014530010009c00001d7a0000213d0000000b020000290000004001200039000000400010043f000000040100003900000000031204360000145402000041000800000003001d0000000000230435000000400300043d000900000003001d000014530030009c00001d7a0000213d00000009040000290000004003400039000000400030043f0000000001140436000600000001001d0000000000210435000000400100043d000700000001001d000014530010009c00001d7a0000213d00000007020000290000004001200039000000400010043f000000060100003900000000021204360000145501000041000400000002001d0000000000120435000000400100043d000500000001001d000014560010009c00001d7a0000213d00000005020000290000002001200039000000400010043f0000000000020435000000400200043d000300000002001d000014560020009c00001d7a0000213d00000003020000290000002003200039000100000003001d000000400030043f000000000002043500000005020000290000000002020433000200000002001d000014570020009c00001d7a0000213d000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000003cc0000c13d000000200030008c0000000204000029000001a90000413d0000001f024000390000000502200270000014580220009a000000200040008c0000145902004041000000000000043f0000001f033000390000000503300270000014580330009a000000000032004b000001a90000813d000000000002041b0000000102200039000000000032004b000001a50000413d0000001f0040008c000019f30000a13d000000000000043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d000000200200008a0000000202200180000000000101043b00001d590000c13d000000200300003900001d660000013d000014be0020009c000002820000213d000014c10020009c000004200000613d000014c20020009c000000710000c13d000000240030008c000000710000413d0000000002000416000000000002004b000000710000c13d0000000903000039000000000203041a000000020020008c000008c00000c13d0000147101000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000154001000041000000c40010043f0000150e0100004100005137000104300000148c0020009c000002a40000213d0000148f0020009c000004600000613d000014900020009c000000710000c13d0000000001000416000000000001004b000000710000c13d0000001001000039000007040000013d000014b20020009c000002b60000213d000014b50020009c0000048b0000613d000014b60020009c000003910000613d000000710000013d000014800020009c000002ce0000213d000014830020009c000004930000613d000014840020009c000000710000c13d000000240030008c000000710000413d0000000002000416000000000002004b000000710000c13d0000000402400370000000000202043b000d00000002001d0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c000008d60000c13d0000000103000031000000200030008c00000020040000390000000004034019000008fb0000013d000014cb0020009c0000032d0000213d000014ce0020009c000005640000613d000014cf0020009c000000710000c13d0000000001000416000000000001004b000000710000c13d513535b00000040f000007630000013d000014990020009c000003460000213d0000149c0020009c0000056b0000613d0000149d0020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d0000000f02000039000000000202041a00001451022001970000000003000411000000000032004b000007850000c13d0000000802000039000000000302041a0000151003300197000000000001004b0000000004000019000015110400c041000000000343019f000000000032041b000000800010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001512011001c70000800d02000039000000010300003900001513040000410000071d0000013d000014d10020009c000003990000213d000014d40020009c000005f70000613d000014d50020009c000000710000c13d0000000002000416000000000002004b000000710000c13d0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c00000adf0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b040000013d0000149f0020009c000003b90000213d000014a20020009c0000061a0000613d000014a30020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000014570010009c000000710000213d0000002302100039000000000032004b000000710000813d000c00040010003d0000000c02400360000000000202043b000d00000002001d000014570020009c000000710000213d0000000d01100029000b00240010003d0000000b0030006b000000710000213d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145101100197000a00000001001d000000a40010043f000000000100041400000008022002700000145102200197000000040020008c000018540000c13d0000000103000031000000200030008c00000020040000390000000004034019000018790000013d000014bf0020009c000004b40000613d000014c00020009c000000710000c13d0000000001000416000000000001004b000000710000c13d000000000103001951352f720000040f000c00000001001d000b00000002001d000d00000003001d000000400100043d000a00000001001d000000200200003951352f930000040f0000000a01000029000000000001043500000000010004110000000d02000029513538fb0000040f513532800000040f0000000c010000290000000b020000290000000d0300002951353ad30000040f0000000c010000290000000b020000290000000d030000290000000a0400002951354de80000040f51354dd40000040f0000000001000019000051360001042e0000148d0020009c000004cf0000613d0000148e0020009c000000710000c13d0000000001000416000000000001004b000000710000c13d513535b00000040f000d00000001001d513531a90000040f0000000d0110006b000007630000813d0000152301000041000000000010043f0000001101000039000000040010043f000014e9010000410000513700010430000014b30020009c000004ea0000613d000014b40020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b513532970000040f000d14510010019c0000000001000039000000010100c039513533ea0000040f000000400100043d0000000d0200002900000000002104350000144e0010009c0000144e010080410000004001100210000014db011001c7000051360001042e000014810020009c000004f50000613d000014820020009c000000710000c13d0000000002000416000000000002004b000000710000c13d0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c0000078e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000007b30000013d000014bc0020009c000005120000613d000014bd0020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b513532970000040f0000145100100198000004900000013d0000148a0020009c000005240000613d0000148b0020009c000000710000c13d000000440030008c000000710000413d0000000002000416000000000002004b000000710000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c000d00000004001d000c00000005001d000009c50000c13d0000000103000031000000200030008c00000020040000390000000004034019000009ea0000013d000014b00020009c000005390000613d000014b10020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000014510010009c000000710000213d51354ce20000040f513533fe0000040f000007630000013d0000147e0020009c000005550000613d0000147f0020009c000000710000c13d0000000001000416000000000001004b000000710000c13d0000000a01000039000000000101041a0000000801100270000007050000013d000014cc0020009c000005970000613d000014cd0020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c00000bdc0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c010000013d0000149a0020009c000005a00000613d0000149b0020009c000000710000c13d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b000000710000c13d00000000020004110000000d0020006c0000133d0000c13d0000147101000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000150d01000041000000c40010043f0000150e010000410000513700010430000014d70020009c000006230000613d000014d80020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000201043b0000153000200198000000710000c13d00000001010000390000154e0020009c000003890000613d0000154f0020009c000003890000613d000015500020009c000003890000613d000015510020009c00000000030000390000000103006039000015520020009c00000000040000390000000104006039000015530020009c00000000050000390000000105006039000015540020009c000000000134c19f000000000115c19f000000010110018f000000800010043f000014df01000041000051360001042e000014a50020009c0000062a0000613d000014a60020009c000000710000c13d0000000001000416000000000001004b000000710000c13d0000000b01000039000000000101041a000000800010043f000014df01000041000051360001042e000014d20020009c000006410000613d000014d30020009c000000710000c13d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000002401400370000000000101043b000c00000001001d513532970000040f0000145101100198000009b40000613d0000000d0010006b0000144f0000c13d000000400100043d00000064021000390000154c03000041000000000032043500000044021000390000154d03000041000000000032043500000024021000390000002103000039000010af0000013d000014a00020009c0000064a0000613d000014a10020009c000000710000c13d0000000001000416000000000001004b000000710000c13d0000000701000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f000000010040019000000b850000613d0000152301000041000000000010043f0000002201000039000000040010043f000014e9010000410000513700010430000014c90020009c0000072c0000613d000014ca0020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000710000c13d0000000a01000039000000000201041a000014fd01000041000000800010043f0000154301000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000145102200197000000040020008c0000125d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000012820000013d000014970020009c000007360000613d000014980020009c000000710000c13d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000000f01000039000000000101041a00001451011001970000000002000411000000000021004b000007850000c13d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d0000000d04000029000000000004004b000016b20000613d000000000101043b000000000001004b000016b20000c13d0000150a01000041000000000010043f000014ef010000410000513700010430000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000002401400370000000000101043b000d00000001001d0000000401400370000000000101043b000000000010043f0000000e01000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000400300043d000014530030009c00001d7a0000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a0021002700000000000240435000014510110019800000000001304350000044f0000c13d000000400300043d000014530030009c00001d7a0000213d0000004001300039000000400010043f0000000d01000039000000000101041a0000002004300039000000a0021002700000000000240435000014510110019700000000001304350000000d0400002900000000034200a9000000000004004b000004560000613d00000000044300d9000000000042004b000002b00000c13d000027100230011a000000400300043d0000002004300039000000000024043500000000001304350000144e0030009c0000144e03008041000000400130021000001541011001c7000051360001042e000000840030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000002401400370000000000101043b000c00000001001d000014510010009c000000710000213d0000006401400370000000000101043b000014570010009c000000710000213d0000002302100039000000000032004b000000710000813d0000000402100039000000000224034f000000000202043b0000004404400370000000000404043b000b00000004001d000000240110003951352fa50000040f000a00000001001d00000000010004110000000b02000029513538fb0000040f513532800000040f0000000d010000290000000c020000290000000b0300002951353ad30000040f0000000d010000290000000c020000290000000b030000290000029f0000013d0000000001000416000000000001004b000000710000c13d513533720000040f000000000001004b0000000001000039000000010100c039000007630000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000710000c13d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145103100197000000a40030043f000000000100041400000008022002700000145102200197000000040020008c000c00000003001d00000f6e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f930000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c000d00000003001d000c00000005001d000008340000c13d0000000103000031000000200030008c00000020040000390000000004034019000008590000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c000d00000003001d000c00000005001d000008770000c13d0000000103000031000000200030008c000000200400003900000000040340190000089c0000013d0000000001000416000000000001004b000000710000c13d0000000801000039000000000101041a00001537001001980000000001000039000000010100c039000000800010043f000014df01000041000051360001042e000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000002401400370000000000101043b000b00000001001d0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c00000ff70000c13d0000000103000031000000200030008c000000200400003900000000040340190000101c0000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d513532970000040f0000145101100198000009b40000613d0000000002000411000000000021004b000010a60000c13d0000000d01000029513543790000040f0000000001000019000051360001042e000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d513532970000040f0000145100100198000009b00000c13d000000400100043d00000064021000390000150603000041000000000032043500000044021000390000150703000041000000000032043500000024021000390000002f03000039000010af0000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000000a01000039000000000201041a000014fd01000041000000800010043f0000152501000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000145102200197000000040020008c000010ba0000c13d0000000103000031000000200030008c00000020040000390000000004034019000010df0000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000014510010009c000000710000213d0000002402400370000000000202043b000014510020009c000000710000213d5135383f0000040f0000048f0000013d0000000001000416000000000001004b000000710000c13d513530c80000040f000000800010043f000014df01000041000051360001042e000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000014570010009c000000710000213d0000002302100039000000000032004b000000710000813d0000000402100039000000000224034f000000000202043b000900000002001d000014570020009c000000710000213d00000009020000290000000502200210000800240010003d0000000801200029000000000031004b000000710000213d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145101100197000d00000001001d000000a40010043f000000000100041400000008022002700000145102200197000000040020008c0000174e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000017730000013d0000000001000416000000000001004b000000710000c13d0000154701000041000000800010043f0000000101000039000000a00010043f0000154801000041000051360001042e000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000002401400370000000000101043b000c00000001001d0000000401400370000000000101043b000d00000001001d0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c00000a6c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a910000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000000710000c13d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145103100197000000a40030043f000000000100041400000008022002700000145102200197000000040020008c000c00000003001d000011550000c13d0000000103000031000000200030008c000000200400003900000000040340190000117a0000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c000d00000003001d000c00000005001d00000c210000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c460000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000002401400370000000000101043b000c00000001001d000014520010009c000000710000213d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145103100197000000a40030043f000000000100041400000008022002700000145102200197000000040020008c000b00000003001d0000136d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000013920000013d0000000001000416000000000001004b000000710000c13d0000000f01000039000000000101041a0000145101100197000000800010043f000014df01000041000051360001042e0000000001000416000000000001004b000000710000c13d0000146101000041000000800010043f000014df01000041000051360001042e000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000a01000039000000000201041a000014fd01000041000000800010043f0000151a01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000145102200197000000040020008c00000c650000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c8a0000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b51352fdd0000040f000007630000013d0000000001000416000000000001004b000000710000c13d513536870000040f000000000001004b00000000010000390000000101006039000007630000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000d00000001001d000014510010009c000000710000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000c00000002001d000000000012004b000000710000c13d0000000a01000039000000000201041a000014fd01000041000000800010043f000014fe01000041000000840010043f00000000010004110000145101100197000b00000001001d000000a40010043f000000000100041400000008022002700000145102200197000000040020008c000013b50000c13d0000000103000031000000200030008c00000020040000390000000004034019000013da0000013d0000000001000416000000000001004b000000710000c13d513530d20000040f000007630000013d000000240030008c000000710000413d0000000002000416000000000002004b000000710000c13d0000000a02000039000000000202041a000014e003000041000000800030043f000014e103000041000000840030043f000000000300041400000008022002700000145102200197000000040020008c00000ca00000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cc50000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000601043b000014510060009c000000710000213d0000000f01000039000000000201041a00001451032001970000000005000411000000000053004b000007850000c13d000000000006004b000013ec0000c13d0000147101000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000014dc01000041000000c40010043f000014dd01000041000000e40010043f000014de010000410000513700010430000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000201043b000014570020009c000000710000213d0000002301200039000000000031004b000000710000813d0000000405200039000000000154034f000000000101043b000014570010009c00001d7a0000213d0000001f0610003900001556066001970000003f0660003900001556066001970000153a0060009c00001d7a0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000000710000213d0000002002500039000000000324034f00001556041001980000001f0510018f000000a002400039000006d90000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000006d50000c13d000000000005004b000006e60000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000a01000039000000000201041a000000400400043d000014fd0100004100000000001404350000000401400039000014fe03000041000000000031043500000000010004110000145103100197000d00000004001d0000002401400039000b00000003001d0000000000310435000000000100041400000008022002700000145102200197000000040020008c00001a0a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001a340000013d0000000001000416000000000001004b000000710000c13d0000001101000039000000000101041a0000145101100197000000800010043f000014df01000041000051360001042e0000000001000416000000000001004b000000710000c13d0000000f01000039000000000201041a00001451032001970000000005000411000000000053004b000007850000c13d0000146c02200197000000000021041b00000000010004140000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000003030000390000146e0400004100000000060000195135512b0000040f0000000100200190000000710000613d0000000001000019000051360001042e000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b513534d70000040f0000144e01100197000007630000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000014510010009c000000710000213d000007060000013d000000240030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000a01000039000000000201041a000014e001000041000000800010043f000014e101000041000000840010043f000000000100041400000008022002700000145102200197000000040020008c00000dc90000c13d0000000103000031000000200030008c0000002004000039000000000403401900000dee0000013d000000440030008c000000710000413d0000000001000416000000000001004b000000710000c13d0000000401400370000000000101043b000014510010009c000000710000213d000000a001000039000000400010043f000000800000043f000000800200003951352f840000040f000000a00110008a0000144e0010009c0000144e01008041000000600110021000001542011001c7000051360001042e0000000001000416000000000001004b000000710000c13d513531a90000040f000000400200043d00000000001204350000144e0020009c0000144e020080410000004001200210000014db011001c7000051360001042e0000000001000416000000000001004b000000710000c13d000000000103001951352f720000040f000d00000001001d000c00000002001d0000000002030019000b00000003001d0000000001000411513538fb0000040f513532800000040f0000000d010000290000000c020000290000000b0300002951353ad30000040f0000000001000019000051360001042e0000000001000416000000000001004b000000710000c13d0000000001000411513538740000040f0000000d01000039000000000001041b0000000001000019000051360001042e0000147101000041000000800010043f0000002001000039000000840010043f000000a40010043f0000152401000041000000c40010043f0000150e0100004100005137000104300000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000079e0000c13d000000000006004b000007af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f620000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a000014e3060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000c405400039000014e4060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c000007da0000613d0000004001a002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e0330019700030000000103550000000100200190000018900000613d0000000d0a00002900001556053001980000001f0630018f00000000045a0019000007e40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000007e00000c13d000000000006004b000007f10000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556041001970000000001a40019000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000d040000290000000004040433000014570040009c000000710000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000043030434000014570030009c00001d7a0000213d0000001f0530003900001556055001970000003f0550003900001556055001970000000005150019000014570050009c00001d7a0000213d000000400050043f00000000053104360000000007430019000000000067004b000000710000213d00001556063001970000001f0230018f000000000054004b000020ff0000813d000000000006004b00000ebd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000082d0000c13d00000ebd0000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008480000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008440000c13d000000000006004b000008550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000104b0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a000014e7040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c0000148e0000c13d0000000001150019000000400010043f0000000b0200002900000dc50000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000088b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008870000c13d000000000006004b000008980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010570000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a000014f1040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000014bd0000c13d0000000001150019000000400010043f0000000b020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b00000e120000613d000000710000013d0000000202000039000000000023041b0000000a02000039000000000202041a000014fd03000041000000800030043f000014fe03000041000000840030043f00000000030004110000145104300197000000a40040043f000000000300041400000008022002700000145102200197000000040020008c000d00000004001d000010630000c13d0000000104000031000000200040008c00000020030000390000000003044019000010880000013d0000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008ea0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008e60000c13d000000000006004b000008f70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000109a0000613d0000001f02400039000000600420018f00000080024001bf000c00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a000014f1060000410000000c07000029000000000067043500000084064001bf0000000000560435000000c405400039000014f2060000410000000000650435000000a4054000390000000d0600002900000000006504350000000005000414000000040020008c000014ec0000c13d0000000002470019000b00000002001d000000400020043f0000000c020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b000000710000c13d0000000a02000039000000000202041a000014e0060000410000000b07000029000000000067043500000004067001bf000014e107000041000000000076043500000008022002700000145102200197000000000005004b00001a670000c13d0000000005000414000000040020008c00001b910000c13d0000000b02400029000c00000002001d000000400020043f0000000b020000290000000002020433000014510020009c000000710000213d0000000b04000039000000000404041a0000000c070000290000004405700039000014f3060000410000000000650435000014e305000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000009520000613d0000000c0100002900000040011002100000144e0040009c0000144e04008041000000c003400210000000000131019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e033001970003000000010355000000010020019000001e900000613d000000200200008a00000000052301700000001f0630018f0000000c045000290000095d0000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b000009590000c13d000000000006004b0000096a0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000c01400029000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000c040000290000000004040433000014570040009c000000710000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000054030434000014570040009c00001d7a0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000014570030009c00001d7a0000213d000000400030043f00000000034104360000000007540019000000000067004b000000710000213d000000000724016f0000001f0640018f000000000035004b000024df0000813d000000000007004b000009ac0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000009a60000c13d000000000006004b000024f50000613d0000000008030019000024eb0000013d0000000d01000029513532970000040f0000145100100198000010f60000c13d000000400100043d0000004402100039000014f0030000410000000000320435000000240210003900000018030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001472011001c700005137000104300000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009d90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009d50000c13d000000000006004b000009e60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011080000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a000014e3060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000c060000290000000000650435000000a4044000390000000d0500002900000000005404350000000004000414000000040020008c00000a120000613d0000004001a002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e0330019700030000000103550000000100200190000019520000613d0000000b0a00002900001556053001980000001f0630018f00000000045a001900000a1c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000a180000c13d000000000006004b00000a290000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556041001970000000001a40019000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000b040000290000000004040433000014570040009c000000710000213d0000000b063000290000000b034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000043030434000014570030009c00001d7a0000213d0000001f0530003900001556055001970000003f0550003900001556055001970000000005150019000014570050009c00001d7a0000213d000000400050043f00000000053104360000000007430019000000000067004b000000710000213d00001556063001970000001f0230018f000000000054004b000021090000813d000000000006004b00000ebd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000a650000c13d00000ebd0000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a800000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a7c0000c13d000000000006004b00000a8d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011140000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a0000150f040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c00000d7e0000613d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000b0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000ac20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000abe0000c13d000000000006004b00000acf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000164d0000c13d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ada0000c13d0000230d0000013d0000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000af30000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000aef0000c13d000000000006004b00000b000000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011200000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a000014e3060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000c405400039000014f2060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000b2b0000613d0000004001a002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e03300197000300000001035500000001002001900000195e0000613d0000000d0a00002900001556053001980000001f0630018f00000000045a001900000b350000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000b310000c13d000000000006004b00000b420000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556041001970000000001a40019000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000d040000290000000004040433000014570040009c000000710000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000043030434000014570030009c00001d7a0000213d0000001f0530003900001556055001970000003f0550003900001556055001970000000005150019000014570050009c00001d7a0000213d000000400050043f00000000053104360000000007430019000000000067004b000000710000213d00001556063001970000001f0230018f000000000054004b000021130000813d000000000006004b00000ebd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000b7e0000c13d00000ebd0000013d000000800050043f000000000003004b0000112c0000c13d0000155701600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a000000800100003951352f930000040f0000002001000039000000400200043d000d00000002001d0000000002120436000000800100003951352f400000040f0000000d0200002900000000012100490000144e0010009c0000144e0100804100000060011002100000144e0020009c0000144e020080410000004002200210000000000121019f000051360001042e0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bb40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bb00000c13d000000000006004b00000bc10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000113d0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000710000c13d000000000002004b0000151c0000c13d0000150201000041000000000010043f0000000001000411000000040010043f0000151b01000041000000240010043f000014670100004100005137000104300000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bf00000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bec0000c13d000000000006004b00000bfd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011490000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a000014ea040000410000000d05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000015c00000c13d0000000001150019000000400010043f0000000d02000029000000000202043300000e120000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c350000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c310000c13d000000000006004b00000c420000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011de0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a000014ea040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000015ef0000c13d0000000001150019000000400010043f0000000b02000029000000000202043300000e120000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c790000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c750000c13d000000000006004b00000c860000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011ea0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000710000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d000000000001004b0000161e0000c13d0000150201000041000000000010043f0000000001000411000000040010043f0000151a01000041000000240010043f000014670100004100005137000104300000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000cb40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000cb00000c13d000000000006004b00000cc10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011f60000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a00001508060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000cee0000613d0000004001a002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e03300197000300000001035500000001002001900000197a0000613d0000000d0a00002900001556053001980000001f0630018f00000000045a001900000cf80000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000cf40000c13d000000000006004b00000d050000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556011001970000000002a10019000000000012004b00000000010000390000000101004039000014570020009c00001d7a0000213d000000010010019000001d7a0000c13d000000400020043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000d010000290000000001010433000014570010009c000000710000213d0000000d033000290000000d011000290000001f04100039000000000034004b0000000005000019000014e605008041000014e604400197000014e606300197000000000764013f000000000064004b0000000004000019000014e604004041000014e60070009c000000000405c019000000000004004b000000710000c13d0000000015010434000014570050009c00001d7a0000213d00000005045002100000003f0640003900001509066001970000000006260019000014570060009c00001d7a0000213d000000400060043f00000000005204350000000004140019000000000034004b000000710000213d000000000005004b00000f5e0000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000d390000413d00000f5e0000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d530000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d4f0000c13d000000000006004b00000d600000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012020000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a0000150b040000410000000b05000029000000000045043500000084041001bf0000000000340435000000c4031000390000000c040000290000000000430435000000a4031000390000000d0400002900000000004304350000000003000414000000040020008c000016250000c13d0000000001150019000000400010043f0000000b0200002900000e0c0000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d960000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d920000c13d000000000006004b00000da30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000120e0000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a000014e7040000410000000d05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000016540000c13d0000000001150019000000400010043f0000000d020000290000000002020433000014510020009c000000710000213d00000e120000013d0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ddd0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000dd90000c13d000000000006004b00000dea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012510000613d0000001f01400039000000600110018f00000080021001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a0000150b040000410000000d05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000016830000c13d0000000001150019000000400010043f0000000d020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000710000c13d00000000002104350000004001100210000014db011001c7000051360001042e0000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e2a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e260000c13d000000000006004b00000e370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012980000613d0000001f02400039000000600420018f00000080024001bf000d00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a000014e3060000410000000d0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000e640000613d0000004001a002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e0330019700030000000103550000000100200190000019db0000613d0000000d0a00002900001556053001980000001f0630018f00000000045a001900000e6e0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000e6a0000c13d000000000006004b00000e7b0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556041001970000000001a40019000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000d040000290000000004040433000014570040009c000000710000213d0000000d063000290000000d034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000043030434000014570030009c00001d7a0000213d0000001f0530003900001556055001970000003f0550003900001556055001970000000005150019000014570050009c00001d7a0000213d000000400050043f00000000053104360000000007430019000000000067004b000000710000213d00001556063001970000001f0230018f000000000054004b0000211d0000813d000000000006004b00000ebd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000eb70000c13d000000000002004b000021330000613d0000000007050019000021290000013d0000144e0030009c0000144e03008041000000c001300210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ed50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ed10000c13d000000000006004b00000ee20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012a40000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b05000039000000000505041a00001508060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000c060000290000000000650435000000a4044000390000000d0500002900000000005404350000000004000414000000040020008c00000f0e0000613d0000004001a002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e0330019700030000000103550000000100200190000019e70000613d0000000b0a00002900001556053001980000001f0630018f00000000045a001900000f180000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000f140000c13d000000000006004b00000f250000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556011001970000000002a10019000000000012004b00000000010000390000000101004039000014570020009c00001d7a0000213d000000010010019000001d7a0000c13d000000400020043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000b010000290000000001010433000014570010009c000000710000213d0000000b033000290000000b011000290000001f04100039000000000034004b0000000005000019000014e605008041000014e604400197000014e606300197000000000764013f000000000064004b0000000004000019000014e604004041000014e60070009c000000000405c019000000000004004b000000710000c13d0000000015010434000014570050009c00001d7a0000213d00000005045002100000003f0640003900001509066001970000000006260019000014570060009c00001d7a0000213d000000400060043f00000000005204350000000004140019000000000034004b000000710000213d000000000005004b00000f5e0000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000f590000413d000000400100043d000d00000001001d51352f840000040f00000b960000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f690000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f820000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f7e0000c13d000000000006004b00000f8f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012b00000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000710000c13d000000000002004b0000124d0000613d0000000a02000039000000000202041a000014e0040000410000000b05000029000000000045043500000084011001bf000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c00001aec0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000b010000290000000001010433000c00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000b00000001001d000014640100004100000000001004430000000c01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000000d0200002900000000002104350000004401300039000015000200004100000000002104350000150101000041000000000013043500000004013000390000000b020000290000000000210435000d00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c00000ff00000613d0000000d020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000c020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000020540000613d0000000d01000029000014570010009c00001d7a0000213d0000000d01000029000000400010043f0000000001000019000051360001042e0000144e0010009c0000144e01008041000000c001100210000014e2011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000100b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010070000c13d000000000006004b000010180000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012bc0000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000014510020009c000000710000213d0000000b03000039000000000303041a000014e7040000410000000c05000029000000000045043500000084041001bf0000000000340435000000c403100039000014e8040000410000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c0000189c0000c13d0000000001150019000a00000001001d000000400010043f0000000c010000290000000001010433000014510010009c000000710000213d000000000001004b00001bc20000c13d00001471010000410000000a03000029000000000013043500000004013001bf000000200200003900000000002104350000004401300039000014f00200004100000000002104350000002401300039000000180200003900001e8c0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010520000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000105e0000c13d0000230d0000013d0000144e0030009c0000144e03008041000000c001300210000014ff011001c7513551300000040f00000060031002700000144e04300197000000200040008c000000200300003900000000030440190000001f0630018f000000200730019000000080057001bf000010770000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010730000c13d000000000006004b000010840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f00030000000103550000000100200190000012c80000613d0000001f02300039000000600220018f00000080052001bf000000400050043f000000200040008c000000710000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000710000c13d000000000002004b000018e30000c13d0000150201000041000000000010043f0000000d010000290000188b0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010a10000c13d0000230d0000013d000000400100043d00000064021000390000153b03000041000000000032043500000044021000390000153c030000410000000000320435000000240210003900000023030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001475011001c700005137000104300000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010ce0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010ca0000c13d000000000006004b000010db0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012e20000613d0000001f01400039000000600110018f00000080021001bf000c00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000710000c13d000000000002004b000018fa0000c13d0000150201000041000000000010043f0000000001000411000000040010043f0000152501000041000000240010043f000014670100004100005137000104300000000a01000039000000000201041a000000400b00043d000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000012ee0000c13d0000000103000031000000200030008c000000200400003900000000040340190000131a0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000110f0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000111b0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011270000c13d0000230d0000013d000d00000006001d000c00000005001d000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d0000000d02000029000000020020008c000017290000813d000000a00100003900000b8d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011440000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011500000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011690000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011650000c13d000000000006004b000011760000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013f80000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000000710000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000710000c13d000000000002004b0000124d0000613d0000000a02000039000000000202041a000014e0040000410000000b05000029000000000045043500000084011001bf000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c00001b2d0000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f0000000b010000290000000001010433000c00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000b00000001001d000014640100004100000000001004430000000c01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d0000000d0000006b00000000010000390000000101006039000000400300043d000000640230003900000000001204350000004401300039000015550200004100000000002104350000150101000041000000000013043500000004013000390000000b020000290000000000210435000d00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c000011d90000613d0000000d020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000c020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000020610000613d0000000d01000029000000000200001951352f930000040f0000000001000019000051360001042e0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011e50000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011f10000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011fd0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012090000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012150000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000122e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000122a0000c13d000000000006004b0000123b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014760000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000710000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d000000000001004b000019aa0000c13d0000150201000041000000000010043f0000000c010000290000188b0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012580000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012710000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000126d0000c13d000000000006004b0000127e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000014820000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000710000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000710000c13d000000000003004b000019c40000c13d0000150201000041000000000010043f0000000001000411000000040010043f0000154301000041000000240010043f000014670100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000129f0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012ab0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012b70000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012c30000c13d0000230d0000013d0000001f0540018f0000145006400198000000400200043d0000000003620019000012d30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000012cf0000c13d000000000005004b000012e00000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000013043500000060014002100000231b0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012e90000c13d0000230d0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7000c0000000b001d513551300000040f0000000c0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013090000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013050000c13d000000000006004b000013160000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000171d0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000c00000002001d000014570020009c00001d7a0000213d000000010010019000001d7a0000c13d0000000c01000029000000400010043f000000200030008c000000710000413d00000000020b0433000014510020009c000000710000213d0000000b01000039000000000101041a0000000c06000029000000440460003900001505050000410000000000540435000014e304000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c00001c720000c13d000000030100036700001c820000013d000000000020043f0000000501000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b0000000d02000029000000000020043f000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b000000000201041a00001557022001970000000c03000029000000000232019f000000000021041b000000400100043d00000000003104350000144e0010009c0000144e01008041000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000145a011001c70000800d0200003900000003030000390000150c0400004100000000050004110000000d060000290000071d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013810000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000137d0000c13d000000000006004b0000138e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017360000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000710000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000710000c13d000000000003004b000013e80000613d0000000c030000290000145203300197000027110030008c00001ce00000413d0000147103000041000000000031043500000084032001bf00000020040000390000000000430435000000e40320003900001473040000410000000000430435000000c40320003900001474040000410000000000430435000000a4022000390000002a030000390000000000320435000000400110021000001475011001c700005137000104300000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000013c90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000013c50000c13d000000000006004b000013d60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000017420000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000710000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d000000000001004b00001b5b0000c13d0000150201000041000000000010043f0000000b010000290000188b0000013d0000146c02200197000000000262019f000000000021041b00000000010004140000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000003030000390000146e040000410000071d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013ff0000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000014180000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000014140000c13d000000000006004b000014250000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018130000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000710000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000710000c13d000000000002004b000018880000613d0000000b020000290000145202200197000b00000002001d000027110020008c00001d050000413d00001471020000410000000904000029000000000024043500000084021001bf00000020030000390000000000320435000000e40210003900001473030000410000000000320435000000c40210003900001474030000410000000000320435000000a4011000390000002a020000390000000000210435000000400140021000001475011001c700005137000104300000000002000411000000000012004b0000181f0000c13d0000000c01000029000000000010043f0000000401000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b000000000201041a0000146c022001970000000d022001af000000000021041b0000000c01000029513532970000040f0000145105100198000009b40000613d00000000010004140000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000004030000390000154b040000410000000d060000290000000c070000295135512b0000040f0000000100200190000000710000613d000007200000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000147d0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014890000c13d0000230d0000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000b0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014a50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014a10000c13d000000000006004b000014b20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018cb0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000710000413d000008750000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000b0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014d40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014d00000c13d000000000006004b000014e10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018d70000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000008b80000813d000000710000013d0000144e0050009c0000144e05008041000000c0015002100000004003700210000000000131019f00001472011001c7513551300000040f0000000c0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015030000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014ff0000c13d000000000006004b000015100000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018ee0000613d0000001f02400039000000600420018f0000000002b40019000b00000002001d000000400020043f000000200030008c000009180000813d000000710000013d000000c002100039000000400020043f0000000b020000390000000d040000290000000000240435000000a0041000390000151c0200004100000000002404350000000c02000039000000000202041a000000ff002001900000196a0000c13d000c00000004001d0000000a02000039000000000202041a000000400b00043d000014e00400004100000000004b04350000000404b00039000014e1050000410000000000540435000000000400041400000008022002700000145102200197000000040020008c000015640000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f000014e9011001c7000b0000000b001d513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0b0000290000000b05700029000015510000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000154d0000c13d000000000006004b0000155e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ced0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000014570020009c00001d7a0000213d000000010010019000001d7a0000c13d000000400020043f000000200030008c000000710000413d00000000010b0433000b00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000000002000410000000000021043500000044013000390000151e0200004100000000002104350000151f0100004100000000001304350000000401300039000800000001001d0000000a020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000b02000029000000040020008c000015aa0000613d00000009020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000b020000295135512b0000040f00000060031002700001144e0030019d000300000001035500000001002001900000224f0000613d0000000901000029000014570010009c00001d7a0000213d0000000903000029000000400030043f0000000a01000039000000000201041a000014e0010000410000000000130435000014e10100004100000008030000290000000000130435000000000100041400000008022002700000145102200197000000040020008c000022690000c13d0000000103000031000000200030008c00000020040000390000000004034019000022930000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000d0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015d70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015d30000c13d000000000006004b000015e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000196e0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000710000413d00000c1e0000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000b0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016060000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016020000c13d000000000006004b000016130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019860000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000c620000813d000000710000013d51354c570000040f00000004010000390000000201100367000000000101043b513543790000040f0000000001000019000051360001042e0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000b0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000163c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016380000c13d000000000006004b000016490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019920000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d800000813d000000710000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000d0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000166b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016670000c13d000000000006004b000016780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000199e0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000dc40000813d000000710000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f0000000d0b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000169a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016960000c13d000000000006004b000016a70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019b80000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000e0b0000813d000000710000013d0000000801000039000000000201041a00000008012002700000145101100198000016ba0000c13d000000ff0020019000000000010000190000146101006041000000400200043d0000002003200039000000000043043500000000001204350000144e0020009c0000144e02008041000000400120021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f00001462011001c70000800d02000039000000010300003900001463040000415135512b0000040f0000000100200190000000710000613d0000000804000039000000000104041a00001468011001970000000d0300002900000008023002100000146902200197000000000112019f00000001011001bf000000000014041b000000000003004b000007200000613d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000007200000613d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d0000002401300039000002d102000039000000000021043500001466010000410000000000130435000c00000003001d00000004013000390000000002000410000000000021043500000000010004140000000d02000029000000040020008c000017160000613d0000000c020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001467011001c70000000d020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000007200000613d0000000c01000029000014570010009c00001d7a0000213d0000000c01000029000000400010043f0000000001000019000051360001042e0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017240000c13d0000230d0000013d000000000101043b00000000030000190000000c050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b0000172c0000413d000000c00120003900000b8d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000173d0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017490000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000017620000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000175e0000c13d000000000006004b0000176f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019fe0000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c000000710000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d000000000001004b000010960000613d000000090000006b000007200000613d000000000a040019000d00000000001d0000000d01000029000000050110021000000008011000290000000201100367000000000101043b000b00000001001d0000000a01000039000000000201041a000014e00100004100000000001a04350000000401a00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c0000179c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000017c70000013d0000144e00a0009c0000144e0300004100000000030a401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7000c0000000a001d513551300000040f0000000c0a00002900000060031002700000144e03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000017b60000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000017b20000c13d0000001f07400190000017c30000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000213a0000613d0000001f01400039000000600110018f0000000001a10019000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d00000000020a0433000014510020009c000000710000213d0000000b01000039000000000101041a000a00000001001d00001464010000410000000000100443000c00000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b0000000c03000029000000710000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a00039000015140200004100000000002104350000002401a000390000000b020000290000000000210435000015010100004100000000001a04350000000401a000390000000a0200002900000000002104350000000001000414000000040030008c0000180a0000613d0000144e00a0009c0000144e0200004100000000020a401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000c0000000a001d5135512b0000040f0000000c0a00002900000060031002700001144e0030019d00030000000103550000000100200190000021460000613d0000145700a0009c00001d7a0000213d0000004000a0043f0000000d020000290000000102200039000d00000002001d000000090020006c000017850000413d000007200000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000181a0000c13d0000230d0000013d000000000010043f0000000501000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b00000000020004110000145102200197000b00000002001d000000000020043f000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b000000000101041a000000ff00100190000014520000c13d0000000801000039000000000101041a00001537001001980000184a0000613d00000008021002700000145102200198000018480000c13d000000ff00100190000000000200001900001461020060410000000b0020006b000014520000613d000000400100043d00000064021000390000154903000041000000000032043500000044021000390000154a03000041000000000032043500000024021000390000003d03000039000010af0000013d0000144e0010009c0000144e01008041000000c001100210000014ff011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000018680000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000018640000c13d000000000006004b000018750000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001a5b0000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000710000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000710000c13d000000000002004b00001d160000c13d0000150201000041000000000010043f0000000a01000029000000040010043f000014fe01000041000000240010043f000014670100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018970000c13d0000230d0000013d0000144e0030009c0000144e03008041000000c0013002100000004003500210000000000131019f00001472011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c05700029000018b20000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b000018ae0000c13d000000000006004b000018bf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b1a0000613d0000001f01400039000000600110018f0000000c01100029000a00000001001d000000400010043f000000200030008c000010390000813d000000710000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018d20000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018de0000c13d0000230d0000013d00000004020000390000000202200367000000000302043b00000000020004140000000006000411000000040060008c00001b260000c13d000014570040009c00001d7a0000213d000000010200003900001c100000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018f50000c13d0000230d0000013d0000000a02000039000000000202041a000000ff0020019000001e810000c13d00001526040000410000000c050000290000000000450435000000000400041400000008022002700000145102200197000000040020008c00001c420000c13d0000000c01100029000b00000001001d000000400010043f0000000c010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d000000000001004b00001e800000c13d0000000a01000039000000000201041a000014e0010000410000000b04000029000000000014043500000004014001bf000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c00001ea80000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000b021000290000002001000039000c00000002001d000000400020043f0000000b020000290000000002020433000014510020009c000000710000213d0000000b03000039000000000303041a000014ea040000410000000c05000029000000000045043500000004045001bf0000000000340435000000440350003900001528040000410000000000430435000000240350003900000000000304350000000003000414000000040020008c0000209e0000c13d0000000c02100029000b00000002001d000000400020043f0000000c020000290000000002020433000c00000002001d000000010020003a000002b00000413d0000000a02000039000000000202041a000014e0030000410000000b04000029000000000034043500000004034001bf000014e1040000410000000000430435000000000300041400000008022002700000145102200197000000040020008c000021530000c13d0000000b01100029000000400010043f000021820000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019590000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019650000c13d0000230d0000013d0000151d01000041000000000010043f000014ef0100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019750000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019810000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000198d0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019990000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019a50000c13d0000230d0000013d0000000d03000029000000080130021000001469011001970000000a04000039000000000204041a0000150302200197000000000112019f000000000014041b000000000003004b000007200000c13d0000150401000041000000000010043f000014ef0100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019bf0000c13d0000230d0000013d0000000a03000039000000000303041a000000ff0430018f0000000d0000006b00001b640000c13d000000000004004b00001b770000613d00001557023001970000000a03000039000000000023041b00000000020004110000000000210435000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000145a011001c70000800d0200003900000001030000390000154504000041000002380000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019e20000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019ee0000c13d0000230d0000013d000000000004004b0000000002000019000019f70000613d00000000020104330000000301400210000015580110027f0000155801100167000000000112016f0000000102400210000000000121019f00001d740000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a050000c13d0000230d0000013d0000000d030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001467011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0570002900001a230000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b00001a1f0000c13d000000000006004b00001a300000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b850000613d0000001f01400039000000600110018f0000000d02100029000000000012004b00000000010000390000000101004039000c00000002001d000014570020009c00001d7a0000213d000000010010019000001d7a0000c13d0000000c01000029000000400010043f000000200030008c000000710000413d0000000d010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000710000c13d000000000001004b000013e80000613d0000000a01000039000000000201041a000014e0010000410000000c0400002900000000001404350000000401400039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c00001fd60000c13d0000002004000039000020000000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a620000c13d0000230d0000013d0000000005000414000000040020008c00001bc80000c13d0000000b02400029000c00000002001d000000400020043f0000000b020000290000000002020433000014510020009c000000710000213d0000000b04000039000000000404041a0000000c070000290000004405700039000014f206000041000000000065043500000024057000390000000d060000290000000000650435000014e3050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001a8f0000613d0000000c0100002900000040011002100000144e0040009c0000144e04008041000000c003400210000000000131019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e033001970003000000010355000000010020019000001e9c0000613d00001556053001980000001f0630018f0000000c0450002900001a990000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b00001a950000c13d000000000006004b00001aa60000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001556041001970000000c01400029000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000c040000290000000004040433000014570040009c000000710000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000043030434000014570030009c00001d7a0000213d0000001f0530003900001556055001970000003f0550003900001556055001970000000005150019000014570050009c00001d7a0000213d000000400050043f00000000053104360000000007430019000000000067004b000000710000213d00001556063001970000001f0230018f000000000054004b000024fe0000813d000000000006004b00001ae80000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001ae20000c13d000000000002004b000025140000613d00000000070500190000250a0000013d0000144e0010009c0000144e01008041000000c0011002100000004003500210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001b020000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001afe0000c13d000000000006004b00001b0f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001bf90000613d0000001f01400039000000600110018f0000000b01100029000000400010043f000000200030008c00000fb50000813d000000710000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b210000c13d0000230d0000013d0000144e0020009c0000144e02008041000000c001200210000000000003004b00001c050000c13d000000000200041100001c090000013d0000144e0010009c0000144e01008041000000c0011002100000004003500210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001b430000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001b3f0000c13d000000000006004b00001b500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001cf90000613d0000001f01400039000000600110018f0000000b01100029000000400010043f000000200030008c000000710000413d0000119c0000013d0000000c0000006b0000001101006039000000100100c039000000000201041a0000146c022001970000000d022001af000000000021041b0000000001000019000051360001042e000000000004004b00001b770000c13d000015570230019700000001022001bf0000000a03000039000000000023041b00000000020004110000000000210435000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000145a011001c70000800d0200003900000001030000390000154404000041000002380000013d0000147103000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900001546040000410000000000430435000000a40220003900000014030000390000000000320435000000400110021000001472011001c700005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b8c0000c13d0000230d0000013d0000144e0050009c0000144e05008041000000c0015002100000000b03000029000b00000003001d0000004003300210000000000113019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001ba90000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001ba50000c13d000000000006004b00001bb60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001db20000613d0000001f02400039000000600220018f0000000b02200029000c00000002001d000000400020043f000000200030008c000009310000813d000000710000013d0000000d0000006b00001dbe0000c13d000014ee01000041000000000010043f000014ef0100004100005137000104300000144e0050009c0000144e05008041000000c0015002100000000b03000029000b00000003001d0000004003300210000000000113019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001be00000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001bdc0000c13d000000000006004b00001bed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e020000613d0000001f02400039000000600220018f0000000b02200029000c00000002001d000000400020043f000000200030008c00001a6d0000813d000000710000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c000000c13d0000230d0000013d0000146d011001c70000800902000039000000000400041100000000050000195135512b0000040f000300000001035500000060031002700001144e0030019d0000144e0430019800001c340000613d000000400500043d0000001f034000390000153d033001970000003f033000390000153e063001970000000003560019000000000063004b00000000060000390000000106004039000014570030009c00001d7a0000213d000000010060019000001d7a0000c13d000000400030043f000000000645043600001556054001980000001f0440018f000000000356001900001c270000613d000000000701034f000000007807043c0000000006860436000000000036004b00001c230000c13d000000000004004b00001c340000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000001c3b0000613d00000001010000390000000902000039000000000012041b0000000001000019000051360001042e000000400100043d00000044021000390000153f03000041000000000032043500000024021000390000000f03000039000009ba0000013d0000144e0040009c0000144e04008041000000c0014002100000000c030000290000004003300210000000000131019f000014ef011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001c590000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001c550000c13d000000000006004b00001c660000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001e1b0000613d0000001f01400039000000600110018f0000000c01100029000b00000001001d000000400010043f000000200030008c000019090000813d000000710000013d0000000c030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001472011001c7513551300000040f00000060031002700001144e0030019d0000144e033001970003000000010355000000010020019000001e270000613d000000200200008a00000000052301700000001f0630018f0000000c0450002900001c8d0000613d000000000701034f0000000c08000029000000007907043c0000000008980436000000000048004b00001c890000c13d000000000006004b00001c9a0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000c01400029000000000041004b00000000040000390000000104004039000014570010009c00001d7a0000213d000000010040019000001d7a0000c13d000000400010043f000014e50030009c000000710000213d000000200030008c000000710000413d0000000c040000290000000004040433000014570040009c000000710000213d0000000c063000290000000c034000290000001f04300039000000000064004b0000000005000019000014e605008041000014e604400197000014e607600197000000000874013f000000000074004b0000000004000019000014e604004041000014e60080009c000000000405c019000000000004004b000000710000c13d0000000054030434000014570040009c00001d7a0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000014570030009c00001d7a0000213d000000400030043f00000000034104360000000007540019000000000067004b000000710000213d000000000724016f0000001f0640018f000000000035004b000023200000813d000000000007004b00001cdc0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001cd60000c13d000000000006004b000023360000613d00000000080300190000232c0000013d0000000d0000006b00001e330000c13d0000147103000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900001470040000410000000000430435000000a402200039000000190300003900001b810000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001cf40000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001d000000c13d0000230d0000013d0000000d0000006b00001e4d0000c13d00001471020000410000000904000029000000000024043500000084021001bf00000020030000390000000000320435000000c40210003900001539030000410000000000320435000000a4011000390000001b020000390000000000210435000000400140021000001472011001c700005137000104300000000d020000290000001f022000390000155602200197000a00000002001d0000003f0220003900001556022001970000000902200029000014570020009c00001d7a0000213d000000400020043f0000000d02000029000000090500002900000000002504350000000b02000029000000000020007c000000710000213d0000000d0200002900001556042001980008001f00200193000000a001100039000700000004001d000b00000001001d00000000014100190000000c020000290000002002200039000600000002001d000000020220036700001d380000613d000000000402034f0000000b05000029000000004604043c0000000005650436000000000015004b00001d340000c13d000000080000006b00001d460000613d000000070220036000000008040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000b020000290000000d0120002900000000000104350000000a01000039000000000201041a000000400400043d000014e0010000410000000000140435000c00000004001d0000000401400039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c00001f5e0000c13d000000200400003900001f880000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001d5f0000c13d000000020020006c00001d710000813d00000002020000290000000302200210000000f80220018f000015580220027f000015580220016700000005033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf000000000010041b00000003010000290000000001010433000500000001001d000014570010009c00001d800000a13d0000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000000101000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000003cc0000c13d000000200010008c00001d9e0000413d0000000102000039000000000020043f00000005030000290000001f0230003900000005022002700000145b0220009a000000200030008c0000145c020040410000001f0110003900000005011002700000145b0110009a000000000012004b00001d9e0000813d000000000002041b0000000102200039000000000012004b00001d9a0000413d00000005010000290000001f0010008c00001e0e0000a13d0000000101000039000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d000000200200008a0000000502200180000000000101043b00001f0a0000c13d000000200300003900001f170000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001db90000c13d0000230d0000013d0000000d0010006c00001e7d0000c13d0000000a01000039000000000201041a000014e0010000410000000a030000290000000001130436000d00000001001d00000004013001bf000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00001ed90000c13d00000020010000390000000d02000029000000400020043f0000000a020000290000000002020433000014510020009c000000710000213d0000000b03000039000000000303041a000014ea040000410000000d05000029000000000045043500000004045001bf00000000003404350000004403500039000014eb04000041000000000043043500000024035000390000000b0400002900000000004304350000000003000414000000040020008c000020cf0000c13d0000000d01100029000000400010043f0000000d010000290000000001010433000d00000001001d000014ec01000041000000000010044300000000010004140000144e0010009c0000144e01008041000000c001100210000014ed011001c70000800b02000039513551300000040f000000010020019000002f260000613d000000000101043b0000144e0010009c000022ed0000a13d000000400100043d00000064021000390000153403000041000000000032043500000044021000390000153503000041000000000032043500000024021000390000002603000039000010af0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e090000c13d0000230d0000013d000000050000006b000000000100001900001e130000613d0000000101000029000000000101043300000005040000290000000302400210000015580220027f0000155802200167000000000121016f0000000102400210000000000121019f00001f250000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e220000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e2e0000c13d0000230d0000013d000000c004200039000000400040043f0000000d050000290000000000510435000000a00120003900000000003104350000000c01000029000000a001100210000000000151019f0000000d02000039000000000012041b000000400100043d00000000003104350000144e0010009c0000144e01008041000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000145a011001c70000800d0200003900000002030000390000146b040000410000071d0000013d000000c002100039000000400020043f0000000d0200002900000009030000290000000000230435000000a0021000390000000b01000029000a00000002001d00000000001204350000000c01000029000000000010043f0000000e01000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d0000000902000029000000000202043300001451022001970000000a030000290000000003030433000000a003300210000000000223019f000000000101043b000000000021041b000000400100043d0000000b0200002900000000002104350000144e0010009c0000144e01008041000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000145a011001c70000800d02000039000000030300003900001538040000410000000c050000290000136b0000013d00000000010000190000000a02000029000007640000013d000c000b0000002d0000000c0300002900000044013000390000152702000041000000000021043500000024013000390000001002000039000000000021043500001471010000410000000000130435000000040130003900000020020000390000000000210435000000400130021000001472011001c700005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e970000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea30000c13d0000230d0000013d0000144e0010009c0000144e01008041000000c0011002100000000b03000029000b00000003001d0000004003300210000000000113019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001ec00000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001ebc0000c13d000000000006004b00001ecd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000206e0000613d0000001f01400039000000600110018f0000000b02100029000c00000002001d000000400020043f000000200030008c000019270000813d000000710000013d0000144e0010009c0000144e01008041000000c0011002100000000a03000029000a00000003001d0000004003300210000000000113019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001ef10000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001eed0000c13d000000000006004b00001efe0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000207a0000613d0000001f01400039000000600110018f0000000a02100029000d00000002001d000000400020043f000000200030008c00001dd10000813d000000710000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001f100000c13d000000050020006c00001f220000813d00000005020000290000000302200210000000f80220018f000015580220027f000015580220016700000003033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000102000039000000000012041b0000000b010000290000000001010433000500000001001d000014570010009c00001d7a0000213d0000000601000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000003cc0000c13d000000200010008c00001f4a0000413d0000000602000039000000000020043f00000005030000290000001f0230003900000005022002700000145d0220009a000000200030008c0000145e020040410000001f0110003900000005011002700000145d0110009a000000000012004b00001f4a0000813d000000000002041b0000000102200039000000000012004b00001f460000413d00000005010000290000001f0010008c000020470000a13d0000000601000039000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d000000200200008a0000000502200180000000000101043b000021e30000c13d0000002003000039000021f00000013d0000000c030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001f770000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001f730000c13d000000000006004b00001f840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020860000613d0000001f01400039000000600210018f0000000c01200029000000000021004b00000000020000390000000102004039000014570010009c00001d7a0000213d000000010020019000001d7a0000c13d000000400010043f000000200030008c000000710000413d0000000c010000290000000001010433000c00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000500000001001d000014640100004100000000001004430000000c01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000014e402000041000000000021043500001515010000410000000001150436000400000001001d00000004015000390000000502000029000000000021043500000024015000390000000000010435000000090100002900000000010104330000008402500039000000000012043500001556041001970000001f0310018f000900000005001d000000a4025000390000000b0020006b000023dc0000813d000000000004004b00001fd20000613d0000000b063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001fcc0000c13d000000000003004b000023f30000613d0000000005020019000023e80000013d0000000c030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900001fef0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00001feb0000c13d000000000006004b00001ffc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020920000613d0000001f01400039000000600110018f0000000c01100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d0000000c010000290000000001010433000d00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000c00000001001d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000015050200004100000000002104350000151501000041000000000015043500000004015000390000000c020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500001556041001970000001f0310018f000c00000005001d000000a402500039000000a10020008c000024480000413d000000000004004b000020420000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c0000203c0000c13d000000000003004b0000245e0000613d000000a0040000390000000005020019000024540000013d000000050000006b00000000010000190000204c0000613d0000000801000029000000000101043300000005040000290000000302400210000015580220027f0000155802200167000000000121016f0000000102400210000000000121019f000021fe0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000205c0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020690000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020750000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020810000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000208d0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020990000c13d0000230d0000013d0000144e0030009c0000144e03008041000000c0013002100000000c03000029000c00000003001d0000004003300210000000000113019f00001472011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c05700029000020b60000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b000020b20000c13d000000000006004b000020c30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000022370000613d0000001f01400039000000600110018f0000000c02100029000b00000002001d000000400020043f000000200030008c0000193d0000813d000000710000013d0000144e0030009c0000144e03008041000000c0013002100000000d03000029000d00000003001d0000004003300210000000000113019f00001472011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000020e70000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000020e30000c13d000000000006004b000020f40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000022430000613d0000001f01400039000000600110018f0000000d01100029000000400010043f000000200030008c00001de70000813d000000710000013d0000000007650019000000000006004b000021260000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000021040000c13d000021260000013d0000000007650019000000000006004b000021260000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b0000210e0000c13d000021260000013d0000000007650019000000000006004b000021260000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000021180000c13d000021260000013d0000000007650019000000000006004b000021260000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000021220000c13d000000000002004b000021330000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000d00000003001d000000000223043600000b950000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021410000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000214e0000c13d0000230d0000013d0000144e0030009c0000144e03008041000000c0013002100000000b03000029000b00000003001d0000004003300210000000000113019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b057000290000216b0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b000021670000c13d000000000006004b000021780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000022f60000613d0000001f01400039000000600110018f0000000b01100029000000400010043f000000200030008c000000710000413d0000000b010000290000000001010433000b00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d0000000c010000290000000102100039000000400300043d0000006401300039000800000002001d000000000021043500000044013000390000152802000041000000000021043500001521010000410000000001130436000900000001001d00000004013000390000000a020000290000000000210435000c00000003001d0000002401300039000000000001043500000000010004140000000b02000029000000040020008c000021c00000613d0000000c020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000b020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000025c20000613d0000000c01000029000014570010009c00001d7a0000213d0000000c01000029000000400010043f000014560010009c00001d7a0000213d0000000901000029000000400010043f0000000c010000290000000000010435513530d20000040f000b00000001001d000000000001004b000021d60000613d513535b00000040f000a00000001001d513531a90000040f0000000a0110006b000002b00000413d0000000b0010006c000027920000813d0000000d0000006b000026a30000c13d000000400100043d000000440210003900001536030000410000000000320435000014710200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000009bf0000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000b0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000021e90000c13d000000050020006c000021fb0000813d00000005020000290000000302200210000000f80220018f000015580220027f00001558022001670000000b033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000602000039000000000012041b00000009010000290000000001010433000b00000001001d000014570010009c00001d7a0000213d0000000701000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000003cc0000c13d000000200010008c000022230000413d0000000702000039000000000020043f0000000b030000290000001f0230003900000005022002700000145f0220009a000000200030008c00001460020040410000001f0110003900000005011002700000145f0110009a000000000012004b000022230000813d000000000002041b0000000102200039000000000012004b0000221f0000413d0000000b010000290000001f0010008c0000225c0000a13d0000000701000039000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d000000200200008a0000000b02200180000000000101043b0000234a0000c13d0000002003000039000023570000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000223e0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000224a0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022570000c13d0000230d0000013d0000000b0000006b0000000001000019000022610000613d000000060100002900000000010104330000000b040000290000000302400210000015580220027f0000155802200167000000000121016f0000000102400210000000000121019f000023650000013d00000009030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000022820000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b0000227e0000c13d000000000006004b0000228f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023020000613d0000001f01400039000000600110018f0000000901100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d00000009010000290000000001010433000b00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000014e80200004100000000002104350000151f0100004100000000001304350000000401300039000800000001001d0000000a020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000b02000029000000040020008c000022d70000613d00000009020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000b020000295135512b0000040f00000060031002700001144e0030019d000300000001035500000001002001900000270b0000613d0000000901000029000014570010009c00001d7a0000213d0000000903000029000000400030043f0000000a01000039000000000201041a000014e0010000410000000000130435000014e10100004100000008030000290000000000130435000000000100041400000008022002700000145102200197000000040020008c000027180000c13d0000000103000031000000200030008c00000020040000390000000004034019000027420000013d0000000d020000290000144e0220019700000000012100490000144e0010009c000002b00000213d000000400200043d000a00000002001d0000000a02000029000007640000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022fd0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023090000c13d000000000005004b0000231a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000000008730019000000000007004b000023290000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000023250000c13d000000000006004b000023360000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b000023430000c13d000000400100043d000014560010009c00001d7a0000213d0000002002100039000000400020043f0000000000010435000000400300043d000026230000013d0000000d04000029000014f40040009c000024870000413d00000040060000390000000d04000029000014f40440012a000024900000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000090600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000023500000c13d0000000b0020006c000023620000813d0000000b020000290000000302200210000000f80220018f000015580220027f000015580220016700000009033000290000000003030433000000000223016f000000000021041b0000000b01000029000000010110021000000001011001bf0000000702000039000000000012041b000000400100043d00000020021000390000146103000041000000000032043500000000000104350000144e0010009c0000144e01008041000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f00001462011001c70000800d020000390000000103000039000b00000003001d00001463040000415135512b0000040f0000000100200190000000710000613d000014640100004100000000001004430000146101000041000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000023ab0000c13d00000009010000390000000102000039000000000021041b0000000a040000290000145100400198000019b40000613d0000000c0100002900001452021001970000000a01000039000000000301041a000014680330019700000008044002100000146904400197000000000334019f00000001033001bf000000000031041b0000146a010000410000000b03000039000000000013041b000000400100043d000027110020008c000026250000413d00000064021000390000147303000041000000000032043500000044021000390000147403000041000000000032043500000024021000390000002a03000039000010af0000013d000014640100004100000000001004430000146101000041000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d0000002401300039000002d1020000390000000000210435000014660100004100000000001304350000000401300039000000000200041000000000002104350000144e0030009c000900000003001d0000144e010000410000000001034019000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f00001467011001c700001461020000415135512b0000040f00000060031002700001144e0030019d000300000001035500000001002001900000238c0000613d0000000901000029000014570010009c00001d7a0000213d0000000901000029000000400010043f0000238c0000013d0000000005420019000000000004004b000023e50000613d0000000b06000029000000000702001900000000680604340000000007870436000000000057004b000023e10000c13d000000000003004b000023f30000613d000b000b0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000b0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000c03000029000000040030008c0000240f0000613d0000001f011000390000155601100197000000a4011000390000144e0010009c0000144e01008041000000600110021000000009030000290000144e0030009c0000144e030080410000004003300210000000000131019f0000144e0020009c0000144e02008041000000c002200210000000000112019f0000000c020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000025700000613d0000000901000029000014570010009c00001d7a0000213d0000000902000029000000400020043f0000000d0100002900000004030000290000000000130435000000200100003900000000001204350000004001200039000000070210002900000006030000290000000203300367000000070000006b000024250000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000024210000c13d000000080000006b000024330000613d000000070330036000000008040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000d0110002900000000000104350000000a020000290000006001200210000015160110009a000015170020009c000015180100804100000009020000290000144e0020009c0000144e020080410000004002200210000000000121019f00000000020004140000144e0020009c0000144e02008041000000c00220021000000000012100190000800d0200003900000001030000390000151904000041000002380000013d0000000005420019000000000004004b000024510000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b0000244d0000c13d000000000003004b0000245e0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000d03000029000000040030008c000017160000613d0000001f011000390000155601100197000000a4011000390000144e0010009c0000144e0100804100000060011002100000000c030000290000144e0030009c0000144e030080410000004003300210000000000131019f0000144e0020009c0000144e02008041000000c002200210000000000121019f0000000d020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000017160000c13d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024820000c13d0000230d0000013d0000000d04000029000014f60040009c000014f50440212a00000000060000390000002006002039000014f70040009c00000010066081bf000014f804408197000014f70440812a000014f90040009c00000008066080390000145704408197000014f90440812a000027100040008c00000004066080390000144e04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000014570040009c00001d7a0000213d000000010080019000001d7a0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f000024b90000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000024b50000c13d000000000007004b000000000665001900000021066000390000000d09000029000000090090008c0000000a7990011a0000000307700210000000010660008a0000000008060433000014fa08800197000014fb0770021f000014fc07700197000000000787019f0000000000760435000024bd0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b0000257d0000813d000000000009004b000024db0000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000024d50000c13d000000000008004b000025930000613d000000000a070019000025890000013d0000000008730019000000000007004b000024e80000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000024e40000c13d000000000006004b000024f50000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000d04000029000014f40040009c000025180000413d00000040060000390000000d04000029000014f40440012a000025210000013d0000000007650019000000000006004b000025070000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000025030000c13d000000000002004b000025140000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d000026230000013d0000000d04000029000014f60040009c000014f50440212a00000000060000390000002006002039000014f70040009c00000010066081bf000014f804408197000014f70440812a000014f90040009c00000008066080390000145704408197000014f90440812a000027100040008c00000004066080390000144e04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000014570040009c00001d7a0000213d000000010080019000001d7a0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f0000254a0000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b000025460000c13d000000000007004b000000000665001900000021066000390000000d09000029000000090090008c0000000a7990011a0000000307700210000000010660008a0000000008060433000014fa08800197000014fb0770021f000014fc07700197000000000787019f00000000007604350000254e0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b000025cf0000813d000000000009004b0000256c0000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000025660000c13d000000000008004b000025e50000613d000000000a070019000025db0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025780000c13d0000230d0000013d000000000a970019000000000009004b000025860000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000025820000c13d000000000008004b000025930000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000025aa0000813d000000000007004b000025a60000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000025a00000c13d000000000006004b000025c00000613d0000000008030019000025b60000013d0000000008730019000000000007004b000025b30000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000025af0000c13d000000000006004b000025c00000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003530019000026130000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025ca0000c13d0000230d0000013d000000000a970019000000000009004b000025d80000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b000025d40000c13d000000000008004b000025e50000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b000025fc0000813d000000000007004b000025f80000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000025f20000c13d000000000006004b000026120000613d0000000008030019000026080000013d0000000008730019000000000007004b000026050000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b000026010000c13d000000000006004b000026120000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b00000000020000390000000102004039000014570040009c00001d7a0000213d000000010020019000001d7a0000c13d0000000003040019000000400040043f0000002002000039000021370000013d0000000d0300002900001451053001980000262e0000c13d00000044021000390000147003000041000000000032043500000024021000390000001903000039000009ba0000013d000014530010009c00001d7a0000213d0000004003100039000000400030043f0000002003100039000000000023043500000000005104350000000c01000029000000a001100210000000000151019f0000000d03000039000000000013041b000000400100043d00000000002104350000144e0010009c0000144e01008041000000400110021000000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000145a011001c70000800d0200003900000002030000390000146b040000415135512b0000040f0000000100200190000000710000613d0000000f01000039000000000201041a0000146c032001970000000006000411000000000363019f000000000031041b000000000100041400001451052001970000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000003030000390000146e040000415135512b0000040f0000000100200190000000710000613d0000001201000039000000000001041b00000007010000290000000001010433000d00000001001d000014570010009c00001d7a0000213d0000001301000039000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000003cc0000c13d0000000c01000029000000200010008c0000268f0000413d0000001301000039000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000c010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000268f0000813d000000000002041b0000000102200039000000000012004b0000268b0000413d0000000d010000290000001f0010008c000027d80000a13d0000001301000039000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d000000200200008a0000000d02200180000000000101043b000028470000c13d0000002003000039000028530000013d0000000801000029513532970000040f00001451001001980000278b0000c13d0000001001000039000000000101041a000b14510010019c000027a20000c13d000014ec01000041000000000010044300000000010004140000144e0010009c0000144e01008041000000c001100210000014ed011001c70000800b02000039513551300000040f000000010020019000002f260000613d000000000201043b0000152b0020009c00001df80000813d000000080100002951354ee90000040f513537630000040f0000000801000029513532970000040f00001451001001980000278b0000c13d0000000d01000029000000000010043f0000000301000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b000000000201041a0000146c022001970000000d06000029000000000262019f000000000021041b00000000010004140000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000004030000390000152d04000041000000000500001900000008070000295135512b0000040f0000000100200190000000710000613d0000001101000039000000000101041a000b14510010019c000028fd0000c13d513535b00000040f000000010110003a000002b00000613d51354faa0000040f0000000a01000039000000000201041a000000400300043d000014e0010000410000000000130435000b00000003001d0000000401300039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000029360000c13d0000000104000031000000200040008c0000002004008039000029600000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027130000c13d0000230d0000013d00000009030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000027310000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b0000272d0000c13d000000000006004b0000273e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000027960000613d0000001f01400039000000600110018f0000000901100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d00000009010000290000000001010433000b00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000014f2020000410000000000210435000015150100004100000000001504350000000401500039000800000001001d0000000a020000290000000000210435000000240150003900000000000104350000000d0100002900000000010104330000008402500039000000000012043500001556041001970000001f0310018f000900000005001d000000a4025000390000000c0020006b000027f10000813d000000000004004b000027870000613d0000000c063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000027810000c13d000000000003004b000028080000613d0000000005020019000027fd0000013d000000400100043d00000044021000390000152c03000041000000000032043500000024021000390000001c03000039000009ba0000013d0000152901000041000000000010043f000014ef0100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000279d0000c13d0000230d0000013d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000044013000390000000802000029000000000021043500000024013000390000000d0200002900000000002104350000152a010000410000000000130435000a00000003001d0000000401300039000000000001043500000000010004140000000b02000029000000040020008c000027d20000613d0000000a020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001472011001c70000000b020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000027e40000613d0000000a01000029000014570010009c00001d7a0000213d0000000a01000029000000400010043f000026ab0000013d0000000d0000006b0000000001000019000027dd0000613d000000040100002900000000010104330000000d040000290000000302400210000015580220027f0000155802200167000000000121016f000b000100400218000028600000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027ec0000c13d0000230d0000013d0000000005420019000000000004004b000027fa0000613d0000000c06000029000000000702001900000000680604340000000007870436000000000057004b000027f60000c13d000000000003004b000028080000613d000c000c0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000c0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c000028240000613d0000001f011000390000155601100197000000a4011000390000144e0010009c0000144e01008041000000600110021000000009030000290000144e0030009c0000144e030080410000004003300210000000000131019f0000144e0020009c0000144e02008041000000c002200210000000000112019f0000000b020000295135512b0000040f00000060031002700001144e0030019d000300000001035500000001002001900000283a0000613d0000000901000029000014570010009c00001d7a0000213d0000000903000029000000400030043f0000000a01000039000000000201041a000014e0010000410000000000130435000014e10100004100000008030000290000000000130435000000000100041400000008022002700000145102200197000000040020008c000028680000c13d0000000103000031000000200030008c00000020040000390000000004034019000028920000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028420000c13d0000230d0000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000284c0000c13d0000000d0020006c0000285e0000813d0000000d020000290000000302200210000000f80220018f000015580220027f000015580220016700000007033000290000000003030433000000000223016f000000000021041b0000000d0100002900000001011002100000000b011001af0000001302000039000000000012041b0000002001000039000001000010044300000120000004430000146f01000041000051360001042e00000009030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000028810000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b0000287d0000c13d000000000006004b0000288e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000028f10000613d0000001f01400039000000600110018f0000000901100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d00000009010000290000000001010433000d00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000c00000001001d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000146a020000410000000000210435000000440130003900001520020000410000000000210435000015210100004100000000001304350000000401300039000a00000001001d0000000c020000290000000000210435000b00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c000028d60000613d0000000b020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000d020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002a020000613d0000000b01000029000014570010009c00001d7a0000213d0000000b04000029000000400040043f0000000c02000039000000000102041a000015570110019700000001011001bf000000000012041b0000000a01000039000000000201041a000014e0010000410000000000140435000014e1010000410000000a030000290000000000130435000000000100041400000008022002700000145102200197000000040020008c00002a0f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002a390000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028f80000c13d0000230d0000013d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000044013000390000000802000029000000000021043500000024013000390000000d0200002900000000002104350000152a010000410000000000130435000a00000003001d0000000401300039000000000001043500000000010004140000000b02000029000000040020008c0000292d0000613d0000000a020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001472011001c70000000b020000295135512b0000040f00000060031002700001144e0030019d00030000000103550000000100200190000029f50000613d0000000a01000029000014570010009c00001d7a0000213d0000000a01000029000000400010043f513535b00000040f000000010110003a000002b00000613d000026f80000013d0000000b030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b057000290000294f0000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b0000294b0000c13d000000000006004b0000295c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029e90000613d0000001f01400039000000600210018f0000000b01200029000000000021004b00000000020000390000000102004039000014570010009c00001d7a0000213d000000010020019000001d7a0000c13d000000400010043f000000200040008c000000710000413d0000000b010000290000000001010433000b00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000b01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000000d0200002900000000002104350000004401300039000014e80200004100000000002104350000002401300039000000080200002900000000002104350000151f010000410000000001130436000600000001001d000700000003001d00000004013000390000000a02000029000000000021043500000000010004140000000b02000029000000040020008c000029aa0000613d00000007020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000b020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002aa20000613d0000000701000029000014570010009c00001d7a0000213d0000000702000029000000400020043f000000200100003900000000001204350000000d0100002900000006030000290000000000130435000014530020009c00001d7a0000213d00000007020000290000004001200039000000400010043f00000006010000290000144e0010009c0000144e01008041000000400110021000000000020204330000144e0020009c0000144e020080410000006002200210000000000112019f00000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000146d011001c70000801002000039513551300000040f0000000100200190000000710000613d000000000101043b000b00000001001d513533fe0000040f000000010210003a000002b00000613d0000000b01000029513550690000040f0000000001000415000700000001001d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b00002aaf0000c13d00000000010004150000000701100069000000000100000200002c0d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029f00000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029fd0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a0a0000c13d0000230d0000013d0000000b030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900002a280000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00002a240000c13d000000000006004b00002a350000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002a960000613d0000001f01400039000000600110018f0000000b01100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d0000000b010000290000000001010433000d00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000b00000001001d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d000000640130003900000001020000390000000000210435000000440130003900001500020000410000000000210435000015010100004100000000001304350000000401300039000a00000001001d0000000b020000290000000000210435000c00000003001d0000002401300039000000000001043500000000010004140000000d02000029000000040020008c00002a7d0000613d0000000c020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000d020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002ad80000613d0000000c01000029000014570010009c00001d7a0000213d0000000c03000029000000400030043f0000001201000039000000000101041a000d00000001001d0000000a01000039000000000201041a000014e0010000410000000000130435000014e1010000410000000a030000290000000000130435000000000100041400000008022002700000145102200197000000040020008c00002ae50000c13d0000000103000031000000200030008c0000002004000039000000000403401900002b0f0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a9d0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002aaa0000c13d0000230d0000013d000000400300043d00000064013000390000008002000039000a00000002001d00000000002104350000004401300039000000080200002900000000002104350000152e010000410000000000130435000000040130003900000000020004110000000000210435000000240130003900000000000104350000000c0100002900000000010104330000008402300039000000000012043500001556051001970000001f0410018f000b00000003001d000000a403300039000000090030006b00002b730000813d000000000005004b00002ad40000613d00000009074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00002ace0000c13d000000000004004b00002b8a0000613d000000000603001900002b7f0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ae00000c13d0000230d0000013d0000000c030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900002afe0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00002afa0000c13d000000000006004b00002b0b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002b980000613d0000001f01400039000000600110018f0000000c01100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d0000000c010000290000000001010433000c00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000c01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000000d02000029000000000021043500000044013000390000152202000041000000000021043500001521010000410000000001130436000b00000001001d00000004013000390000000a020000290000000000210435000d00000003001d0000002401300039000000000001043500000000010004140000000c02000029000000040020008c00002b530000613d0000000d020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000c020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002ba40000613d0000000d01000029000014570010009c00001d7a0000213d0000000d01000029000000400010043f0000001301000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000c00000004001d0000001f0040008c00000000040000390000000104002039000a00000005001d000000000445013f0000000100400190000003cc0000c13d0000000d040000290000000c050000290000000000540435000000000003004b00002bb10000c13d000001000100008a0000000a0110017f0000000b030000290000000000130435000000000002004b0000000001030019000000200110c03900002c2b0000013d0000000006530019000000000005004b00002b7c0000613d0000000907000029000000000803001900000000790704340000000008980436000000000068004b00002b780000c13d000000000004004b00002b8a0000613d000900090050002d0000000304400210000000000506043300000000054501cf000000000545022f000000090700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000d04000029000000040040008c00002bc00000c13d00000000050004150000000f0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900002bf40000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b9f0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002bac0000c13d0000230d0000013d000000000010043f00000000010004140000144e0010009c0000144e01008041000000c0011002100000145a011001c70000801002000039513551300000040f0000000100200190000000710000613d0000000a02000029000000020020008c00002c1f0000813d000000200100003900002c2a0000013d0000001f011000390000155601100197000000a4011000390000144e0010009c0000144e0100804100000060011002100000000b020000290000144e0020009c0000144e020080410000004002200210000000000121019f0000144e0030009c0000144e03008041000000c002300210000000000121019f0000000d020000295135512b0000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900002be00000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00002bdc0000c13d000000000006004b00002bed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000e0550008a0000000505500210000000010020019000002c4a0000613d0000001f01400039000000600210018f0000000b01200029000000000021004b00000000020000390000000102004039000014570010009c00001d7a0000213d000000010020019000001d7a0000c13d000000400010043f000000200030008c000000710000413d0000000b0100002900000000010104330000153000100198000000710000c13d0000000502500270000000000201001f00000000020004150000000702200069000000000200000200001531011001970000152e0010009c00002d3e0000c13d0000000a01000039000000000201041a000000400300043d000014e0010000410000000000130435000d00000003001d0000000401300039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00002c4e0000c13d0000000104000031000000200040008c000000200400803900002c780000013d000000000101043b0000000002000019000000000302001900000020022000390000000d04200029000000000501041a000000000054043500000001011000390000000c0020006c00002c210000413d00000040013000390000000d011000290000000d0110006a0000001f0110003900001556011001970000000d02100029000000000012004b00000000010000390000000101004039000c00000002001d000014570020009c00001d7a0000213d000000010010019000001d7a0000c13d0000000c03000029000000400030043f0000000a01000039000000000201041a000014e00100004100000000001304350000000401300039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00002ca20000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ccc0000013d000000000003004b00002d140000c13d000000600200003900002d3b0000013d0000000d030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0570002900002c670000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b00002c630000c13d000000000006004b00002c740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d4e0000613d0000001f01400039000000600110018f0000000d03100029000000000013004b00000000020000390000000102004039000c00000003001d000014570030009c00001d7a0000213d000000010020019000001d7a0000c13d0000000c02000029000000400020043f000000200040008c000000710000413d0000000d020000290000000002020433000014510020009c000000710000213d0000000b03000039000000000303041a0000000c060000290000004404600039000015140500004100000000005404350000002404600039000000080500002900000000005404350000150b040000410000000000460435000000040460003900000000003404350000000003000414000000040020008c00002d5a0000c13d0000000c02100029000d00000002001d000014570020009c00001d7a0000213d0000000d02000029000000400020043f00002d8e0000013d0000000c030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900002cbb0000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00002cb70000c13d000000000006004b00002cc80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002da90000613d0000001f01400039000000600110018f0000000c01100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d0000000c010000290000000001010433000c00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000a00000001001d000014640100004100000000001004430000000c01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000014f30200004100000000002104350000151501000041000000000015043500000004015000390000000a0200002900000000002104350000002401500039000000000001043500000084025000390000000d010000290000000001010433000000000012043500001556041001970000001f0310018f000d00000005001d000000a4025000390000000b0020006b00002db50000813d000000000004004b00002d100000613d0000000b063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00002d0a0000c13d000000000003004b00002dcc0000613d000000000502001900002dc10000013d0000001f023000390000144f022001970000003f022000390000152f04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000014570040009c00001d7a0000213d000000010050019000001d7a0000c13d000000400040043f0000001f0430018f00000000063204360000145005300198000a00000006001d000000000356001900002d2e0000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000037004b00002d2a0000c13d000000000004004b00002d3b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00002dec0000c13d000000400200043d000d00000002001d00001471010000410000000000120435000000040120003951354dc70000040f0000000d0200002900000000012100490000144e0010009c0000144e0100804100000060011002100000144e0020009c0000144e020080410000004002200210000000000121019f00005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d550000c13d0000230d0000013d0000000c010000290000144e0010009c0000144e0100804100000040011002100000144e0030009c0000144e03008041000000c003300210000000000113019f00001472011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0570002900002d730000613d000000000801034f0000000c09000029000000008a08043c0000000009a90436000000000059004b00002d6f0000c13d000000000006004b00002d800000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002df50000613d0000001f01400039000000600110018f0000000c02100029000d00000002001d000014570020009c00001d7a0000213d0000000d02000029000000400020043f000000200030008c000000710000413d0000000c020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000710000c13d000000000002004b00002f230000c13d0000000a02000039000000000202041a000014e0030000410000000d0400002900000000003404350000000403400039000014e1040000410000000000430435000000000300041400000008022002700000145102200197000000040020008c00002e010000c13d0000000d01100029000014570010009c00001d7a0000213d000000400010043f00002e340000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002db00000c13d0000230d0000013d0000000005420019000000000004004b00002dbe0000613d0000000b06000029000000000702001900000000680604340000000007870436000000000057004b00002dba0000c13d000000000003004b00002dcc0000613d000b000b0040002d0000000303300210000000000405043300000000043401cf000000000434022f0000000b0600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000c03000029000000040030008c00002de80000613d0000001f011000390000155601100197000000a4011000390000144e0010009c0000144e0100804100000060011002100000000d030000290000144e0030009c0000144e030080410000004003300210000000000131019f0000144e0020009c0000144e02008041000000c002200210000000000112019f0000000c020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002e860000613d0000000d01000029000014570010009c00001d7a0000213d00000ff30000013d0000000a020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e010080410000006001100210000000000121019f00005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dfc0000c13d0000230d0000013d0000000d01000029000d00000001001d0000144e0010009c0000144e0100804100000040011002100000144e0030009c0000144e03008041000000c003300210000000000113019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0570002900002e1b0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b00002e170000c13d000000000006004b00002e280000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e930000613d0000001f01400039000000600110018f0000000d01100029000014570010009c00001d7a0000213d000000400010043f000000200030008c000000710000413d0000000d010000290000000001010433000c00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000b00000001001d000014640100004100000000001004430000000c01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000000102000039000000000021043500000044013000390000153202000041000000000021043500000024013000390000000802000029000000000021043500001501010000410000000000130435000d00000003001d00000004023000390000000b01000029000a00000002001d000000000012043500000000010004140000000c02000029000000040020008c00002e710000613d0000000d020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000c020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002e9f0000613d0000000d01000029000014570010009c00001d7a0000213d0000000d03000029000000400030043f0000000a01000039000000000201041a000014e0010000410000000000130435000014e1010000410000000a030000290000000000130435000000000100041400000008022002700000145102200197000000040020008c00002eac0000c13d0000000104000031000000200040008c000000200400803900002ed60000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e8e0000c13d0000230d0000013d0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e9a0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ea70000c13d0000230d0000013d0000000d030000290000144e0030009c0000144e0300804100000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f00000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d0570002900002ec50000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b00002ec10000c13d000000000006004b00002ed20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f270000613d0000001f01400039000000600110018f0000000d01100029000014570010009c00001d7a0000213d000000400010043f000000200040008c000000710000413d0000000d010000290000000001010433000d00000001001d000014510010009c000000710000213d0000000b01000039000000000101041a000b00000001001d000014640100004100000000001004430000000d01000029000000040010044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000002f260000613d000000000101043b000000000001004b000000710000613d000000400300043d00000064013000390000000102000039000000000021043500000044013000390000153302000041000000000021043500000024013000390000000802000029000000000021043500001521010000410000000000130435000c00000003001d00000004013000390000000b02000029000000000021043500000000010004140000000d02000029000000040020008c00002f1a0000613d0000000c020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000d020000295135512b0000040f00000060031002700001144e0030019d0003000000010355000000010020019000002f330000613d0000000c01000029000014570010009c00001d7a0000213d0000000c01000029000000400010043f000000080100002951354d070000040f000000400100043d000d00000001001d00000008010000290000000d02000029000007640000013d000000000001042f0000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f2e0000c13d0000230d0000013d0000144e033001970000001f0530018f0000145006300198000000400200043d00000000046200190000230d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f3b0000c13d0000230d0000013d0000000043010434000000000132043600001556063001970000001f0530018f000000000014004b00002f560000813d000000000006004b00002f520000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00002f4c0000c13d000000000005004b00002f6c0000613d000000000701001900002f620000013d0000000007610019000000000006004b00002f5f0000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00002f5b0000c13d000000000005004b00002f6c0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900001556023001970000000001210019000000000001042d000014e50010009c00002f820000213d000000630010008c00002f820000a13d00000002030003670000000401300370000000000101043b000014510010009c00002f820000213d0000002402300370000000000202043b000014510020009c00002f820000213d0000004403300370000000000303043b000000000001042d0000000001000019000051370001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b00002f920000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b00002f8c0000413d000000000001042d0000001f0220003900001556022001970000000001120019000000000021004b00000000020000390000000102004039000014570010009c00002f9f0000213d000000010020019000002f9f0000c13d000000400010043f000000000001042d0000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000015590020009c00002fd50000813d00000000040100190000001f0120003900001556011001970000003f011000390000155605100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000014570050009c00002fd50000213d000000010070019000002fd50000c13d000000400050043f00000000052104360000000007420019000000000037004b00002fdb0000213d00001556062001980000001f0720018f0000000204400367000000000365001900002fc50000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00002fc10000c13d000000000007004b00002fd20000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000000001000019000051370001043000020000000000020000000a02000039000000000202041a000000400c00043d000014e00300004100000000003c04350000000404c00039000014e1030000410000000000340435000000000400041400000008022002700000145102200197000000040020008c000200000001001d00002ff10000c13d0000000103000031000000200030008c000000200400003900000000040340190000301e0000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0040009c0000144e04008041000000c001400210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000300c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000030080000c13d000000000006004b000030190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000309e0000613d00000002010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000145700b0009c000030880000213d0000000100200190000030880000c13d0000004000b0043f0000001f0030008c000030860000a13d00000000020c0433000014510020009c000030860000213d0000000b04000039000000000404041a0000004405b00039000014e80600004100000000006504350000002405b000390000000000150435000014e70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000306b0000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030570000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000030530000c13d000000000006004b000030640000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030aa0000613d0000001f01400039000000600710018f00000002010000290000000004b70019000014570040009c000030880000213d000000400040043f000000200030008c000030860000413d00000000020b0433000014510020009c000030860000213d000000000002004b0000308e0000613d000000000010043f0000000401000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000030860000613d000000000101043b000000000101041a0000145101100197000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000004402400039000014f0030000410000000000320435000000240240003900000018030000390000000000320435000014710200004100000000002404350000000402400039000000200300003900000000003204350000144e0040009c0000144e04008041000000400140021000001472011001c700005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000030b50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030a50000c13d000030b50000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000030b50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030b10000c13d000000000005004b000030c20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000000801000039000000000201041a00000008012002700000145101100198000030ce0000613d000000000001042d000000ff0020019000000000010000190000146101006041000000000001042d00010000000000020000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000030e50000c13d0000000103000031000000200030008c00000020040000390000000004034019000031110000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031000000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000030fc0000c13d000000000006004b0000310d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000316d0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c000031670000213d0000000100200190000031670000c13d0000004000b0043f0000001f0030008c000031650000a13d00000000020c0433000014510020009c000031650000213d0000000b04000039000000000404041a0000004405b0003900001522060000410000000000650435000014ea0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c0000315d0000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000314a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031460000c13d000000000006004b000031570000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000318b0000613d0000001f01400039000000600110018f0000000001b10019000014570010009c000031670000213d000000400010043f000000200030008c000031650000413d00000000010b0433000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000031780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031740000c13d000000000005004b000031850000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000031960000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031920000c13d000000000005004b000031a30000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f000051370001043000010000000000020000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000031bc0000c13d0000000103000031000000200030008c00000020040000390000000004034019000031e80000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031d70000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031d30000c13d000000000006004b000031e40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032440000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c0000323e0000213d00000001002001900000323e0000c13d0000004000b0043f0000001f0030008c0000323c0000a13d00000000020c0433000014510020009c0000323c0000213d0000000b04000039000000000404041a0000004405b000390000155a060000410000000000650435000014ea0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000032340000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032210000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000321d0000c13d000000000006004b0000322e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000032620000613d0000001f01400039000000600110018f0000000001b10019000014570010009c0000323e0000213d000000400010043f000000200030008c0000323c0000413d00000000010b0433000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000324f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000324b0000c13d000000000005004b0000325c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000326d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032690000c13d000000000005004b0000327a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f0000513700010430000000000001004b000032830000613d000000000001042d000000400100043d00000064021000390000155b03000041000000000032043500000044021000390000155c03000041000000000032043500000024021000390000002d030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001475011001c7000051370001043000020000000000020000000a02000039000000000202041a000000400c00043d000014e00300004100000000003c04350000000404c00039000014e1030000410000000000340435000000000400041400000008022002700000145102200197000000040020008c000032aa0000c13d0000000103000031000000200030008c00000020040000390000000004034019000032d80000013d000100000001001d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0040009c0000144e04008041000000c001400210000000000131019f000014e9011001c700020000000c001d513551300000040f000000020c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000032c60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000032c20000c13d000000000006004b000032d30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033360000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000145700b0009c000033300000213d0000000100200190000033300000c13d0000004000b0043f0000001f0030008c0000332e0000a13d00000000020c0433000014510020009c0000332e0000213d0000000b04000039000000000404041a0000004405b00039000014e80600004100000000006504350000002405b000390000000000150435000014e70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000033240000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000033110000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000330d0000c13d000000000006004b0000331e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033540000613d0000001f01400039000000600710018f0000000001b70019000014570010009c000033300000213d000000400010043f000000200030008c0000332e0000413d00000000010b0433000014510010009c0000332e0000213d000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000033410000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000333d0000c13d000000000005004b0000334e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000335f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000335b0000c13d000000000005004b0000336c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f000051370001043000010000000000020000000a01000039000000000201041a000000ff01200190000033c30000c13d000000400b00043d000015260100004100000000001b0435000000000100041400000008022002700000145102200197000000040020008c000033840000c13d0000000103000031000000200030008c00000020040000390000000004034019000033b00000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014ef011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000339f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000339b0000c13d000000000006004b000033ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033cc0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c000033c60000213d0000000100200190000033c60000c13d000000400010043f0000001f0030008c000033c40000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000033c40000c13d000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000033d70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033d30000c13d000000000005004b000033e40000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f0000513700010430000000000001004b000033ed0000613d000000000001042d000000400100043d0000004402100039000014f0030000410000000000320435000000240210003900000018030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001472011001c7000051370001043000020000000000020000000a02000039000000000202041a000000400c00043d000014e00300004100000000003c04350000000404c00039000014e1030000410000000000340435000000000400041400000008022002700000145102200197000000040020008c000034110000c13d0000000103000031000000200030008c000000200400003900000000040340190000343f0000013d000100000001001d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0040009c0000144e04008041000000c001400210000000000131019f000014e9011001c700020000000c001d513551300000040f000000020c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000342d0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034290000c13d000000000006004b0000343a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000349b0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000145700b0009c000034950000213d0000000100200190000034950000c13d0000004000b0043f0000001f0030008c000034930000a13d00000000020c0433000014510020009c000034930000213d0000000b04000039000000000404041a0000004405b000390000155d0600004100000000006504350000002405b000390000000000150435000014ea0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000348b0000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034780000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034740000c13d000000000006004b000034850000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000034b90000613d0000001f01400039000000600710018f0000000001b70019000014570010009c000034950000213d000000400010043f000000200030008c000034930000413d00000000010b0433000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000034a60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034a20000c13d000000000005004b000034b30000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000034c40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034c00000c13d000000000005004b000034d10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f000051370001043000020000000000020000000a02000039000000000202041a000000400c00043d000014e00300004100000000003c04350000000404c00039000014e1030000410000000000340435000000000400041400000008022002700000145102200197000000040020008c000034ea0000c13d0000000103000031000000200030008c00000020040000390000000004034019000035180000013d000100000001001d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0040009c0000144e04008041000000c001400210000000000131019f000014e9011001c700020000000c001d513551300000040f000000020c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035060000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035020000c13d000000000006004b000035130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035740000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000145700b0009c0000356e0000213d00000001002001900000356e0000c13d0000004000b0043f0000001f0030008c0000356c0000a13d00000000020c0433000014510020009c0000356c0000213d0000000b04000039000000000404041a0000004405b00039000014eb0600004100000000006504350000002405b000390000000000150435000014ea0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000035640000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035510000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000354d0000c13d000000000006004b0000355e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000035920000613d0000001f01400039000000600710018f0000000001b70019000014570010009c0000356e0000213d000000400010043f000000200030008c0000356c0000413d00000000010b0433000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000357f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000357b0000c13d000000000005004b0000358c0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000359d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000035990000c13d000000000005004b000035aa0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f000051370001043000010000000000020000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000035c30000c13d0000000103000031000000200030008c00000020040000390000000004034019000035ef0000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035de0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035da0000c13d000000000006004b000035eb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000364b0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c000036450000213d0000000100200190000036450000c13d0000004000b0043f0000001f0030008c000036430000a13d00000000020c0433000014510020009c000036430000213d0000000b04000039000000000404041a0000004405b000390000155e060000410000000000650435000014ea0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c0000363b0000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036280000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036240000c13d000000000006004b000036350000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000036690000613d0000001f01400039000000600110018f0000000001b10019000014570010009c000036450000213d000000400010043f000000200030008c000036430000413d00000000010b0433000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000036560000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036520000c13d000000000005004b000036630000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000036740000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000036700000c13d000000000005004b000036810000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f000051370001043000010000000000020000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c0000369a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000036c60000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000036b50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036b10000c13d000000000006004b000036c20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000037270000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c000037210000213d0000000100200190000037210000c13d0000004000b0043f0000001f0030008c0000371f0000a13d00000000020c0433000014510020009c0000371f0000213d0000000b04000039000000000404041a0000004405b00039000015550600004100000000006504350000150b0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000037120000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036ff0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036fb0000c13d000000000006004b0000370c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000037450000613d0000001f01400039000000600110018f0000000001b10019000014570010009c000037210000213d000000400010043f000000200030008c0000371f0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000371f0000c13d000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000037320000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000372e0000c13d000000000005004b0000373f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000037500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000374c0000c13d000000000005004b0000375d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f000051370001043000010000000000020000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000037760000c13d0000000103000031000000200030008c00000020040000390000000004034019000037a20000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000037910000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000378d0000c13d000000000006004b0000379e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000038030000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c000037fd0000213d0000000100200190000037fd0000c13d0000004000b0043f0000001f0030008c000037fb0000a13d00000000020c0433000014510020009c000037fb0000213d0000000b04000039000000000404041a0000004405b00039000015000600004100000000006504350000150b0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000037ee0000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000037db0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037d70000c13d000000000006004b000037e80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000038210000613d0000001f01400039000000600110018f0000000001b10019000014570010009c000037fd0000213d000000400010043f000000200030008c000037fb0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000037fb0000c13d000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000380e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000380a0000c13d000000000005004b0000381b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d00000000046200190000382c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038280000c13d000000000005004b000038390000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f00005137000104300001000000000002000100000002001d0000145101100197000000000010043f0000000501000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000038720000613d000000000101043b00000001020000290000145102200197000100000002001d000000000020043f000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000038720000613d000000000101043b000000000101041a000000ff01100190000038620000613d000000000001042d0000000801000039000000000201041a0000153700200198000038700000613d000000080120027000001451011001980000386c0000c13d000000ff0020019000000000010000190000146101006041000000010010006b00000000010000390000000101006039000000000001042d0000000001000019000000000001042d0000000001000019000051370001043000020000000000020000000a02000039000000000202041a000000400b00043d000014fd0300004100000000003b04350000000403b00039000014fe04000041000000000043043500001451051001970000002401b000390000000000510435000000000100041400000008022002700000145102200197000000040020008c0000388a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000038b80000013d000100000005001d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001467011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000038a60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038a20000c13d000000000006004b000038b30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000038dd0000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c000038d00000213d0000000100200190000038d00000c13d000000400010043f0000001f0030008c000038ce0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000038ce0000c13d000000000001004b000038d60000613d000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000150201000041000000000010043f000000040050043f000014fe01000041000000240010043f000014670100004100005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000038e80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038e40000c13d000000000005004b000038f50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300006000000000002000400000002001d000300000001001d0000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000039100000c13d0000000103000031000000200030008c000000200400003900000000040340190000393c0000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000c001d513551300000040f000000020c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000392b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000039270000c13d000000000006004b000039380000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a910000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c00003a7b0000213d000000010020019000003a7b0000c13d0000004000b0043f0000001f0030008c00003a790000a13d00000000020c0433000014510020009c00003a790000213d0000000b04000039000000000404041a0000004405b00039000014e80600004100000000006504350000002405b0003900000004060000290000000000650435000014e70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000039890000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000039760000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000039720000c13d000000000006004b000039830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003a9d0000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00003a7b0000213d000000400010043f000000200030008c00003a790000413d00000000020b0433000014510020009c00003a790000213d000000000002004b00003a810000613d0000000301000029000314510010019b000000030020006b0000399a0000c13d0000000101000039000000000001042d000000000020043f0000000501000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f000000010020019000003a790000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f000000010020019000003a790000613d000000000101043b000000000101041a000000ff01100190000039b80000613d000000000001042d0000000003000415000000060330008a00000005033002100000000801000039000000000101041a0000153700100198000039cb0000613d00000008021002700000145102200198000039c50000c13d000000ff00100190000000000200001900001461020060410000000003000415000000050330008a0000000503300210000000030020006b0000000101000039000039b70000613d000200000003001d0000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000039de0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a0a0000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000c001d513551300000040f000000010c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000039f90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000039f50000c13d000000000006004b00003a060000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003abb0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c00003a7b0000213d000000010020019000003a7b0000c13d0000004000b0043f000000200030008c00003a790000413d00000000020c0433000014510020009c00003a790000213d0000000b04000039000000000404041a0000004405b00039000014e80600004100000000006504350000002405b0003900000004060000290000000000650435000014e70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003a570000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003a440000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003a400000c13d000000000006004b00003a510000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000003ac70000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00003a7b0000213d000000400010043f000000200030008c00003a790000413d00000000020b0433000014510020009c00003a790000213d000000000002004b00003a810000613d0000000401000029000000000010043f0000000401000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f000000010020019000003a790000613d000000000101043b000000000101041a0000145101100197000000030010006c0000000001000039000000010100603900000002020000290000000502200270000000000201001f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000004402100039000014f0030000410000000000320435000000240210003900000018030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001472011001c700005137000104300000001f0530018f0000145006300198000000400200043d000000000462001900003aa80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003a980000c13d00003aa80000013d0000001f0530018f0000145006300198000000400200043d000000000462001900003aa80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003aa40000c13d000000000005004b00003ab50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000001f0530018f0000145006300198000000400200043d000000000462001900003aa80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ac20000c13d00003aa80000013d0000001f0530018f0000145006300198000000400200043d000000000462001900003aa80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ace0000c13d00003aa80000013d0007000000000002000600000003001d000500000002001d000700000001001d0000000a01000039000000000201041a000000400b00043d000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00003ae90000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b150000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700040000000b001d513551300000040f000000040b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b040000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b000000c13d000000000006004b00003b110000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000423a0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000145700c0009c000041c00000213d0000000100200190000041c00000c13d0000004000c0043f0000001f0030008c000041be0000a13d00000000020b0433000014510020009c000041be0000213d0000000b04000039000000000404041a0000004405c00039000014e80600004100000000006504350000002405c0003900000006060000290000000000650435000014e70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003b620000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003b4f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003b4b0000c13d000000000006004b00003b5c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042460000613d0000001f01400039000000600110018f000000000bc100190000145700b0009c000041c00000213d0000004000b0043f000000200030008c000041be0000413d00000000050c0433000014510050009c000041be0000213d0000000401b00039000000000005004b000041cd0000613d00000007020000290000145102200197000000000025004b000041d70000c13d0000000502000029000514510020019c000041e40000613d0000000a02000039000000000202041a000014e00400004100000000004b0435000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c000700000005001d00003b830000c13d000000200400003900003baf0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700040000000b001d513551300000040f000000040b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b9e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b9a0000c13d000000000006004b00003bab0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042520000613d0000001f01400039000000600110018f000000000cb100190000145700c0009c000041c00000213d0000004000c0043f000000200030008c000041be0000413d00000000020b0433000014510020009c000041be0000213d0000000b04000039000000000404041a0000004405c00039000015550600004100000000006504350000150b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003bf60000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003be30000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003bdf0000c13d000000000006004b00003bf00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000425e0000613d0000001f01400039000000600110018f0000000001c10019000014570010009c000041c00000213d000000400010043f000000200030008c000041be0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b000041be0000c13d000000000001004b000041f10000613d0000001001000039000000000101041a000014510210019800003c3c0000613d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b0000000703000029000041be0000613d000000400400043d0000004401400039000000060200002900000000002104350000002401400039000000050200002900000000002104350000152a0100004100000000001404350000000401400039000000000031043500000000010004140000000402000029000000040020008c00003c390000613d0000144e0040009c0000144e03000041000000000304401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001472011001c7000400000004001d5135512b0000040f000000040400002900000060031002700001144e0030019d000300000001035500000001002001900000432e0000613d000014570040009c000041c00000213d000000400040043f000014ec01000041000000000010044300000000010004140000144e0010009c0000144e01008041000000c001100210000014ed011001c70000800b02000039513551300000040f0000000100200190000041c60000613d000000400b00043d0000000402b00039000000000101043b0000152b0010009c000041f50000813d000400000001001d0000000a01000039000000000301041a000014e00100004100000000001b0435000014e1010000410000000000120435000000000100041400000008023002700000145102200197000000040020008c00003c5d0000c13d0000000103000031000000200030008c0000002004000039000000000403401900003c890000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700030000000b001d513551300000040f000000030b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003c780000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003c740000c13d000000000006004b00003c850000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000426a0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c000041c00000213d0000000100200190000041c00000c13d000000400010043f000000200030008c000041be0000413d00000000020b0433000014510020009c000041be0000213d0000000b01000039000000000101041a000200000001001d00001464010000410000000000100443000300000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b00000007070000290000000303000029000041be0000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000014eb0200004100000000002104350000002401b0003900000006020000290000000000210435000015210100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d00003cd50000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000010b000029000000070700002900000060031002700001144e0030019d00030000000103550000000100200190000042760000613d0000145700b0009c000041c00000213d0000004000b0043f0000000a01000039000000000201041a000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c00003ce80000c13d0000000103000031000000200030008c0000002004000039000000000403401900003d140000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003d020000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003cfe0000c13d000000000006004b00003d0f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042830000613d00000007070000290000001f01400039000000600110018f000000000cb100190000145700c0009c000041c00000213d0000004000c0043f000000200030008c000041be0000413d00000000020b0433000014510020009c000041be0000213d0000000b04000039000000000404041a0000004405c00039000015000600004100000000006504350000150b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003d5c0000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003d480000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003d440000c13d000000000006004b00003d550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000428f0000613d0000001f01400039000000600110018f0000000707000029000000000bc100190000145700b0009c000041c00000213d0000004000b0043f000000200030008c000041be0000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b000041be0000c13d000000000001004b000042070000c13d0000000801000039000000000101041a0000000802100270000014510220019800003dac0000613d0000000001000411000000000021004b00003db20000613d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b0000000707000029000041be0000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000000050200002900000000002104350000002401b000390000000000710435000015470100004100000000001b0435000000000100041100001451011001970000000402b00039000000000012043500000000010004140000000402000029000000040020008c00003da80000613d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001475011001c700040000000b001d513551300000040f000000040b000029000000070700002900000060031002700001144e0030019d000300000001035500000001002001900000435a0000613d0000145700b0009c000041c00000213d0000004000b0043f00003db20000013d000000ff0010019000003db20000c13d00001461020000410000000001000411000000000021004b00003d720000c13d0000000a01000039000000000201041a000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00003dc30000c13d0000000103000031000000200030008c0000002004000039000000000403401900003df00000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700040000000b001d513551300000040f000000040b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003dde0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003dda0000c13d000000000006004b00003deb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000429b0000613d00000007070000290000001f01400039000000600110018f000000000cb100190000145700c0009c000041c00000213d0000004000c0043f000000200030008c000041be0000413d00000000020b0433000014510020009c000041be0000213d0000000b04000039000000000404041a0000004405c00039000014e80600004100000000006504350000002405c0003900000006060000290000000000650435000014e70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003e390000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003e250000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003e210000c13d000000000006004b00003e320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042a70000613d0000001f01400039000000600110018f00000007070000290000000001c10019000014570010009c000041c00000213d000000400010043f000000200030008c000041be0000413d00000000020c0433000014510020009c000041be0000213d000000000002004b000042170000613d000000000072004b000042270000c13d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f00000001002001900000000703000029000041be0000613d000000000101043b000000000201041a0000146c02200197000000000021041b000000000030043f0000000301000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000041be0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f0000000100200190000041be0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f00000007050000290000000100200190000041be0000613d000000000101043b000000000201041a0000146c022001970000000506000029000000000262019f000000000021041b00000000010004140000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000004030000390000152d0400004100000006070000295135512b0000040f00000007040000290000000100200190000041be0000613d0000001101000039000000000101041a000014510210019800003ed40000613d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b0000000704000029000041be0000613d000000400500043d0000004401500039000000060200002900000000002104350000002401500039000000050200002900000000002104350000152a0100004100000000001504350000000401500039000000000041043500000000010004140000000402000029000000040020008c00003ed00000613d0000144e0050009c0000144e03000041000000000305401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001472011001c7000400000005001d5135512b0000040f0000000405000029000000070400002900000060031002700001144e0030019d000300000001035500000001002001900000433b0000613d000014570050009c000041c00000213d000000400050043f00003ed50000013d000000400500043d0000002001000039000400000001001d00000000011504360000000000410435000014530050009c000041c00000213d0000004002500039000000400020043f0000144e0010009c0000144e01008041000000400110021000000000020504330000144e0020009c0000144e020080410000006002200210000000000112019f00000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000146d011001c70000801002000039513551300000040f0000000100200190000041be0000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00003f030000c13d0000000103000031000000200030008c0000002004000039000000000403401900003f2f0000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700030000000c001d513551300000040f000000030c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003f1e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003f1a0000c13d000000000006004b00003f2b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042b30000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c000041c00000213d0000000100200190000041c00000c13d0000004000b0043f000000200030008c000041be0000413d00000000020c0433000014510020009c000041be0000213d0000000b04000039000000000404041a0000004405b000390000155d0600004100000000006504350000002405b0003900000007060000290000000000650435000014ea0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003f7c0000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700030000000b001d513551300000040f000000030b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003f690000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003f650000c13d000000000006004b00003f760000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042bf0000613d0000001f01400039000000600110018f000000000ab100190000145700a0009c000041c00000213d0000004000a0043f000000200030008c000041be0000413d00000000010b0433000300000001001d000000000001004b000041c70000613d0000000a01000039000000000201041a000014e00100004100000000001a04350000000401a00039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c00003fbf0000613d0000144e00a0009c0000144e0300004100000000030a401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000a001d513551300000040f000000020a00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a001900003fae0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003faa0000c13d000000000005004b00003fbb0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000042cb0000613d00000004010000290000001f01100039000000600110018f0000000001a10019000014570010009c000041c00000213d000000400010043f000000200030008c000041be0000413d00000000020a0433000014510020009c000041be0000213d0000000b01000039000000000101041a000200000001001d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b0000000403000029000041be0000613d0000000301000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000155d0200004100000000002104350000002401b0003900000007020000290000000000210435000015210100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00030000000b001d000040060000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000700000004001d5135512b0000040f0000000704000029000000030b00002900000060031002700001144e0030019d00030000000103550000000100200190000042d70000613d0000145700b0009c000041c00000213d0000000a01000039000000000201041a0000004000b0043f000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c000040190000c13d0000000103000031000000200030008c00000020040000390000000004034019000040440000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000030b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040330000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000402f0000c13d000000000006004b000040400000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042e40000613d0000001f01400039000000600110018f0000000001b10019000014570010009c000041c00000213d000000400010043f000000200030008c000041be0000413d00000000020b0433000014510020009c000041be0000213d0000000b01000039000000000101041a000400000001001d00001464010000410000000000100443000700000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b0000000703000029000041be0000613d000000400400043d0000006401400039000000050200002900000000002104350000004401400039000014e80200004100000000002104350000002401400039000000060200002900000000002104350000151f0100004100000000021404360000000401400039000000040500002900000000005104350000000001000414000000040030008c000040890000613d0000144e0040009c000600000002001d0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000700000004001d5135512b0000040f000000070400002900000060031002700001144e0030019d000300000001035500000001002001900000000602000029000042f00000613d000014570040009c000041c00000213d000000400040043f0000002001000039000600000001001d000000000014043500000005010000290000000000120435000014530040009c000041c00000213d0000004001400039000000400010043f0000144e0020009c0000144e02008041000000400120021000000000020404330000144e0020009c0000144e020080410000006002200210000000000112019f00000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000146d011001c70000801002000039513551300000040f0000000100200190000041be0000613d000000000101043b000700000001001d0000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000040bb0000c13d0000000103000031000000200030008c00000020040000390000000004034019000040e70000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700050000000c001d513551300000040f000000050c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000040d60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000040d20000c13d000000000006004b000040e30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042fd0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c000041c00000213d0000000100200190000041c00000c13d0000004000b0043f000000200030008c000041be0000413d00000000020c0433000014510020009c000041be0000213d0000000b04000039000000000404041a0000004405b000390000155d0600004100000000006504350000002405b0003900000007060000290000000000650435000014ea0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000041340000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700050000000b001d513551300000040f000000050b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000041210000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000411d0000c13d000000000006004b0000412e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043090000613d0000001f01400039000000600110018f000000000ab100190000145700a0009c000041c00000213d0000004000a0043f000000200030008c000041be0000413d00000000010b0433000500010010003e000041c70000613d0000000a01000039000000000201041a000014e00100004100000000001a04350000000401a00039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c000041760000613d0000144e00a0009c0000144e0300004100000000030a401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700040000000a001d513551300000040f000000040a00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0540018f000600000004001d000000200640019000000000046a0019000041650000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000041610000c13d000000000005004b000041720000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000043150000613d00000006010000290000001f01100039000000600110018f0000000001a10019000014570010009c000041c00000213d000000400010043f000000200030008c000041be0000413d00000000020a0433000014510020009c000041be0000213d0000000b01000039000000000101041a000400000001001d00001464010000410000000000100443000600000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000041c60000613d000000000101043b000000000001004b0000000603000029000041be0000613d000000400400043d00000064014000390000000502000029000000000021043500000044014000390000155d020000410000000000210435000000240140003900000007020000290000000000210435000015210100004100000000001404350000000401400039000000040200002900000000002104350000000001000414000000040030008c000041ba0000613d0000144e0040009c0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000700000004001d5135512b0000040f000000070400002900000060031002700001144e0030019d00030000000103550000000100200190000043210000613d000014570040009c000041c00000213d000000400040043f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000001042f0000152301000041000000000010043f0000001101000039000000040010043f000014e9010000410000513700010430000014710200004100000000002b0435000000200200003900000000002104350000004401b00039000014f00200004100000000002104350000002401b000390000001802000039000042110000013d000014710200004100000000002b0435000000200200003900000000002104350000006401b000390000155f0200004100000000002104350000004401b00039000015600200004100000000002104350000002401b000390000002502000039000042010000013d000014710200004100000000002b0435000000200200003900000000002104350000006401b00039000015630200004100000000002104350000004401b00039000015640200004100000000002104350000002401b000390000002402000039000042010000013d0000156201000041000000000010043f000014ef010000410000513700010430000014710100004100000000001b0435000000200100003900000000001204350000006401b00039000015340200004100000000002104350000004401b00039000015350200004100000000002104350000002401b00039000000260200003900000000002104350000144e00b0009c0000144e0b0080410000004001b0021000001475011001c700005137000104300000004401b00039000015610200004100000000002104350000002401b000390000001b020000390000000000210435000014710100004100000000001b04350000000401b00039000000200200003900000000002104350000144e00b0009c0000144e0b0080410000004001b0021000001472011001c700005137000104300000004402100039000014f0030000410000000000320435000000240210003900000018030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001472011001c7000051370001043000000064021000390000155f030000410000000000320435000000440210003900001560030000410000000000320435000000240210003900000025030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001475011001c700005137000104300000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042410000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000424d0000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042590000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042650000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042710000c13d000043660000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000427e0000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000428a0000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042960000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042a20000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042ae0000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042ba0000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042c60000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042d20000c13d000043660000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042df0000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042eb0000c13d000043470000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042f80000c13d000043470000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043040000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043100000c13d000043660000013d0000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000431c0000c13d000043660000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043290000c13d000043660000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043360000c13d000043470000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043470000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043430000c13d000000000005004b000043540000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f00005137000104300000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000043660000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043620000c13d000000000005004b000043730000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300005000000000002000500000001001d0000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c0000438d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000043b90000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000043a80000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000043a40000c13d000000000006004b000043b50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004af20000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c00004ac30000213d000000010020019000004ac30000c13d0000004000b0043f0000001f0030008c00004ac10000a13d00000000020c0433000014510020009c00004ac10000213d0000000b04000039000000000404041a0000004405b00039000014e80600004100000000006504350000002405b0003900000005060000290000000000650435000014e70500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000044060000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000b001d513551300000040f000000040b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000043f30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000043ef0000c13d000000000006004b000044000000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004afe0000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000030b0433000014510030009c00004ac10000213d000000000003004b00004aca0000613d0000001001000039000000000101041a0000145102100198000044490000613d000400000003001d00001464010000410000000000100443000300000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000040300002900004ac10000613d000000400400043d0000004401400039000000050200002900000000002104350000152a010000410000000000140435000000040140003900000000003104350000002401400039000000000001043500000000010004140000000302000029000000040020008c000044460000613d0000144e0040009c0000144e03000041000000000304401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001472011001c7000400000004001d5135512b0000040f000000040400002900000060031002700001144e0030019d0003000000010355000000010020019000004c2b0000613d000014570040009c00004ac30000213d000000400040043f000014ec01000041000000000010044300000000010004140000144e0010009c0000144e01008041000000c001100210000014ed011001c70000800b02000039513551300000040f000000010020019000004ac90000613d000000400b00043d0000000402b00039000000000101043b0000152b0010009c00004ae00000813d000400000001001d0000000a01000039000000000301041a000014e00100004100000000001b0435000014e1010000410000000000120435000000000100041400000008023002700000145102200197000000040020008c0000446a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000044960000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700030000000b001d513551300000040f000000030b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000044850000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000044810000c13d000000000006004b000044920000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b0a0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c00004ac30000213d000000010020019000004ac30000c13d000000400010043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000200000001001d00001464010000410000000000100443000300000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000030300002900004ac10000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000014eb0200004100000000002104350000002401b0003900000005020000290000000000210435000015210100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d000044e00000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000010b00002900000060031002700001144e0030019d0003000000010355000000010020019000004b160000613d0000145700b0009c00004ac30000213d0000004000b0043f0000000a01000039000000000201041a000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c000044f30000c13d0000000103000031000000200030008c000000200400003900000000040340190000451e0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000450d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045090000c13d000000000006004b0000451a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b230000613d0000001f01400039000000600110018f000000000cb100190000145700c0009c00004ac30000213d0000004000c0043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b04000039000000000404041a0000004405c00039000015000600004100000000006504350000150b0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000045650000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000045520000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000454e0000c13d000000000006004b0000455f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b2f0000613d0000001f01400039000000600110018f000000000bc100190000145700b0009c00004ac30000213d0000004000b0043f000000200030008c00004ac10000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b00004ac10000c13d0000000a01000039000000000201041a000014e00100004100000000001b04350000000401b00039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c0000457f0000c13d0000002004000039000045ab0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700040000000b001d513551300000040f000000040b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000459a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045960000c13d000000000006004b000045a70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b3b0000613d0000001f01400039000000600110018f000000000cb100190000145700c0009c00004ac30000213d0000004000c0043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b04000039000000000404041a0000004405c00039000014e80600004100000000006504350000002405c0003900000005060000290000000000650435000014e70500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000045f30000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000045e00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000045dc0000c13d000000000006004b000045ed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b470000613d0000001f01400039000000600110018f0000000001c10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020c0433000400000002001d000014510020009c00004ac10000213d000000040000006b00004aca0000613d0000000501000029000000000010043f0000000401000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f000000010020019000004ac10000613d000000000101043b000000000201041a0000146c02200197000000000021041b0000000401000029000000000010043f0000000301000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f000000010020019000004ac10000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f00000000010004140000144e0010009c0000144e01008041000000c00110021000001462011001c70000801002000039513551300000040f000000010020019000004ac10000613d000000000101043b000000000201041a0000146c02200197000000000021041b00000000010004140000144e0010009c0000144e01008041000000c0011002100000146d011001c70000800d0200003900000004030000390000152d040000410000000405000029000000000600001900000005070000295135512b0000040f000000010020019000004ac10000613d0000001101000039000000000101041a0000145102100198000046780000613d00001464010000410000000000100443000300000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b00004ac10000613d000000400400043d0000004401400039000000050200002900000000002104350000152a0100004100000000001404350000000401400039000000040200002900000000002104350000002401400039000000000001043500000000010004140000000302000029000000040020008c000046740000613d0000144e0040009c0000144e03000041000000000304401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f00001472011001c7000300000004001d5135512b0000040f000000030400002900000060031002700001144e0030019d0003000000010355000000010020019000004c380000613d000014570040009c00004ac30000213d000000400040043f000046790000013d000000400400043d0000002001000039000300000001001d000000000114043600000004020000290000000000210435000014530040009c00004ac30000213d0000004002400039000000400020043f0000144e0010009c0000144e01008041000000400110021000000000020404330000144e0020009c0000144e020080410000006002200210000000000112019f00000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000146d011001c70000801002000039513551300000040f000000010020019000004ac10000613d000000000101043b000400000001001d0000000a01000039000000000201041a000000400c00043d000014e00100004100000000001c04350000000401c00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c000046a80000c13d0000000103000031000000200030008c00000020040000390000000004034019000046d40000013d0000144e00c0009c0000144e0300004100000000030c401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000c001d513551300000040f000000020c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000046c30000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000046bf0000c13d000000000006004b000046d00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b530000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000145700b0009c00004ac30000213d000000010020019000004ac30000c13d0000004000b0043f000000200030008c00004ac10000413d00000000020c0433000014510020009c00004ac10000213d0000000b04000039000000000404041a0000004405b000390000155d0600004100000000006504350000002405b0003900000004060000290000000000650435000014ea0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000047210000613d0000144e00b0009c0000144e0100004100000000010b401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000470e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000470a0000c13d000000000006004b0000471b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b5f0000613d0000001f01400039000000600110018f000000000ab100190000145700a0009c00004ac30000213d0000004000a0043f000000200030008c00004ac10000413d00000000010b0433000200000001001d000000000001004b00004ada0000613d0000000a01000039000000000201041a000014e00100004100000000001a04350000000401a00039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c000047640000613d0000144e00a0009c0000144e0300004100000000030a401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700010000000a001d513551300000040f000000010a00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a0019000047530000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000474f0000c13d000000000005004b000047600000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000004b6b0000613d00000003010000290000001f01100039000000600110018f0000000001a10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020a0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000100000001001d00001464010000410000000000100443000300000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000030300002900004ac10000613d0000000201000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000155d0200004100000000002104350000002401b0003900000004020000290000000000210435000015210100004100000000001b04350000000404b00039000000010100002900000000001404350000000001000414000000040030008c00020000000b001d000047ab0000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000020b00002900000060031002700001144e0030019d0003000000010355000000010020019000004b770000613d0000145700b0009c00004ac30000213d0000000a01000039000000000201041a0000004000b0043f000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c000047be0000c13d0000000103000031000000200030008c00000020040000390000000004034019000047e90000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000047d80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000047d40000c13d000000000006004b000047e50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b840000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000300000001001d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000040300002900004ac10000613d000000400b00043d0000004401b00039000014e80200004100000000002104350000002401b00039000000050200002900000000002104350000151f0100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d0000482d0000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000020b00002900000060031002700001144e0030019d0003000000010355000000010020019000004b900000613d0000145700b0009c00004ac30000213d0000004000b0043f0000000a01000039000000000201041a000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c000048400000c13d0000000103000031000000200030008c000000200400003900000000040340190000486b0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000485a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000048560000c13d000000000006004b000048670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b9d0000613d0000001f01400039000000600110018f000000000cb100190000145700c0009c00004ac30000213d0000004000c0043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b04000039000000000404041a0000004405c000390000155a060000410000000000650435000014ea0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000048b20000613d0000144e00c0009c0000144e0100004100000000010c401900000040011002100000144e0040009c0000144e04008041000000c003400210000000000113019f00001472011001c700040000000c001d513551300000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000489f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000489b0000c13d000000000006004b000048ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004ba90000613d0000001f01400039000000600110018f000000000bc100190000145700b0009c00004ac30000213d0000004000b0043f000000200030008c00004ac10000413d00000000010c0433000400010010003e00004ada0000613d0000000a01000039000000000201041a000014e00100004100000000001b04350000000401b00039000014e1040000410000000000410435000000000100041400000008022002700000145102200197000000040020008c000048c90000c13d0000002004000039000048f50000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700030000000b001d513551300000040f000000030b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000048e40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000048e00000c13d000000000006004b000048f10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bb50000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000200000001001d00001464010000410000000000100443000300000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000030300002900004ac10000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b000390000155a020000410000000000210435000015210100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00010000000b001d000049390000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000010b00002900000060031002700001144e0030019d0003000000010355000000010020019000004bc10000613d0000145700b0009c00004ac30000213d0000004000b0043f0000000a01000039000000000201041a000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c0000494c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000049770000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000049660000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000049620000c13d000000000006004b000049730000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bce0000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000300000001001d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000040300002900004ac10000613d000000400b00043d0000004401b00039000015140200004100000000002104350000002401b0003900000005020000290000000000210435000015010100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d000049bb0000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000020b00002900000060031002700001144e0030019d0003000000010355000000010020019000004bda0000613d0000145700b0009c00004ac30000213d0000004000b0043f0000000a01000039000000000201041a000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c000049ce0000c13d0000000103000031000000200030008c00000020040000390000000004034019000049f90000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000049e80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000049e40000c13d000000000006004b000049f50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004be70000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000300000001001d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000040300002900004ac10000613d000000400b00043d0000004401b00039000015320200004100000000002104350000002401b0003900000005020000290000000000210435000015010100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d00004a3d0000613d0000144e00b0009c0000144e0200004100000000020b401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f0000000404000029000000020b00002900000060031002700001144e0030019d0003000000010355000000010020019000004bf30000613d0000145700b0009c00004ac30000213d0000004000b0043f0000000a01000039000000000201041a000014e00100004100000000001b0435000014e1010000410000000000140435000000000100041400000008022002700000145102200197000000040020008c00004a500000c13d0000000103000031000000200030008c0000002004000039000000000403401900004a7b0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c7513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004a6a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004a660000c13d000000000006004b00004a770000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c000000613d0000001f01400039000000600110018f0000000001b10019000014570010009c00004ac30000213d000000400010043f000000200030008c00004ac10000413d00000000020b0433000014510020009c00004ac10000213d0000000b01000039000000000101041a000300000001001d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004ac90000613d000000000101043b000000000001004b000000040300002900004ac10000613d000000400400043d00000044014000390000153302000041000000000021043500000024014000390000000502000029000000000021043500001521010000410000000000140435000000040140003900000003020000290000000000210435000000640140003900000000000104350000000001000414000000040030008c00004abd0000613d0000144e0040009c0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000500000004001d5135512b0000040f000000050400002900000060031002700001144e0030019d0003000000010355000000010020019000004c0c0000613d000014570040009c00004ac30000213d000000400040043f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000001042f0000004402100039000014f0030000410000000000320435000000240210003900000018030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001472011001c700005137000104300000152301000041000000000010043f0000001101000039000000040010043f000014e9010000410000513700010430000014710100004100000000001b0435000000200100003900000000001204350000006401b00039000015340200004100000000002104350000004401b00039000015350200004100000000002104350000002401b00039000000260200003900000000002104350000144e00b0009c0000144e0b0080410000004001b0021000001475011001c700005137000104300000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004af90000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b050000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b110000c13d00004c180000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b1e0000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b2a0000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b360000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b420000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b4e0000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b5a0000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b660000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b720000c13d00004c180000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b7f0000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b8b0000c13d00004c440000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b980000c13d00004c440000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ba40000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bb00000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bbc0000c13d00004c180000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bc90000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bd50000c13d00004c180000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004be20000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bee0000c13d00004c180000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bfb0000c13d00004c180000013d0000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c070000c13d00004c180000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c180000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c140000c13d000000000005004b00004c250000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c330000c13d00004c440000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004c440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c400000c13d000000000005004b00004c510000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000121019f00005137000104300001000000000002000000400b00043d0000000a01000039000000000201041a000000ff0020019000004cad0000c13d000015260100004100000000001b0435000000000100041400000008022002700000145102200197000000040020008c00004c690000c13d0000000103000031000000200030008c0000002004000039000000000403401900004c950000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014ef011001c700010000000b001d513551300000040f000000010b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004c840000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004c800000c13d000000000006004b00004c910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004cc40000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c00004cbe0000213d000000010020019000004cbe0000c13d000000400010043f0000001f0030008c00004cab0000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b00004cab0000c13d000000000002004b00004cae0000c13d000000000001042d0000000001000019000051370001043000000000010b0019000000440210003900001527030000410000000000320435000000240210003900000010030000390000000000320435000014710200004100000000002104350000000402100039000000200300003900000000003204350000144e0010009c0000144e01008041000000400110021000001472011001c700005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e90100004100005137000104300000001f0530018f0000145006300198000000400200043d000000000462001900004ccf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ccb0000c13d000000000005004b00004cdc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f0000513700010430000000400200043d0000002003000039000000000332043600001451011001970000000000130435000015650020009c00004cff0000813d0000004001200039000000400010043f0000144e0030009c0000144e03008041000000400130021000000000020204330000144e0020009c0000144e020080410000006002200210000000000112019f00000000020004140000144e0020009c0000144e02008041000000c002200210000000000112019f0000146d011001c70000801002000039513551300000040f000000010020019000004d050000613d000000000101043b000000000001042d0000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000100001900005137000104300003000000000002000300000001001d0000000a01000039000000000201041a000000400b00043d000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00004d1b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004d470000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004d360000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004d320000c13d000000000006004b00004d430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004d9c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c00004d950000213d000000010020019000004d950000c13d000000400010043f0000001f0030008c00004d930000a13d00000000020b0433000014510020009c00004d930000213d0000000b01000039000000000101041a000100000001001d00001464010000410000000000100443000200000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004d9b0000613d000000000101043b000000000001004b000000020300002900004d930000613d000000400400043d000000640140003900000001020000390000000000210435000000440140003900001514020000410000000000210435000000240140003900000003020000290000000000210435000015010100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c00004d8f0000613d0000144e0040009c0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000300000004001d5135512b0000040f000000030400002900000060031002700001144e0030019d0003000000010355000000010020019000004da80000613d000014570040009c00004d950000213d000000400040043f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000001042f0000001f0530018f0000145006300198000000400200043d000000000462001900004db40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004da30000c13d00004db40000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004db40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004db00000c13d000000000005004b00004dc10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f0000513700010430000000600210003900001566030000410000000000320435000000400210003900001567030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000001004b00004dd80000613d000000000001042d000000400200043d000100000002001d00001471010000410000000000120435000000040120003951354dc70000040f000000010200002900000000012100490000144e0010009c0000144e0100804100000060011002100000144e0020009c0000144e020080410000004002200210000000000121019f00005137000104300006000000000002000300000004001d000200000003001d000100000001001d00001464010000410000000000100443000400000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004e9b0000613d000000000101043b000000000001004b00004e250000613d000000400c00043d0000006401c00039000000800b0000390000000000b104350000004401c0003900000002020000290000000000210435000000010100002900001451011001970000002402c0003900000000001204350000152e0100004100000000001c04350000000401c00039000000000200041100000000002104350000008402c0003900000003010000290000000041010434000000000012043500001556061001970000001f0510018f000000a402c00039000000000024004b00004e270000813d000000000006004b00004e210000613d00000000085400190000000007520019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00004e1b0000c13d000000000005004b00004e3d0000613d000000000702001900004e330000013d0000000101000039000000000001042d0000000007620019000000000006004b00004e300000613d00000000080400190000000009020019000000008a0804340000000009a90436000000000079004b00004e2c0000c13d000000000005004b00004e3d0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f000000000047043500000000022100190000000000020435000000000400041400000004020000290000145102200197000000040020008c00004e4c0000c13d0000000005000415000000060550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900004e820000013d00030000000b001d0000001f011000390000155601100197000000a4011000390000144e0010009c0000144e0100804100000060011002100000144e00c0009c0000144e0300004100000000030c40190000004003300210000000000131019f0000144e0040009c0000144e04008041000000c003400210000000000131019f00040000000c001d5135512b0000040f000000040c00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004e6e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004e6a0000c13d000000000006004b00004e7b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000050550008a0000000505500210000000010020019000004e9c0000613d0000001f01400039000000600210018f0000000001c20019000000000021004b00000000020000390000000102004039000014570010009c00004eda0000213d000000010020019000004eda0000c13d000000400010043f0000001f0030008c00004e990000a13d00000000010c0433000015300010019800004e990000c13d0000000502500270000000000201001f00001531011001970000152e0010009c00000000010000390000000101006039000000000001042d00000000010000190000513700010430000000000001042f000000000003004b00004ea00000c13d000000600200003900004ec70000013d0000001f023000390000144f022001970000003f022000390000152f04200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000014570040009c00004eda0000213d000000010050019000004eda0000c13d000000400040043f0000001f0430018f00000000063204360000145005300198000300000006001d000000000356001900004eba0000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b00004eb60000c13d000000000004004b00004ec70000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00004ee00000c13d000000400200043d000400000002001d00001471010000410000000000120435000000040120003951354dc70000040f000000040200002900000000012100490000144e0010009c0000144e0100804100000060011002100000144e0020009c0000144e020080410000004002200210000000000121019f00005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e901000041000051370001043000000003020000290000144e0020009c0000144e0200804100000040022002100000144e0010009c0000144e010080410000006001100210000000000121019f00005137000104300004000000000002000300000002001d000400000001001d0000000a01000039000000000201041a000000400b00043d000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00004efe0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004f2a0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004f190000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004f150000c13d000000000006004b00004f260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004f7f0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c00004f780000213d000000010020019000004f780000c13d000000400010043f0000001f0030008c00004f760000a13d00000000020b0433000014510020009c00004f760000213d0000000b01000039000000000101041a000100000001001d00001464010000410000000000100443000200000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f000000010020019000004f7e0000613d000000000101043b000000000001004b000000020300002900004f760000613d000000400400043d0000006401400039000000030200002900000000002104350000004401400039000014eb020000410000000000210435000000240140003900000004020000290000000000210435000015210100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c00004f720000613d0000144e0040009c0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f000000040400002900000060031002700001144e0030019d0003000000010355000000010020019000004f8b0000613d000014570040009c00004f780000213d000000400040043f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000001042f0000001f0530018f0000145006300198000000400200043d000000000462001900004f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004f860000c13d00004f970000013d0000144e033001970000001f0530018f0000145006300198000000400200043d000000000462001900004f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004f930000c13d000000000005004b00004fa40000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300003000000000002000300000001001d0000000a01000039000000000201041a000000400b00043d000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c00004fbe0000c13d0000000103000031000000200030008c0000002004000039000000000403401900004fea0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004fd90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004fd50000c13d000000000006004b00004fe60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000503e0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c000050370000213d0000000100200190000050370000c13d000000400010043f0000001f0030008c000050350000a13d00000000020b0433000014510020009c000050350000213d0000000b01000039000000000101041a000100000001001d00001464010000410000000000100443000200000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f00000001002001900000503d0000613d000000000101043b000000000001004b0000000203000029000050350000613d000000400400043d00000064014000390000000302000029000000000021043500000044014000390000155e02000041000000000021043500001521010000410000000000140435000000040140003900000001020000290000000000210435000000240140003900000000000104350000000001000414000000040030008c000050310000613d0000144e0040009c0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000300000004001d5135512b0000040f000000030400002900000060031002700001144e0030019d000300000001035500000001002001900000504a0000613d000014570040009c000050370000213d000000400040043f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000001042f0000001f0530018f0000145006300198000000400200043d0000000004620019000050560000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050450000c13d000050560000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000050560000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000050520000c13d000000000005004b000050630000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f00005137000104300004000000000002000300000002001d000400000001001d0000000a01000039000000000201041a000000400b00043d000014e00100004100000000001b04350000000401b00039000014e1030000410000000000310435000000000100041400000008022002700000145102200197000000040020008c0000507e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000050aa0000013d0000144e00b0009c0000144e0300004100000000030b401900000040033002100000144e0010009c0000144e01008041000000c001100210000000000131019f000014e9011001c700020000000b001d513551300000040f000000020b00002900000060031002700000144e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000050990000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000050950000c13d000000000006004b000050a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000050ff0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000014570010009c000050f80000213d0000000100200190000050f80000c13d000000400010043f0000001f0030008c000050f60000a13d00000000020b0433000014510020009c000050f60000213d0000000b01000039000000000101041a000100000001001d00001464010000410000000000100443000200000002001d000000040020044300000000010004140000144e0010009c0000144e01008041000000c00110021000001465011001c70000800202000039513551300000040f0000000100200190000050fe0000613d000000000101043b000000000001004b0000000203000029000050f60000613d000000400400043d00000064014000390000000302000029000000000021043500000044014000390000155d020000410000000000210435000000240140003900000004020000290000000000210435000015210100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c000050f20000613d0000144e0040009c0000144e02000041000000000204401900000040022002100000144e0010009c0000144e01008041000000c001100210000000000121019f00001475011001c70000000002030019000400000004001d5135512b0000040f000000040400002900000060031002700001144e0030019d000300000001035500000001002001900000510b0000613d000014570040009c000050f80000213d000000400040043f000000000001042d000000000100001900005137000104300000152301000041000000000010043f0000004101000039000000040010043f000014e9010000410000513700010430000000000001042f0000001f0530018f0000145006300198000000400200043d0000000004620019000051170000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051060000c13d000051170000013d0000144e033001970000001f0530018f0000145006300198000000400200043d0000000004620019000051170000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000051130000c13d000000000005004b000051240000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000144e0020009c0000144e020080410000004002200210000000000112019f0000513700010430000000000001042f0000512e002104210000000102000039000000000001042d0000000002000019000000000001042d00005133002104230000000102000039000000000001042d0000000002000019000000000001042d0000513500000432000051360001042e000051370001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4e4f4f42000000000000000000000000000000000000000000000000000000004e6f6f6220230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf609addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f599336d74a1247d50642b66dd6abeaa5484f6bd96b415b31bb99e26578c93978a66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688000000000000000000000000721c002b0059009a671d00ad1700c9748146cd1b0200000000000000000000000000000000000040000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000fb2de5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00b0cb9d5bac7bb96102c1a0cec12a57e96e86034b9716b99ca2ed9d81e61bb9db8a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76efffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000002073616c65507269636500000000000000000000000000000000000000000000455243323938313a20726f79616c7479206665652077696c6c206578636565640000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000000000008245e47100000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000df30e54a00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000f0e56f0c00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f7eca6d000000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000e7277dd600000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000df30e54b00000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000d3b551cf00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000c03ad0bd00000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c4e41b2200000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bb997f270000000000000000000000000000000000000000000000000000000099d3a88500000000000000000000000000000000000000000000000000000000a485b4ce00000000000000000000000000000000000000000000000000000000aa1b103e00000000000000000000000000000000000000000000000000000000aa1b103f00000000000000000000000000000000000000000000000000000000b55cd04b00000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000a16ad7d900000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000099d3a886000000000000000000000000000000000000000000000000000000009e05d240000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000009496d207000000000000000000000000000000000000000000000000000000009496d2080000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000938e3d7b00000000000000000000000000000000000000000000000000000000835f396600000000000000000000000000000000000000000000000000000000835f39670000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000006a62784100000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000006a6278420000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000006221d13b000000000000000000000000000000000000000000000000000000006221d13c000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca6310000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000055f804b20000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005633a363000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004f558e79000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000002fb0b8740000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002e1a7d4d00000000000000000000000000000000000000000000000000000000098144d30000000000000000000000000000000000000000000000000000000015be71fe0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248b71fc00000000000000000000000000000000000000000000000000000000267659e20000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c000000000000000000000000000000000000000000000000000000000d705df5000000000000000000000000000000000000000000000000000000000d705df6000000000000000000000000000000000000000000000000000000001328357f00000000000000000000000000000000000000000000000000000000098144d4000000000000000000000000000000000000000000000000000000000ca1c5c90000000000000000000000000000000000000000000000000000000004634d8c00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000004634d8d0000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000146354500000000000000000000000000000000000000000000000000000000014635460000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000001049d9000000000000000000000000000000000000000000000000000000000035a9ae00000000000000000000000000000000000000200000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c00000000000000000000000000000000000000024000000000000000000000000a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004552433732313a20696e76616c696420746f6b656e204944000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000c36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0800000000000000000000000000000000000000440000008000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bdf2c071ca000000000000000000000000000000000000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6fbfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe032483afb00000000000000000000000000000000000000000000000000000000651689700000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000000000000000000000000000000000000000006400000080000000000000000007b920aa00000000000000000000000000000000000000000000000000000000ffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff000000000000000000000100000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000006787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc93c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068e95c048700000000000000000000000000000000000000000000000000000000fdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb53fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967614e6f6f624e46540000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b71000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a65c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a2070617573656400000000000000000000000000000000a2a9f6940e96680af2fe721eb59341cde71d9b7ae61dc834d205d6c59360268ec30436e9000000000000000000000000000000000000000000000000000000008ce516da0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000004552433732313a20746f6b656e20616c7265616479206d696e74656400000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000608e8583c5619bbc3db921ebeaef749afb02ec159f0152f9091151af16e87a3cd7fe74ba2795604f471717a6182ac81070ad95ecee0b7d8ebcfbec785af7e796322062697473000000000000000000000000000000000000000000000000000053616665436173743a2076616c756520646f65736e27742066697420696e20334552433732313a206d696e7420746f20746865207a65726f206164647265737300000000000000000000ff0000000000000000000000000000000000000000007f5b076c952c0ec86e5425963c1326dd0f03a3595c19f81d765e8ff559a6e33c455243323938313a20496e76616c696420706172616d65746572730000000000000000000000000000000000000000000000000000000000ffffffffffffff7f6b656e0000000000000000000000000000000000000000000000000000000000596f7520617265206e6f7420746865206f776e6572206f66207468697320746f000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe05472616e73666572206661696c656400000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c0000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000caee23ea0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000008000000000000000006b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65a07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c00000000000000000000000000000000000000000000000000000000e88a3f57000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002dd6753d7447d2bb3cd72464154a7bc06c4a5d5747f9553d5247b4dc12c2e777ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde72206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65ea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a0917ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc63156f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742047616d654e46543a20546f6b656e20697320736f756c626f756e640000000000d62312720000000000000000000000000000000000000000000000000000000072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f20616464000000000000000000000000000000000000000000000000ffffffffffffffc063656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152651b671b87582a5ec14f87fdac361b8dcfe3e7f12b65776e0927c9b32340ac57e8
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
-----Decoded View---------------
Arg [0] : gameRegistryAddress (address): 0x74eb92b33f2400EB14F6D6725B14F76078d5E731
Arg [1] : royaltyRecipient (address): 0xF62DcedDd3A9Aa9239f068A6DCD7a08C95D903D0
Arg [2] : feeNumerator (uint96): 500
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731
Arg [1] : 000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
[ 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.