Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Faction For ... | 6295442 | 6 days ago | IN | 0 ETH | 0.00000794 | ||||
Set Faction For ... | 6293630 | 6 days ago | IN | 0 ETH | 0.00000888 | ||||
Set Faction For ... | 6292646 | 6 days ago | IN | 0 ETH | 0.00000896 | ||||
Set Faction For ... | 6257151 | 7 days ago | IN | 0 ETH | 0.00000561 | ||||
Set Faction For ... | 6255775 | 7 days ago | IN | 0 ETH | 0.00000539 | ||||
Set Faction For ... | 6255438 | 7 days ago | IN | 0 ETH | 0.00000758 | ||||
Set Faction For ... | 6254837 | 7 days ago | IN | 0 ETH | 0.00000729 | ||||
Set Faction For ... | 6167318 | 8 days ago | IN | 0 ETH | 0.00000692 | ||||
Set Faction For ... | 6152219 | 8 days ago | IN | 0 ETH | 0.00004796 | ||||
Initialize | 6151173 | 8 days ago | IN | 0 ETH | 0.0000134 | ||||
Set Paused | 6150552 | 8 days ago | IN | 0 ETH | 0.00000528 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH | ||||
6295442 | 6 days ago | 0 ETH |
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:
FactionSystem
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 pragma solidity ^0.8.0; import {IGameItems, ID as GAME_ITEMS_CONTRACT_ID} from "../tokens/IGameItems.sol"; import {IGigaNoobNFT, ID as NOOB_NFT_CONTRACT_ID} from "../tokens/giganoobnft/IGigaNoobNFT.sol"; import {IFactionSystem, ID as ID} from "./IFactionSystem.sol"; import {DataTable} from "../db/DataTable.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {MANAGER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE, SERVER_JUDGE_ROLE} from "../constants/RoleConstants.sol"; import {FACTION_CID, NAME_CID, NOOB_TOKEN_CID, MAX_SUPPLY_CID, MINT_COUNT_CID, PLAYER_CID} from "../constants/ColumnConstants.sol"; contract FactionSystem is IFactionSystem, DataTable { constructor(address gameRegistryAddress) DataTable(gameRegistryAddress, ID) {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("FactionSystem", ID); } function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IFactionSystem).interfaceId || interfaceId == type(IERC165).interfaceId; } //////////////////// // Public Writes // ////////////////// function chooseFaction(uint256 noobId, uint256 factionId) override external whenNotPaused { _confirmNoobToFaction(msg.sender, noobId, factionId); } function setFactionForNoob(address player, uint256 noobId, uint256 factionId) external onlyRole(SERVER_JUDGE_ROLE) { _confirmNoobToFaction(player, noobId, factionId); } //////////////////// // Public Reads /// ////////////////// function isNoobInFaction(uint256 noobId, uint256 factionId) public view returns (bool) { return getDocUint256Value(getNoobFactionDocId(noobId), FACTION_CID) == factionId; } function getNoobFactionDocId(uint256 noobId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked("noob", noobId))); } function getFactionCurrentMemberCount(uint256 factionId) public view returns (uint256) { return getDocUint256Value(factionId, MINT_COUNT_CID); } function getFactionMaxMembers(uint256 factionId) public view returns (uint256) { return getDocUint256Value(factionId, MAX_SUPPLY_CID); } function getFactionName(uint256 factionId) public view returns (string memory) { return getDocStringValue(factionId, NAME_CID); } function getFactionOfNoob(uint256 noobId) public view returns (uint256) { return getDocUint256Value(getNoobFactionDocId(noobId), FACTION_CID); } ////////////// // Manager // //////////// function setFaction(uint256 factionId, uint256 maxMembers, string memory factionName) external onlyRole(MANAGER_ROLE) { _setDocStringValue(factionId, NAME_CID, factionName); _setDocUint256Value(factionId, FACTION_CID, factionId); _setDocUint256Value(factionId, MAX_SUPPLY_CID, maxMembers); } ///////////////////// // Game Contracts // /////////////////// //////////////////////// // Internal Helpers /// ////////////////////// function _factionExists(uint256 factionId) private view returns (bool) { return getDocUint256Value(factionId, FACTION_CID) != 0; } function _confirmNoobToFaction(address player, uint256 noobId, uint256 factionId) private returns (bool) { require(_factionExists(factionId), "Faction not found"); require(IGigaNoobNFT(_gameRegistry.getSystem(NOOB_NFT_CONTRACT_ID)).ownerOf(noobId) == player, "Not owner of noob"); uint256 currentMemberCount = getFactionCurrentMemberCount(factionId); require(currentMemberCount < getFactionMaxMembers(factionId), "Faction is full"); uint256 noobFactionDocId = getNoobFactionDocId(noobId); uint256 currentFactionId = getFactionOfNoob(noobId); require(currentFactionId == 0, "Noob already in faction"); _setDocUint256Value(noobFactionDocId, FACTION_CID, factionId); _setDocAddressValue(noobFactionDocId, PLAYER_CID, player); _setDocUint256Value(noobFactionDocId, NOOB_TOKEN_CID, noobId); _setDocUint256Value(factionId, MINT_COUNT_CID, currentMemberCount + 1); return true; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.gameitems")); interface IGameItems is IERC1155 { /** * Mints a ERC1155 token * * @param to Recipient of the token * @param id Id of token to mint * @param amount Quantity of token to mint */ function mint(address to, uint256 id, uint256 amount) external; /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param from Account to burn from * @param id Id of the token to burn * @param amount Quantity to burn */ function burn(address from, uint256 id, uint256 amount) external; /** * @param id Id of the type to get data for * * @return How many of the given token id have been minted */ function minted(uint256 id) external view returns (uint256); function burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) external; }
// 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 pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.system.faction")); interface IFactionSystem is IERC165 { function chooseFaction(uint256 noobId,uint256 factionId) external; function isNoobInFaction(uint256 noobId, uint256 factionId) external view returns (bool); function getFactionCurrentMemberCount(uint256 factionId) external view returns (uint256); function getFactionMaxMembers(uint256 factionId) external view returns (uint256); function getFactionName(uint256 factionId) external view returns (string memory); function getFactionOfNoob(uint256 noobId) external view returns (uint256); }
// 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 // 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 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; 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")); uint256 constant FACTION_CID = uint256(keccak256("faction"));
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// 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 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 // 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 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); }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@limitbreak/creator-token-standards/=lib/creator-token-standards/", "@openzeppelin/=lib/openzeppelin-contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "murky/=lib/murky/src/", "erc721a/=lib/ERC721A/", "@creator-token-standards/=lib/creator-token-standards/src/", "@limitbreak/permit-c/=lib/creator-token-standards/lib/PermitC/src/", "@opensea/tstorish/=lib/creator-token-standards/lib/tstorish/src/", "@rari-capital/solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/", "ERC721A/=lib/ERC721A/contracts/", "PermitC/=lib/creator-token-standards/lib/PermitC/", "creator-token-standards/=lib/creator-token-standards/", "erc4626-tests/=lib/murky/lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-gas-metering/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/", "forge-zksync-std/=lib/forge-zksync-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/creator-token-standards/lib/PermitC/lib/openzeppelin-contracts/contracts/", "solady/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/lib/solady/", "solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/src/", "tstorish/=lib/creator-token-standards/lib/tstorish/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"noobId","type":"uint256"},{"internalType":"uint256","name":"factionId","type":"uint256"}],"name":"chooseFaction","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"factionId","type":"uint256"}],"name":"getFactionCurrentMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"factionId","type":"uint256"}],"name":"getFactionMaxMembers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"factionId","type":"uint256"}],"name":"getFactionName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noobId","type":"uint256"}],"name":"getFactionOfNoob","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":"noobId","type":"uint256"}],"name":"getNoobFactionDocId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"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":"uint256","name":"noobId","type":"uint256"},{"internalType":"uint256","name":"factionId","type":"uint256"}],"name":"isNoobInFaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"factionId","type":"uint256"},{"internalType":"uint256","name":"maxMembers","type":"uint256"},{"internalType":"string","name":"factionName","type":"string"}],"name":"setFaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"uint256","name":"noobId","type":"uint256"},{"internalType":"uint256","name":"factionId","type":"uint256"}],"name":"setFactionForNoob","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007e16bad8c358b146fae575bf7c3b81f1dae27163c3a493cf2454009c40200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
Deployed Bytecode
0x00020000000000020006000000000002000000000401034f00010000000103550000006001100270000007610310019700000001002001900000002c0000c13d0000008001000039000000400010043f000000040030008c0000004f0000413d000000000134034f000000000204043b000000e002200270000007690020009c000000510000213d000007810020009c000000700000213d0000078d0020009c000000ac0000213d000007930020009c000001160000213d000007960020009c000001c20000613d000007970020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b000007cc001001980000004f0000c13d000007cd0010009c00000000020000390000000102006039000007ce0010009c00000001022061bf000000800020043f000007980100004100001d810001042e0000000001000416000000000001004b0000004f0000c13d0000001f0130003900000762011001970000008001100039000000400010043f0000001f0230018f000007630530019800000080015000390000003d0000613d0000008006000039000000000704034f000000007807043c0000000006860436000000000016004b000000390000c13d000000000002004b0000004a0000613d000000000454034f0000000302200210000000000501043300000000052501cf000000000525022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000252019f0000000000210435000000200030008c0000004f0000413d000000800100043d000007640010009c000000810000a13d000000000100001900001d82000104300000076a0020009c000000890000213d000007760020009c000000bc0000213d0000077c0020009c000001240000213d0000077f0020009c000001dd0000613d000007800020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d0000000101000039000000000201041a0000079a01000041000000800010043f000007b201000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000076402200197000000040020008c000006930000c13d0000000003000031000000200030008c00000020040000390000000004034019000006b70000013d000007820020009c000000d50000213d000007880020009c0000013d0000213d0000078b0020009c000001f90000613d0000078c0020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b1d8014a60000040f0000034b0000013d0000000102000039000000000020041b000000000001004b000000e30000c13d0000079e01000041000000000010043f0000079f0100004100001d82000104300000076b0020009c000000f20000213d000007710020009c000001560000213d000007740020009c000002140000613d000007750020009c0000004f0000c13d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000102000039000000000202041a000007a203000041000000800030043f000007a303000041000000840030043f000000000300041400000008022002700000076402200197000000040020008c000600000004001d000500000005001d0000073e0000c13d0000000003000031000000200030008c00000020040000390000000004034019000007620000013d0000078e0020009c000001630000213d000007910020009c000002290000613d000007920020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b000007640010009c0000004f0000213d000001bf0000013d000007770020009c0000017c0000213d0000077a0020009c000000db0000613d0000077b0020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000006ce0000c13d0000000003000031000000200030008c00000020040000390000000004034019000006f20000013d000007830020009c0000019b0000213d000007860020009c0000023e0000613d000007870020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d0000000201000039000000000101041a000000800010043f000007980100004100001d810001042e000000000302041a000007650330019700000008011002100000076601100197000000000131019f00000001011001bf000000000012041b00000767010000410000000202000039000000000012041b000000200100003900000100001004430000012000000443000007680100004100001d810001042e0000076c0020009c000001b40000213d0000076f0020009c000002460000613d000007700020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b000600000001001d000007640010009c0000004f0000213d0000000101000039000000000201041a0000079a01000041000000800010043f0000079b01000041000000840010043f00000000010004110000076403100197000000a40030043f000000000100041400000008022002700000076402200197000000040020008c000500000003001d00000b7f0000c13d0000000003000031000000200030008c0000002004000039000000000403401900000ba30000013d000007940020009c000002610000613d000007950020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b1d8016540000040f1d8013cf0000040f0000034b0000013d0000077d0020009c000002740000613d0000077e0020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000007da0000c13d0000000003000031000000200030008c00000020040000390000000004034019000007fe0000013d000007890020009c0000028f0000613d0000078a0020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000102000039000000000202041a000007a203000041000000800030043f000007a303000041000000840030043f000000000300041400000008022002700000076402200197000000040020008c000008200000c13d0000000003000031000000200030008c00000020040000390000000004034019000008440000013d000007720020009c000002aa0000613d000007730020009c0000004f0000c13d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b1d8016540000040f0000034b0000013d0000078f0020009c000002c50000613d000007900020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000102000039000000000202041a000007a203000041000000800030043f000007a303000041000000840030043f000000000300041400000008022002700000076402200197000000040020008c000008c70000c13d0000000003000031000000200030008c00000020040000390000000004034019000008eb0000013d000007780020009c000002e40000613d000007790020009c0000004f0000c13d000000440030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000600000003001d000500000005001d000009700000c13d0000000003000031000000200030008c00000020040000390000000004034019000009940000013d000007840020009c000002ed0000613d000007850020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000102000039000000000202041a000007a203000041000000800030043f000007a303000041000000840030043f000000000300041400000008022002700000076402200197000000040020008c000009bb0000c13d0000000003000031000000200030008c00000020040000390000000004034019000009df0000013d0000076d0020009c000003400000613d0000076e0020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d0000000101000039000000000101041a00000008011002700000076401100197000000800010043f000007980100004100001d810001042e000000440030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000002401400370000000000101043b000500000001001d0000000401400370000000000101043b000600000001001d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000003f60000c13d0000000003000031000000200030008c000000200400003900000000040340190000041a0000013d000000640030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b000600000001001d000007640010009c0000004f0000213d0000000101000039000000000201041a0000079a01000041000000800010043f000007bf01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000076402200197000000040020008c00000a670000c13d0000000003000031000000200030008c0000002004000039000000000403401900000a8b0000013d000000440030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000002401400370000000000101043b000500000001001d0000000401400370000000000101043b000600000001001d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000004620000c13d0000000003000031000000200030008c00000020040000390000000004034019000004860000013d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000004a40000c13d0000000003000031000000200030008c00000020040000390000000004034019000004c80000013d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000004e70000c13d0000000003000031000000200030008c000000200400003900000000040340190000050b0000013d0000000001000416000000000001004b0000004f0000c13d1d8013580000040f000000000001004b0000000001000039000000010100c0390000034b0000013d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402400370000000000202043b000500000002001d0000000402400370000000000202043b000600000002001d0000000102000039000000000202041a000007a203000041000000800030043f000007a303000041000000840030043f000000000300041400000008022002700000076402200197000000040020008c0000052b0000c13d0000000003000031000000200030008c000000200400003900000000040340190000054f0000013d0000000002000416000000000002004b0000004f0000c13d0000000102000039000000000202041a000007a203000041000000800030043f000007a303000041000000840030043f000000000300041400000008022002700000076402200197000000040020008c000003520000c13d0000000003000031000000200030008c00000020040000390000000004034019000003760000013d000000440030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000002401400370000000000101043b000500000001001d0000000401400370000000000101043b000600000001001d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000005d00000c13d0000000003000031000000200030008c00000020040000390000000004034019000005f40000013d000000440030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000002401400370000000000301043b0000000401400370000000000401043b0000000101000039000000000201041a000000ff00200190000006130000c13d000500000004001d000600000003001d000007c201000041000000800010043f000000000100041400000008022002700000076402200197000000040020008c00000aa10000c13d0000000003000031000000200030008c0000002004000039000000000403401900000ac50000013d000000440030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000002401400370000000000101043b000500000001001d0000000401400370000000000101043b000600000001001d0000000101000039000000000201041a000007a201000041000000800010043f000007a301000041000000840010043f000000000100041400000008022002700000076402200197000000040020008c000006220000c13d0000000003000031000000200030008c00000020040000390000000004034019000006460000013d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b0000004f0000c13d0000000101000039000000000201041a0000079a01000041000000800010043f000007c601000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000076402200197000000040020008c00000ad90000c13d0000000003000031000000200030008c0000002004000039000000000403401900000afd0000013d000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b1d80157d0000040f0000034b0000013d000000640030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d0000000401400370000000000101043b000600000001001d0000004401400370000000000201043b000007a70020009c0000004f0000213d0000002301200039000000000031004b0000004f0000813d0000000405200039000000000154034f000000000101043b000007a70010009c00000f790000213d0000001f06100039000007cf066001970000003f06600039000007cf06600197000007c00060009c00000f790000213d0000008006600039000000400060043f000000800010043f00000000021200190000002402200039000000000032004b0000004f0000213d0000002002500039000000000324034f000007cf041001980000001f0510018f000000a0024000390000031a0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000003160000c13d000000000005004b000003270000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d0000079a01000041000000000015043500000004015000390000079b030000410000000000310435000000000100041100000764031001970000002401500039000500000003001d0000000000310435000000000100041400000008022002700000076402200197000000040020008c00000eb00000c13d0000000003000031000000200030008c0000002004000039000000000403401900000edc0000013d0000000001000416000000000001004b0000004f0000c13d00000000010300191d80130b0000040f000600000002001d1d8016540000040f1d8013cf0000040f000000060010006c00000000010000390000000101006039000000400200043d0000000000120435000007610020009c0000076102008041000000400120021000000799011001c700001d810001042e000007610030009c0000076103008041000000c001300210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000003660000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000003620000c13d000000000006004b000003730000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000a5b0000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000205000039000000000505041a000007a506000041000000060a00002900000000006a043500000084064001bf0000000000560435000000c405400039000007bb060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c0000039c0000613d0000004001a00210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c71d801d7b0000040f0000006003100270000007610030019d0000076103300197000000010020019000000de70000613d000000060a000029000007cf053001980000001f0630018f00000000045a0019000003a60000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000003a20000c13d000000000006004b000003b30000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000007cf041001970000000001a40019000000000041004b00000000040000390000000104004039000007a70010009c00000f790000213d000000010040019000000f790000c13d000000400010043f000007a80030009c0000004f0000213d000000200030008c0000004f0000413d00000006040000290000000004040433000007a70040009c0000004f0000213d000000060630002900000006034000290000001f04300039000000000064004b0000000005000019000007a905008041000007a904400197000007a907600197000000000874013f000000000074004b0000000004000019000007a904004041000007a90080009c000000000405c019000000000004004b0000004f0000c13d0000000043030434000007a70030009c00000f790000213d0000001f05300039000007cf055001970000003f05500039000007cf055001970000000005150019000007a70050009c00000f790000213d000000400050043f00000000053104360000000007430019000000000067004b0000004f0000213d000007cf063001970000001f0230018f000000000054004b00000fce0000813d000000000006004b0000096c0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000003ef0000c13d0000096c0000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000040a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000004060000c13d000000000006004b000004170000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b130000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007ad040000410000000405000029000000000045043500000084041001bf0000000000340435000000c40310003900000005040000290000000000430435000000a403100039000000060400002900000000004304350000000003000414000000040020008c000009ae0000613d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000040b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000044b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000004470000c13d000000000006004b000004580000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000df30000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004f0000413d000009b00000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000004760000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000004720000c13d000000000006004b000004830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b1f0000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007af040000410000000405000029000000000045043500000084041001bf0000000000340435000000c40310003900000005040000290000000000430435000000a403100039000000060400002900000000004304350000000003000414000000040020008c00000c310000c13d0000000001150019000000400010043f00000004020000290000081c0000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000004b80000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000004b40000c13d000000000006004b000004c50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b2b0000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007ad040000410000000605000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000103300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c00000c5f0000c13d0000000001150019000000400010043f0000000602000029000009b10000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000004fb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000004f70000c13d000000000006004b000005080000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b370000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007b1040000410000000605000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000103300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c00000c8d0000c13d0000000001150019000000400010043f00000006020000290000000002020433000009b70000013d000007610030009c0000076103008041000000c001300210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000053f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000053b0000c13d000000000006004b0000054c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b430000613d0000001f02400039000000600420018f00000080024001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000205000039000000000505041a000007a506000041000000040a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000005060000290000000000650435000000a404400039000000060500002900000000005404350000000004000414000000040020008c000005760000613d0000004001a00210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c71d801d7b0000040f0000006003100270000007610030019d0000076103300197000000010020019000000dff0000613d000000040a000029000007cf053001980000001f0630018f00000000045a0019000005800000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000057c0000c13d000000000006004b0000058d0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000007cf041001970000000001a40019000000000041004b00000000040000390000000104004039000007a70010009c00000f790000213d000000010040019000000f790000c13d000000400010043f000007a80030009c0000004f0000213d000000200030008c0000004f0000413d00000004040000290000000004040433000007a70040009c0000004f0000213d000000040630002900000004034000290000001f04300039000000000064004b0000000005000019000007a905008041000007a904400197000007a907600197000000000874013f000000000074004b0000000004000019000007a904004041000007a90080009c000000000405c019000000000004004b0000004f0000c13d0000000043030434000007a70030009c00000f790000213d0000001f05300039000007cf055001970000003f05500039000007cf055001970000000005150019000007a70050009c00000f790000213d000000400050043f00000000053104360000000007430019000000000067004b0000004f0000213d000007cf063001970000001f0230018f000000000054004b00000fd80000813d000000000006004b0000096c0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000005c90000c13d0000096c0000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000005e40000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000005e00000c13d000000000006004b000005f10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b4f0000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007b1040000410000000405000029000000000045043500000084041001bf0000000000340435000000c40310003900000005040000290000000000430435000000a403100039000000060400002900000000004304350000000003000414000000040020008c00000cbb0000c13d0000000001150019000000400010043f00000004020000290000000002020433000009b70000013d00000080010000390000004402100039000007c4030000410000000000320435000000240210003900000010030000390000000000320435000007c50200004100000000002104350000000402100039000000200300003900000000003204350000004001100210000007a6011001c700001d8200010430000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006360000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006320000c13d000000000006004b000006430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b5b0000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007aa040000410000000405000029000000000045043500000084041001bf0000000000340435000000c40310003900000005040000290000000000430435000000a403100039000000060400002900000000004304350000000003000414000000040020008c000009ae0000613d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000040b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000006770000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000006730000c13d000000000006004b000006840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000de00000c13d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000068e0000c13d00000f380000013d000007610010009c0000076101008041000000c0011002100000079c011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006a70000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006a30000c13d000000000006004b000006b40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b670000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b0000004f0000c13d000000000002004b00000ce90000c13d000007a001000041000000000010043f0000000001000411000000040010043f000007b201000041000000240010043f000007a10100004100001d8200010430000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006e20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006de0000c13d000000000006004b000006ef0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000b730000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007af040000410000000605000029000000000045043500000084041001bf0000000000340435000000c403100039000007b0040000410000000000430435000000a40310003900000000000304350000000003000414000000040020008c000008190000613d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000060b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000007220000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000071e0000c13d000000000006004b0000072f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000db20000c13d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007390000c13d00000f380000013d000007610030009c0000076103008041000000c001300210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007520000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000074e0000c13d000000000006004b0000075f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000bb90000613d0000001f02400039000000600420018f00000080024001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000205000039000000000505041a000007ab06000041000000040a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000005060000290000000000650435000000a404400039000000060500002900000000005404350000000004000414000000040020008c000007890000613d0000004001a00210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c71d801d7b0000040f0000006003100270000007610030019d0000076103300197000000010020019000000e5d0000613d000000040a000029000007cf053001980000001f0630018f00000000045a0019000007930000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000078f0000c13d000000000006004b000007a00000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000007cf011001970000000002a10019000000000012004b00000000010000390000000101004039000007a70020009c00000f790000213d000000010010019000000f790000c13d000000400020043f000007a80030009c0000004f0000213d000000200030008c0000004f0000413d00000004010000290000000001010433000007a70010009c0000004f0000213d000000040330002900000004011000290000001f04100039000000000034004b0000000005000019000007a905008041000007a904400197000007a906300197000000000764013f000000000064004b0000000004000019000007a904004041000007a90070009c000000000405c019000000000004004b0000004f0000c13d0000000015010434000007a70050009c00000f790000213d00000005045002100000003f06400039000007ac066001970000000006260019000007a70060009c00000f790000213d000000400060043f00000000005204350000000004140019000000000034004b0000004f0000213d000000000005004b00000a570000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b000007d40000413d00000a570000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007ee0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007ea0000c13d000000000006004b000007fb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000bc50000613d0000001f01400039000000600110018f00000080021001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007af040000410000000605000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000103300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c00000d8b0000c13d0000000001150019000000400010043f00000006020000290000000002020433000007640020009c0000004f0000213d000009b70000013d000007610030009c0000076103008041000000c001300210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008340000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008300000c13d000000000006004b000008410000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000bd10000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000205000039000000000505041a000007a506000041000000060a00002900000000006a043500000084064001bf000000000056043500000004050000390000000105500367000000000505043b000000c406400039000007bb070000410000000000760435000000a40440003900000000005404350000000004000414000000040020008c0000086d0000613d0000004001a00210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c71d801d7b0000040f0000006003100270000007610030019d0000076103300197000000010020019000000e690000613d000000060a000029000007cf053001980000001f0630018f00000000045a0019000008770000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000008730000c13d000000000006004b000008840000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000007cf041001970000000001a40019000000000041004b00000000040000390000000104004039000007a70010009c00000f790000213d000000010040019000000f790000c13d000000400010043f000007a80030009c0000004f0000213d000000200030008c0000004f0000413d00000006040000290000000004040433000007a70040009c0000004f0000213d000000060630002900000006034000290000001f04300039000000000064004b0000000005000019000007a905008041000007a904400197000007a907600197000000000874013f000000000074004b0000000004000019000007a904004041000007a90080009c000000000405c019000000000004004b0000004f0000c13d0000000043030434000007a70030009c00000f790000213d0000001f05300039000007cf055001970000003f05500039000007cf055001970000000005150019000007a70050009c00000f790000213d000000400050043f00000000053104360000000007430019000000000067004b0000004f0000213d000007cf063001970000001f0230018f000000000054004b00000fe20000813d000000000006004b0000096c0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000008c00000c13d0000096c0000013d000007610030009c0000076103008041000000c001300210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008db0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008d70000c13d000000000006004b000008e80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000bdd0000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000205000039000000000505041a000007a506000041000000060a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000105500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c000009130000613d0000004001a00210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c71d801d7b0000040f0000006003100270000007610030019d0000076103300197000000010020019000000e750000613d000000060a000029000007cf053001980000001f0630018f00000000045a00190000091d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000009190000c13d000000000006004b0000092a0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000007cf041001970000000001a40019000000000041004b00000000040000390000000104004039000007a70010009c00000f790000213d000000010040019000000f790000c13d000000400010043f000007a80030009c0000004f0000213d000000200030008c0000004f0000413d00000006040000290000000004040433000007a70040009c0000004f0000213d000000060630002900000006034000290000001f04300039000000000064004b0000000005000019000007a905008041000007a904400197000007a907600197000000000874013f000000000074004b0000000004000019000007a904004041000007a90080009c000000000405c019000000000004004b0000004f0000c13d0000000043030434000007a70030009c00000f790000213d0000001f05300039000007cf055001970000003f05500039000007cf055001970000000005150019000007a70050009c00000f790000213d000000400050043f00000000053104360000000007430019000000000067004b0000004f0000213d000007cf063001970000001f0230018f000000000054004b00000fec0000813d000000000006004b0000096c0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000009660000c13d000000000002004b000010020000613d000000000705001900000ff80000013d000007610010009c0000076101008041000000c001100210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009840000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009800000c13d000000000006004b000009910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000be90000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000203000039000000000303041a000007ae040000410000000405000029000000000045043500000084041001bf0000000000340435000000c40310003900000005040000290000000000430435000000a403100039000000060400002900000000004304350000000003000414000000040020008c00000db90000c13d0000000001150019000000400010043f00000004020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b0000004f0000c13d0000000000210435000000400110021000000799011001c700001d810001042e000007610030009c0000076103008041000000c001300210000007a4011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009cf0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009cb0000c13d000000000006004b000009dc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000bf50000613d0000001f02400039000000600420018f00000080024001bf000600000002001d000000400020043f000000200030008c0000004f0000413d000000800200043d000007640020009c0000004f0000213d0000000205000039000000000505041a000007ab06000041000000060a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000105500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000a070000613d0000004001a00210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c71d801d7b0000040f0000006003100270000007610030019d0000076103300197000000010020019000000e810000613d000000060a000029000007cf053001980000001f0630018f00000000045a001900000a110000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000a0d0000c13d000000000006004b00000a1e0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000007cf011001970000000002a10019000000000012004b00000000010000390000000101004039000007a70020009c00000f790000213d000000010010019000000f790000c13d000000400020043f000007a80030009c0000004f0000213d000000200030008c0000004f0000413d00000006010000290000000001010433000007a70010009c0000004f0000213d000000060330002900000006011000290000001f04100039000000000034004b0000000005000019000007a905008041000007a904400197000007a906300197000000000764013f000000000064004b0000000004000019000007a904004041000007a90070009c000000000405c019000000000004004b0000004f0000c13d0000000015010434000007a70050009c00000f790000213d00000005045002100000003f06400039000007ac066001970000000006260019000007a70060009c00000f790000213d000000400060043f00000000005204350000000004140019000000000034004b0000004f0000213d000000000005004b00000a570000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000a520000413d000000400100043d000600000001001d1d8013490000040f000010090000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a620000c13d00000f380000013d000007610010009c0000076101008041000000c0011002100000079c011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a7b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a770000c13d000000000006004b00000a880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000c010000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004f0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004f0000c13d000000000001004b00000e0b0000c13d000007a001000041000000000010043f0000000001000411000000040010043f000007bf01000041000000240010043f000007a10100004100001d8200010430000007610010009c0000076101008041000000c001100210000007c3011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ab50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ab10000c13d000000000006004b00000ac20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000c0d0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004f0000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b0000004f0000c13d000000000002004b000006140000c13d0000000001000411000000050200002900000006030000291d80167c0000040f000000000100001900001d810001042e000007610010009c0000076101008041000000c0011002100000079c011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000aed0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ae90000c13d000000000006004b00000afa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000c190000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c0000004f0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b0000004f0000c13d000000000003004b00000e140000c13d000007a001000041000000000010043f0000000001000411000000040010043f000007c601000041000000240010043f000007a10100004100001d82000104300000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b1a0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b260000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b320000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b3e0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b4a0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b560000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b620000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b6e0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b7a0000c13d00000f380000013d000007610010009c0000076101008041000000c0011002100000079c011001c71d801d7b0000040f000000800a00003900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b930000613d000000000801034f000000008908043c000000000a9a043600000000005a004b00000b8f0000c13d000000000006004b00000ba00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000c250000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c0000004f0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b0000004f0000c13d000000000001004b00000e8d0000c13d000007a001000041000000000010043f0000000501000029000000040010043f0000079b01000041000000240010043f000007a10100004100001d82000104300000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bc00000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bcc0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bd80000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000be40000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bf00000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bfc0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c080000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c140000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c200000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c2c0000c13d00000f380000013d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000040b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000c480000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000c440000c13d000000000006004b00000c550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000e290000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000004a20000813d0000004f0000013d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000060b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000c760000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000c720000c13d000000000006004b00000c830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000e350000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000004e50000813d0000004f0000013d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000060b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000ca40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ca00000c13d000000000006004b00000cb10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000e410000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000004f0000413d000005280000013d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000040b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000cd20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000cce0000c13d000000000006004b00000cdf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000e4d0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000006100000813d0000004f0000013d000000c002100039000000400020043f0000000d0200003900000006040000290000000000240435000000a004100039000007b30200004100000000002404350000000302000039000000000202041a000000ff0020019000000e590000c13d000500000004001d0000000102000039000000000202041a000000400b00043d000007a20400004100000000004b04350000000404b00039000007a3050000410000000000540435000000000400041400000008022002700000076402200197000000040020008c00000d300000613d0000076100b0009c000007610100004100000000010b40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007b5011001c700040000000b001d1d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b000029000000040570002900000d1e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000d1a0000c13d000000000006004b00000d2b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000f2d0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000007a70020009c00000f790000213d000000010010019000000f790000c13d000000400020043f000000200030008c0000004f0000413d00000000010b0433000400000001001d000007640010009c0000004f0000213d0000000201000039000000000101041a000300000001001d000007b6010000410000000000100443000000040100002900000004001004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f0000000100200190000012f10000613d000000000101043b000000000001004b0000004f0000613d000000400300043d0000006401300039000000000200041000000000002104350000004401300039000007b8020000410000000000210435000007b90100004100000000001304350000000401300039000100000001001d00000003020000290000000000210435000200000003001d0000002401300039000000000001043500000000010004140000000402000029000000040020008c00000d750000613d0000000202000029000007610020009c00000761020080410000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c700000004020000291d801d760000040f0000006003100270000007610030019d0000000100200190000010130000613d0000000201000029000007a70010009c00000f790000213d0000000203000029000000400030043f0000000101000039000000000201041a000007a2010000410000000000130435000007a30100004100000001030000290000000000130435000000000100041400000008022002700000076402200197000000040020008c000010200000c13d0000000003000031000000200030008c00000020040000390000000004034019000010490000013d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000060b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000da20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000d9e0000c13d000000000006004b00000daf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000e980000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c0000081b0000813d0000004f0000013d000007610030009c0000076103008041000000c0013002100000004003500210000000000131019f000007a6011001c71d801d7b0000040f000000040b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000dd00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000dcc0000c13d000000000006004b00000ddd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000ea40000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000009b00000813d0000004f0000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000dee0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000dfa0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e060000c13d00000f380000013d00000001010003670000002402100370000000000202043b0000004401100370000000000301043b00000006010000291d80167c0000040f000000000100001900001d810001042e0000000103000039000000000503041a000000ff0450018f000000060000006b00000f010000c13d000000000004004b00000f160000613d000007d002500197000000000023041b0000000002000411000000000021043500000040011002100000000002000414000007610020009c0000076102008041000000c002200210000000000112019f000007c7011001c70000800d02000039000007c90400004100000f110000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e300000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e3c0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e480000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e540000c13d00000f380000013d000007b401000041000000000010043f0000079f0100004100001d82000104300000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e640000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e700000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e7c0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e880000c13d00000f380000013d0000000603000029000000080130021000000766011001970000000104000039000000000204041a0000079d02200197000000000112019f000000000014041b000000000003004b000000850000613d00000f140000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e9f0000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eab0000c13d00000f380000013d000007610050009c000007610300004100000000030540190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007a1011001c7000400000005001d1d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b000029000000040570002900000ecb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ec70000c13d000000000006004b00000ed80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000f210000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000007a70020009c00000f790000213d000000010010019000000f790000c13d000400000002001d000000400020043f000000200030008c0000004f0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b0000004f0000c13d000000000001004b00000bb10000613d0000000101000039000000000201041a000007a201000041000000040400002900000000001404350000000401400039000007a3040000410000000000410435000000000100041400000008022002700000076402200197000000040020008c00000f4b0000c13d000000200400003900000f740000013d000000000004004b00000f160000c13d000007d00250019700000001022001bf000000000023041b0000000002000411000000000021043500000040011002100000000002000414000007610020009c0000076102008041000000c002200210000000000112019f000007c7011001c70000800d02000039000007c8040000411d801d760000040f00000001002001900000004f0000613d000000000100001900001d810001042e000007c503000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000007ca040000410000000000430435000000a40220003900000014030000390000061e0000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f280000c13d00000f380000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f340000c13d000000000005004b00000f450000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000112019f00001d82000104300000000403000029000007610030009c00000761030080410000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040570002900000f640000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b00000f600000c13d000000000006004b00000f710000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000000fc20000613d0000001f01400039000000600110018f0000000401100029000007a70010009c00000f7f0000a13d000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d8200010430000000400010043f000000200030008c0000004f0000413d00000004010000290000000001010433000500000001001d000007640010009c0000004f0000213d0000000201000039000000000101041a000400000001001d000007b6010000410000000000100443000000050100002900000004001004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f0000000100200190000012f10000613d000000000101043b000000000001004b0000004f0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000007bb020000410000000000210435000000240150003900000006020000290000000000210435000007bc0100004100000000001504350000000401500039000000040200002900000000002104350000008402500039000000800100043d0000000000120435000007cf041001970000001f0310018f000400000005001d000000a402500039000000a10020008c000010ae0000413d000000000004004b00000fbd0000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00000fb70000c13d000000000003004b000010c40000613d000000a0040000390000000005020019000010ba0000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fc90000c13d00000f380000013d0000000007650019000000000006004b00000ff50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00000fd30000c13d00000ff50000013d0000000007650019000000000006004b00000ff50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00000fdd0000c13d00000ff50000013d0000000007650019000000000006004b00000ff50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00000fe70000c13d00000ff50000013d0000000007650019000000000006004b00000ff50000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00000ff10000c13d000000000002004b000010020000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000600000003001d00000000022304361d8013170000040f00000006020000290000000001210049000007610010009c00000761010080410000006001100210000007610020009c00000761020080410000004002200210000000000121019f00001d810001042e00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000101b0000c13d00000f380000013d0000000203000029000007610030009c00000761030080410000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000010390000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000010350000c13d000000000006004b000010460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000010a20000613d0000001f01400039000000600110018f0000000201100029000007a70010009c00000f790000213d000000400010043f000000200030008c0000004f0000413d00000002010000290000000001010433000400000001001d000007640010009c0000004f0000213d0000000201000039000000000101041a000300000001001d000007b6010000410000000000100443000000040100002900000004001004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f0000000100200190000012f10000613d000000000101043b000000000001004b0000004f0000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000007b0020000410000000000210435000007b90100004100000000001304350000000401300039000100000001001d00000003020000290000000000210435000200000003001d0000002401300039000000000001043500000000010004140000000402000029000000040020008c0000108c0000613d0000000202000029000007610020009c00000761020080410000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c700000004020000291d801d760000040f0000006003100270000007610030019d00000001002001900000118d0000613d0000000201000029000007a70010009c00000f790000213d0000000203000029000000400030043f0000000101000039000000000201041a000007a2010000410000000000130435000007a30100004100000001030000290000000000130435000000000100041400000008022002700000076402200197000000040020008c0000119a0000c13d0000000003000031000000200030008c00000020040000390000000004034019000011c30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010a90000c13d00000f380000013d0000000005420019000000000004004b000010b70000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000010b30000c13d000000000003004b000010c40000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000503000029000000040030008c000010df0000613d0000001f01100039000007cf01100197000000a401100039000007610010009c000007610100804100000060011002100000000403000029000007610030009c00000761030080410000004003300210000000000131019f000007610020009c0000076102008041000000c002200210000000000121019f00000005020000291d801d760000040f0000006003100270000007610030019d0000000100200190000010fa0000613d0000000401000029000007a70010009c00000f790000213d0000000401000029000000400010043f000000060100002900000000020100191d801cb60000040f0000000101000039000000000201041a000000400300043d000007a2010000410000000000130435000500000003001d0000000401300039000007a3030000410000000000310435000000000100041400000008022002700000076402200197000000040020008c000011070000c13d0000000003000031000000200030008c00000020040000390000000004034019000011300000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011020000c13d00000f380000013d0000000503000029000007610030009c00000761030080410000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000011200000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000111c0000c13d000000000006004b0000112d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000011810000613d0000001f01400039000000600210018f0000000501200029000000000021004b00000000020000390000000102004039000007a70010009c00000f790000213d000000010020019000000f790000c13d000000400010043f000000200030008c0000004f0000413d00000005010000290000000001010433000500000001001d000007640010009c0000004f0000213d0000000201000039000000000101041a000400000001001d000007b6010000410000000000100443000000050100002900000004001004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f0000000100200190000012f10000613d000000000101043b000000000001004b0000004f0000613d000000400300043d0000004401300039000007c1020000410000000000210435000000240130003900000006020000290000000000210435000007be01000041000000000013043500000004013000390000000402000029000000000021043500000024010000390000000101100367000000000101043b000600000003001d0000006402300039000000000012043500000000010004140000000502000029000000040020008c0000117a0000613d0000000602000029000007610020009c00000761020080410000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c700000005020000291d801d760000040f0000006003100270000007610030019d0000000100200190000012180000613d0000000601000029000007a70010009c00000f790000213d0000000601000029000000400010043f000000000100001900001d810001042e0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011880000c13d00000f380000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011950000c13d00000f380000013d0000000203000029000007610030009c00000761030080410000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000011b30000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000011af0000c13d000000000006004b000011c00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000120c0000613d0000001f01400039000000600110018f0000000201100029000007a70010009c00000f790000213d000000400010043f000000200030008c0000004f0000413d00000002010000290000000001010433000400000001001d000007640010009c0000004f0000213d0000000201000039000000000101041a000300000001001d000007b6010000410000000000100443000000040100002900000004001004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f0000000100200190000012f10000613d000000000101043b000000000001004b0000004f0000613d000000400300043d0000006401300039000000800200003900000000002104350000004401300039000007bb020000410000000000210435000007bc0100004100000000001304350000000401300039000100000001001d00000003020000290000000000210435000000240130003900000000000104350000000601000029000000000101043300000084023000390000000000120435000007cf051001970000001f0410018f000200000003001d000000a403300039000000050030006b000012250000813d000000000005004b000012080000613d00000005074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000012020000c13d000000000004004b0000123c0000613d0000000006030019000012310000013d0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012130000c13d00000f380000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012200000c13d00000f380000013d0000000006530019000000000005004b0000122e0000613d0000000507000029000000000803001900000000790704340000000008980436000000000068004b0000122a0000c13d000000000004004b0000123c0000613d000500050050002d0000000304400210000000000506043300000000054501cf000000000545022f000000050700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000404000029000000040040008c000012570000613d0000001f01100039000007cf01100197000000a401100039000007610010009c000007610100804100000060011002100000000202000029000007610020009c00000761020080410000004002200210000000000121019f000007610030009c0000076103008041000000c002300210000000000121019f00000004020000291d801d760000040f0000006003100270000007610030019d00000001002001900000126d0000613d0000000201000029000007a70010009c00000f790000213d0000000203000029000000400030043f0000000101000039000000000201041a000007a2010000410000000000130435000007a30100004100000001030000290000000000130435000000000100041400000008022002700000076402200197000000040020008c0000127a0000c13d0000000003000031000000200030008c00000020040000390000000004034019000012a30000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012750000c13d00000f380000013d0000000203000029000007610030009c00000761030080410000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f00000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000012930000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b0000128f0000c13d000000000006004b000012a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000012f20000613d0000001f01400039000000600110018f0000000201100029000007a70010009c00000f790000213d000000400010043f000000200030008c0000004f0000413d00000002010000290000000001010433000600000001001d000007640010009c0000004f0000213d0000000201000039000000000101041a000500000001001d000007b6010000410000000000100443000000060100002900000004001004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f0000000100200190000012f10000613d000000000101043b000000000001004b0000004f0000613d000000400300043d0000006401300039000007670200004100000000002104350000004401300039000007bd020000410000000000210435000007be010000410000000000130435000000040130003900000005020000290000000000210435000500000003001d0000002401300039000000000001043500000000010004140000000602000029000000040020008c000012e50000613d0000000502000029000007610020009c00000761020080410000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c700000006020000291d801d760000040f0000006003100270000007610030019d0000000100200190000012fe0000613d0000000501000029000007a70010009c00000f790000213d0000000501000029000000400010043f0000000303000039000000000103041a000007d00110019700000001011001bf000000000013041b000000000100001900001d810001042e000000000001042f0000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012f90000c13d00000f380000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900000f380000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013060000c13d00000f380000013d000007a80010009c000013150000213d000000430010008c000013150000a13d00000001020003670000000401200370000000000101043b0000002402200370000000000202043b000000000001042d000000000100001900001d820001043000000000430104340000000001320436000007cf063001970000001f0530018f000000000014004b0000132d0000813d000000000006004b000013290000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000013230000c13d000000000005004b000013430000613d0000000007010019000013390000013d0000000007610019000000000006004b000013360000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000013320000c13d000000000005004b000013430000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f03300039000007cf023001970000000001210019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000013570000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000013510000413d000000000001042d00010000000000020000000101000039000000000201041a000000ff01200190000013a80000c13d000000400b00043d000007c20100004100000000001b0435000000000100041400000008022002700000076402200197000000040020008c0000136a0000c13d0000000003000031000000200030008c00000020040000390000000004034019000013950000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f0000079f011001c700010000000b001d1d801d7b0000040f000000010b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013850000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013810000c13d000000000006004b000013920000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000013b10000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000007a70010009c000013ab0000213d0000000100200190000013ab0000c13d000000400010043f0000001f0030008c000013a90000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000013a90000c13d000000000001042d000000000100001900001d8200010430000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d82000104300000001f0530018f0000076306300198000000400200043d0000000004620019000013bc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013b80000c13d000000000005004b000013c90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000121019f00001d820001043000020000000000020000000102000039000000000202041a000000400c00043d000007a20300004100000000003c04350000000404c00039000007a3030000410000000000340435000000000400041400000008022002700000076402200197000000040020008c000013e20000c13d0000000003000031000000200030008c000000200400003900000000040340190000140f0000013d000100000001001d0000076100c0009c000007610300004100000000030c40190000004003300210000007610040009c0000076104008041000000c001400210000000000131019f000007b5011001c700020000000c001d1d801d7b0000040f000000020c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000013fe0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000013fa0000c13d000000000006004b0000140b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000146a0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000007a700b0009c000014640000213d0000000100200190000014640000c13d0000004000b0043f0000001f0030008c000014620000a13d00000000020c0433000007640020009c000014620000213d0000000204000039000000000404041a0000004405b00039000007d10600004100000000006504350000002405b000390000000000150435000007b10500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000145a0000613d0000076100b0009c000007610100004100000000010b40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700020000000b001d1d801d7b0000040f000000020b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014480000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014440000c13d000000000006004b000014550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000014880000613d0000001f01400039000000600710018f0000000001b70019000007a70010009c000014640000213d000000400010043f000000200030008c000014620000413d00000000010b0433000000000001042d000000000100001900001d8200010430000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d82000104300000001f0530018f0000076306300198000000400200043d0000000004620019000014750000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014710000c13d000000000005004b000014820000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000112019f00001d82000104300000001f0530018f0000076306300198000000400200043d0000000004620019000014930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000148f0000c13d000000000005004b000014a00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000121019f00001d820001043000020000000000020000000102000039000000000202041a000000400c00043d000007a20300004100000000003c04350000000404c00039000007a3030000410000000000340435000000000400041400000008022002700000076402200197000000040020008c000014b90000c13d0000000003000031000000200030008c00000020040000390000000004034019000014e60000013d000100000001001d0000076100c0009c000007610300004100000000030c40190000004003300210000007610040009c0000076104008041000000c001400210000000000131019f000007b5011001c700020000000c001d1d801d7b0000040f000000020c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000014d50000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000014d10000c13d000000000006004b000014e20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000015410000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000007a700b0009c0000153b0000213d00000001002001900000153b0000c13d0000004000b0043f0000001f0030008c000015390000a13d00000000020c0433000007640020009c000015390000213d0000000204000039000000000404041a0000004405b00039000007c10600004100000000006504350000002405b000390000000000150435000007b10500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000015310000613d0000076100b0009c000007610100004100000000010b40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700020000000b001d1d801d7b0000040f000000020b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000151f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000151b0000c13d000000000006004b0000152c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000155f0000613d0000001f01400039000000600710018f0000000001b70019000007a70010009c0000153b0000213d000000400010043f000000200030008c000015390000413d00000000010b0433000000000001042d000000000100001900001d8200010430000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d82000104300000001f0530018f0000076306300198000000400200043d00000000046200190000154c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015480000c13d000000000005004b000015590000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000112019f00001d82000104300000001f0530018f0000076306300198000000400200043d00000000046200190000156a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015660000c13d000000000005004b000015770000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000121019f00001d820001043000020000000000020000000102000039000000000202041a000000400c00043d000007a20300004100000000003c04350000000404c00039000007a3030000410000000000340435000000000400041400000008022002700000076402200197000000040020008c000015900000c13d0000000003000031000000200030008c00000020040000390000000004034019000015bd0000013d000100000001001d0000076100c0009c000007610300004100000000030c40190000004003300210000007610040009c0000076104008041000000c001400210000000000131019f000007b5011001c700020000000c001d1d801d7b0000040f000000020c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000015ac0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000015a80000c13d000000000006004b000015b90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000016180000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b00000000020000390000000102004039000007a700b0009c000016120000213d0000000100200190000016120000c13d0000004000b0043f0000001f0030008c000016100000a13d00000000020c0433000007640020009c000016100000213d0000000204000039000000000404041a0000004405b00039000007d20600004100000000006504350000002405b000390000000000150435000007b10500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000016080000613d0000076100b0009c000007610100004100000000010b40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700020000000b001d1d801d7b0000040f000000020b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015f60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015f20000c13d000000000006004b000016030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000016360000613d0000001f01400039000000600710018f0000000001b70019000007a70010009c000016120000213d000000400010043f000000200030008c000016100000413d00000000010b0433000000000001042d000000000100001900001d8200010430000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d82000104300000001f0530018f0000076306300198000000400200043d0000000004620019000016230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000161f0000c13d000000000005004b000016300000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000112019f00001d82000104300000001f0530018f0000076306300198000000400200043d0000000004620019000016410000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000163d0000c13d000000000005004b0000164e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000121019f00001d8200010430000000400200043d0000002003200039000007d30400004100000000004304350000002404200039000000000014043500000024010000390000000000120435000007d40020009c000016740000813d0000006001200039000000400010043f000007610030009c000007610300804100000040013002100000000002020433000007610020009c00000761020080410000006002200210000000000112019f0000000002000414000007610020009c0000076102008041000000c002200210000000000112019f000007d5011001c700008010020000391d801d7b0000040f00000001002001900000167a0000613d000000000101043b000000000001042d000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d8200010430000000000100001900001d82000104300008000000000002000800000003001d000700000002001d000600000001001d0000000101000039000000000201041a000000400b00043d000007a20100004100000000001b04350000000401b00039000007a3030000410000000000310435000000000100041400000008022002700000076402200197000000040020008c000016920000c13d0000000003000031000000200030008c00000020040000390000000004034019000016bd0000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c700050000000b001d1d801d7b0000040f000000050b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000016ad0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000016a90000c13d000000000006004b000016ba0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001bb60000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000007a700c0009c00001b800000213d000000010020019000001b800000c13d0000004000c0043f0000001f0030008c00001b7e0000a13d00000000020b0433000007640020009c00001b7e0000213d0000000204000039000000000404041a0000004405c00039000007d10600004100000000006504350000002405c0003900000008060000290000000000650435000007b10500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000017090000613d0000076100c0009c000007610100004100000000010c40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700050000000c001d1d801d7b0000040f000000050c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000016f70000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000016f30000c13d000000000006004b000017040000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001bc20000613d0000001f01400039000000600110018f000000000bc10019000007a700b0009c00001b800000213d0000004000b0043f000000200030008c00001b7e0000413d0000000401b0003900000000020c0433000000000002004b00001b870000613d0000000102000039000000000202041a000007a20400004100000000004b0435000007d6040000410000000000410435000000000100041400000008022002700000076402200197000000040020008c000017200000c13d00000020040000390000174b0000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c700050000000b001d1d801d7b0000040f000000050b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000173b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017370000c13d000000000006004b000017480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001bce0000613d0000001f01400039000000600110018f000000000cb10019000007a700c0009c00001b800000213d0000004000c0043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d000007d70400004100000000004c04350000000404c00039000000070500002900000000005404350000000004000414000000040020008c0000178b0000613d0000076100c0009c000007610100004100000000010c40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007b5011001c700050000000c001d1d801d7b0000040f000000050c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000017790000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000017750000c13d000000000006004b000017860000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001bda0000613d0000001f01400039000000600110018f000000000bc10019000007a700b0009c00001b800000213d0000004000b0043f000000200030008c00001b7e0000413d00000000020c0433000500000002001d000007640020009c00001b7e0000213d0000000402b0003900000006040000290000076404400197000000050040006b00001b8e0000c13d0000000104000039000000000504041a000007a20400004100000000004b0435000007a3040000410000000000420435000000000400041400000008025002700000076402200197000000040020008c000017d20000613d0000076100b0009c000007610100004100000000010b40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007b5011001c700060000000b001d1d801d7b0000040f000000060b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000017c00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017bc0000c13d000000000006004b000017cd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001be60000613d0000001f01400039000000600110018f000000000cb10019000007a700c0009c00001b800000213d0000004000c0043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d0000000204000039000000000404041a0000004405c00039000007d20600004100000000006504350000002405c0003900000008060000290000000000650435000007b10500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000018170000613d0000076100c0009c000007610100004100000000010c40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700060000000c001d1d801d7b0000040f000000060c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000018050000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000018010000c13d000000000006004b000018120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001bf20000613d0000001f01400039000000600110018f000000000dc10019000007a700d0009c00001b800000213d0000004000d0043f000000200030008c00001b7e0000413d00000000010c0433000400000001001d0000000101000039000000000201041a000007a20100004100000000001d04350000000401d00039000007a3040000410000000000410435000000000100041400000008022002700000076402200197000000040020008c0000182d0000c13d0000002004000039000018580000013d0000076100d0009c000007610300004100000000030d40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c700060000000d001d1d801d7b0000040f000000060d00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d0019000018480000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b000018440000c13d000000000006004b000018550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001bfe0000613d0000001f01400039000000600110018f000000000bd10019000007a700b0009c00001b800000213d0000004000b0043f000000200030008c00001b7e0000413d00000000020d0433000007640020009c00001b7e0000213d0000000204000039000000000404041a0000004405b00039000007c10600004100000000006504350000002405b0003900000008060000290000000000650435000007b10500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000189f0000613d0000076100b0009c000007610100004100000000010b40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700060000000b001d1d801d7b0000040f000000060b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000188d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018890000c13d000000000006004b0000189a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c0a0000613d0000001f01400039000000600110018f0000000001b10019000007a70010009c00001b800000213d000000400010043f000000200030008c00001b7e0000413d000000240210003900000000030b0433000000040030006b00001b980000813d0000002003100039000007d30400004100000000004304350000000704000029000000000042043500000024020000390000000000210435000007da0010009c00001b800000213d0000006002100039000000400020043f000007610030009c000007610300804100000040023002100000000001010433000007610010009c00000761010080410000006001100210000000000121019f0000000002000414000007610020009c0000076102008041000000c002200210000000000112019f000007d5011001c700008010020000391d801d7b0000040f000000010020019000001b7e0000613d000000000101043b000600000001001d000000400100043d0000002002100039000007d303000041000000000032043500000024031000390000000704000029000000000043043500000024030000390000000000310435000007da0010009c00001b800000213d0000006003100039000000400030043f000007610020009c000007610200804100000040022002100000000001010433000007610010009c00000761010080410000006001100210000000000121019f0000000002000414000007610020009c0000076102008041000000c002200210000000000112019f000007d5011001c700008010020000391d801d7b0000040f000000010020019000001b7e0000613d000000000701043b0000000101000039000000000201041a000000400b00043d000007a20100004100000000001b04350000000401b00039000007a3030000410000000000310435000000000100041400000008022002700000076402200197000000040020008c000018fa0000c13d0000000003000031000000200030008c00000020040000390000000004034019000019270000013d000200000007001d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c700030000000b001d1d801d7b0000040f000000030b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000019160000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019120000c13d000000000006004b000019230000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c160000613d00000002070000290000001f01400039000000600110018f000000000cb1001900000000001c004b00000000020000390000000102004039000007a700c0009c00001b800000213d000000010020019000001b800000c13d0000004000c0043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d0000000204000039000000000404041a0000004405c00039000007d10600004100000000006504350000002405c000390000000000750435000007b10500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000019720000613d0000076100c0009c000007610100004100000000010c40190000004001100210000007610040009c0000076104008041000000c003400210000000000113019f000007a6011001c700030000000c001d1d801d7b0000040f000000030c00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000019600000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000195c0000c13d000000000006004b0000196d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c220000613d0000001f01400039000000600110018f000000000bc10019000007a700b0009c00001b800000213d0000004000b0043f000000200030008c00001b7e0000413d0000000401b0003900000000020c0433000000000002004b00001ba70000c13d0000000102000039000000000202041a000007a20400004100000000004b0435000007a3040000410000000000410435000000000100041400000008022002700000076402200197000000040020008c000019890000c13d0000002004000039000019b40000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c700030000000b001d1d801d7b0000040f000000030b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000019a40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019a00000c13d000000000006004b000019b10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c2e0000613d0000001f01400039000000600110018f0000000001b10019000007a70010009c00001b800000213d000000400010043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d0000000201000039000000000101041a000200000001001d000007b6010000410000000000100443000300000002001d00000004002004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f000000010020019000001b860000613d000000000101043b000000000001004b000000030300002900001b7e0000613d000000400b00043d0000006401b00039000000080200002900000000002104350000004401b00039000007d10200004100000000002104350000002401b0003900000006020000290000000000210435000007be0100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d000019f80000613d0000076100b0009c000007610200004100000000020b40190000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c70000000002030019000300000004001d1d801d760000040f0000000304000029000000010b0000290000006003100270000007610030019d000000010020019000001c3a0000613d000007a700b0009c00001b800000213d0000004000b0043f0000000101000039000000000201041a000007a20100004100000000001b0435000007a3010000410000000000140435000000000100041400000008022002700000076402200197000000040020008c00001a0b0000c13d0000000003000031000000200030008c0000002004000039000000000403401900001a350000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f000000010b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001a250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001a210000c13d000000000006004b00001a320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c470000613d0000001f01400039000000600110018f0000000001b10019000007a70010009c00001b800000213d000000400010043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d0000000201000039000000000101041a000200000001001d000007b6010000410000000000100443000300000002001d00000004002004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f000000010020019000001b860000613d000000000101043b000000000001004b000000030300002900001b7e0000613d000000400b00043d0000006401b00039000000050200002900000000002104350000004401b00039000007dc0200004100000000002104350000002401b0003900000006020000290000000000210435000007b90100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d00001a790000613d0000076100b0009c000007610200004100000000020b40190000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c70000000002030019000500000004001d1d801d760000040f0000000504000029000000010b0000290000006003100270000007610030019d000000010020019000001c530000613d000007a700b0009c00001b800000213d0000004000b0043f0000000101000039000000000201041a000007a20100004100000000001b0435000007a3010000410000000000140435000000000100041400000008022002700000076402200197000000040020008c00001a8c0000c13d0000000003000031000000200030008c0000002004000039000000000403401900001ab60000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f000000010b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001aa60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001aa20000c13d000000000006004b00001ab30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c600000613d0000001f01400039000000600110018f0000000001b10019000007a70010009c00001b800000213d000000400010043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d0000000201000039000000000101041a000300000001001d000007b6010000410000000000100443000500000002001d00000004002004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f000000010020019000001b860000613d000000000101043b000000000001004b000000050300002900001b7e0000613d000000400b00043d0000006401b00039000000070200002900000000002104350000004401b00039000007dd0200004100000000002104350000002401b0003900000006020000290000000000210435000007be0100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00020000000b001d00001afa0000613d0000076100b0009c000007610200004100000000020b40190000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c70000000002030019000700000004001d1d801d760000040f0000000704000029000000020b0000290000006003100270000007610030019d000000010020019000001c6c0000613d000007a700b0009c00001b800000213d0000004000b0043f0000000101000039000000000201041a000007a20100004100000000001b0435000007a3010000410000000000140435000000000100041400000008022002700000076402200197000000040020008c00001b0d0000c13d0000000003000031000000200030008c0000002004000039000000000403401900001b370000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c71d801d7b0000040f000000020b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001b270000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001b230000c13d000000000006004b00001b340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001c790000613d0000001f01400039000000600110018f0000000001b10019000007a70010009c00001b800000213d000000400010043f000000200030008c00001b7e0000413d00000000020b0433000007640020009c00001b7e0000213d0000000201000039000000000101041a000600000001001d000007b6010000410000000000100443000700000002001d00000004002004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f000000010020019000001b860000613d000000000101043b000000000001004b000000070300002900001b7e0000613d00000004010000290000000101100039000000400400043d000000640240003900000000001204350000004401400039000007d2020000410000000000210435000000240140003900000008020000290000000000210435000007be0100004100000000001404350000000401400039000000060200002900000000002104350000000001000414000000040030008c00001b7a0000613d000007610040009c000007610200004100000000020440190000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c70000000002030019000800000004001d1d801d760000040f00000008040000290000006003100270000007610030019d000000010020019000001c970000613d000007a70040009c00001b800000213d000000400040043f000000000001042d000000000100001900001d8200010430000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d8200010430000000000001042f000007c50200004100000000002b0435000000200200003900000000002104350000004401b00039000007de0200004100001b940000013d000007c50100004100000000001b0435000000200100003900000000001204350000004401b00039000007d80200004100000000002104350000002401b00039000000110200003900001bb00000013d000007c50300004100000000003104350000000403100039000000200400003900000000004304350000000f0300003900000000003204350000004402100039000007d9030000410000000000320435000007610010009c00000761010080410000004001100210000007a6011001c700001d8200010430000007c50200004100000000002b0435000000200200003900000000002104350000004401b00039000007db0200004100000000002104350000002401b00039000000170200003900000000002104350000076100b0009c000007610b0080410000004001b00210000007a6011001c700001d82000104300000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bbd0000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bc90000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001c840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bd50000c13d00001c840000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001c840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001be10000c13d00001c840000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bed0000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bf90000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c050000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c110000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c1d0000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c290000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c350000c13d00001ca30000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c420000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001c840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c4e0000c13d00001c840000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900001c840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c5b0000c13d00001c840000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001c840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c670000c13d00001c840000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c740000c13d00001ca30000013d0000001f0530018f0000076306300198000000400200043d000000000462001900001c840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c800000c13d000000000005004b00001c910000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000121019f00001d820001043000000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900001ca30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c9f0000c13d000000000005004b00001cb00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000112019f00001d82000104300004000000000002000300000002001d000400000001001d0000000101000039000000000201041a000000400b00043d000007a20100004100000000001b04350000000401b00039000007a3030000410000000000310435000000000100041400000008022002700000076402200197000000040020008c00001ccb0000c13d0000000003000031000000200030008c0000002004000039000000000403401900001cf60000013d0000076100b0009c000007610300004100000000030b40190000004003300210000007610010009c0000076101008041000000c001100210000000000131019f000007b5011001c700020000000b001d1d801d7b0000040f000000020b00002900000060031002700000076103300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001ce60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001ce20000c13d000000000006004b00001cf30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000000010020019000001d4a0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000007a70010009c00001d430000213d000000010020019000001d430000c13d000000400010043f0000001f0030008c00001d410000a13d00000000020b0433000007640020009c00001d410000213d0000000201000039000000000101041a000100000001001d000007b6010000410000000000100443000200000002001d00000004002004430000000001000414000007610010009c0000076101008041000000c001100210000007b7011001c700008002020000391d801d7b0000040f000000010020019000001d490000613d000000000101043b000000000001004b000000020300002900001d410000613d000000400400043d0000006401400039000000030200002900000000002104350000004401400039000007d1020000410000000000210435000000240140003900000004020000290000000000210435000007be0100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c00001d3d0000613d000007610040009c000007610200004100000000020440190000004002200210000007610010009c0000076101008041000000c001100210000000000121019f000007ba011001c70000000002030019000400000004001d1d801d760000040f00000004040000290000006003100270000007610030019d000000010020019000001d560000613d000007a70040009c00001d430000213d000000400040043f000000000001042d000000000100001900001d8200010430000007cb01000041000000000010043f0000004101000039000000040010043f000007b50100004100001d8200010430000000000001042f0000001f0530018f0000076306300198000000400200043d000000000462001900001d620000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001d510000c13d00001d620000013d00000761033001970000001f0530018f0000076306300198000000400200043d000000000462001900001d620000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001d5e0000c13d000000000005004b00001d6f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007610020009c00000761020080410000004002200210000000000112019f00001d8200010430000000000001042f00001d79002104210000000102000039000000000001042d0000000002000019000000000001042d00001d7e002104230000000102000039000000000001042d0000000002000019000000000001042d00001d800000043200001d810001042e00001d8200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff008aaa91e87fb88c33976d0265143f7b45bd84eb2b244aac4ebdfbc3f144ba84b60000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007bfd0cc300000000000000000000000000000000000000000000000000000000a485b4ce00000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000e1d8c7fb00000000000000000000000000000000000000000000000000000000e1d8c7fc00000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000c03ad0bd00000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c3c7266000000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000b76ac0d70000000000000000000000000000000000000000000000000000000088e4f1ca000000000000000000000000000000000000000000000000000000009d7c9391000000000000000000000000000000000000000000000000000000009d7c939200000000000000000000000000000000000000000000000000000000a16ad7da0000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008245e471000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed000000000000000000000000000000000000000000000000000000007bfd0cc4000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000002fb0b873000000000000000000000000000000000000000000000000000000005c975aba0000000000000000000000000000000000000000000000000000000065d25e600000000000000000000000000000000000000000000000000000000065d25e610000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca63100000000000000000000000000000000000000000000000000000000406890e000000000000000000000000000000000000000000000000000000000406890e10000000000000000000000000000000000000000000000000000000045baff65000000000000000000000000000000000000000000000000000000002fb0b874000000000000000000000000000000000000000000000000000000003307c50b000000000000000000000000000000000000000000000000000000001328357e0000000000000000000000000000000000000000000000000000000016c38b3b0000000000000000000000000000000000000000000000000000000016c38b3c00000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000001328357f0000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000011257955000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000c36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b080000000000000000000000000000000000000044000000800000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b914810000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000008000000000000000008a4bcc90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff800000000000000000000000000000000000000000000000000000000000000007fef63300000000000000000000000000000000000000000000000000000000bfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0651689700000000000000000000000000000000000000000000000000000000007b920aa00000000000000000000000000000000000000000000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0a1b9224c00000000000000000000000000000000000000000000000000000000fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c46616374696f6e53797374656d000000000000000000000000000000000000000dc149f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e95c048700000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000000df22b4b9fa47094569d1813854946bca111f9d557698e38a6b8f7107ff9b670000000000000000000000000000000000000000000000000ffffffffffffff7f7e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a25c975abb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000005061757361626c653a207061757365640000000000000000000000000000000008c379a00000000000000000000000000000000000000000000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a020000000000000000000000000000000000002000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f74207061757365640000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000005b5487b400000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0028525274ef0b459c3a7975c365dc0970f86b061542fb4c453211f8c95d3c8d227ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc63156e6f6f6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa00200000000000000000000000000000000000000000000000000000000000000b0cb9d5bac7bb96102c1a0cec12a57e96e86034b9716b99ca2ed9d81e61bb9db6352211e000000000000000000000000000000000000000000000000000000004e6f74206f776e6572206f66206e6f6f6200000000000000000000000000000046616374696f6e2069732066756c6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f4e6f6f6220616c726561647920696e2066616374696f6e000000000000000000326d994cdb81aaccb84aa1f62bae636dc0aaf98ab22f66b0c9224f1edccd7cc9b23682036ee8d01f58fb6bbb8051f4908212c4e08722c71ee4815f984f4ef00546616374696f6e206e6f7420666f756e640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000351e7035212250cb103b92381c36aca6c9e87d636f7594fa0d6368f504865845
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
-----Decoded View---------------
Arg [0] : gameRegistryAddress (address): 0xb5f84708957E5628C363709AE1d4CB346081fbf6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.